1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright 2014 Google Inc.
6 * Copyright 2014 Linaro Ltd.
10 #define __CONNECTION_H
12 #include <linux/list.h>
13 #include <linux/kfifo.h>
15 #define GB_CONNECTION_FLAG_CSD BIT(0)
16 #define GB_CONNECTION_FLAG_NO_FLOWCTRL BIT(1)
17 #define GB_CONNECTION_FLAG_OFFLOADED BIT(2)
18 #define GB_CONNECTION_FLAG_CDSI1 BIT(3)
19 #define GB_CONNECTION_FLAG_CONTROL BIT(4)
20 #define GB_CONNECTION_FLAG_HIGH_PRIO BIT(5)
22 #define GB_CONNECTION_FLAG_CORE_MASK GB_CONNECTION_FLAG_CONTROL
24 enum gb_connection_state
{
25 GB_CONNECTION_STATE_DISABLED
= 0,
26 GB_CONNECTION_STATE_ENABLED_TX
= 1,
27 GB_CONNECTION_STATE_ENABLED
= 2,
28 GB_CONNECTION_STATE_DISCONNECTING
= 3,
33 typedef int (*gb_request_handler_t
)(struct gb_operation
*);
35 struct gb_connection
{
36 struct gb_host_device
*hd
;
37 struct gb_interface
*intf
;
38 struct gb_bundle
*bundle
;
43 struct list_head hd_links
;
44 struct list_head bundle_links
;
46 gb_request_handler_t handler
;
51 enum gb_connection_state state
;
52 struct list_head operations
;
55 struct workqueue_struct
*wq
;
64 struct gb_connection
*gb_connection_create_static(struct gb_host_device
*hd
,
65 u16 hd_cport_id
, gb_request_handler_t handler
);
66 struct gb_connection
*gb_connection_create_control(struct gb_interface
*intf
);
67 struct gb_connection
*gb_connection_create(struct gb_bundle
*bundle
,
68 u16 cport_id
, gb_request_handler_t handler
);
69 struct gb_connection
*gb_connection_create_flags(struct gb_bundle
*bundle
,
70 u16 cport_id
, gb_request_handler_t handler
,
72 struct gb_connection
*gb_connection_create_offloaded(struct gb_bundle
*bundle
,
73 u16 cport_id
, unsigned long flags
);
74 void gb_connection_destroy(struct gb_connection
*connection
);
76 static inline bool gb_connection_is_static(struct gb_connection
*connection
)
78 return !connection
->intf
;
81 int gb_connection_enable(struct gb_connection
*connection
);
82 int gb_connection_enable_tx(struct gb_connection
*connection
);
83 void gb_connection_disable_rx(struct gb_connection
*connection
);
84 void gb_connection_disable(struct gb_connection
*connection
);
85 void gb_connection_disable_forced(struct gb_connection
*connection
);
87 void gb_connection_mode_switch_prepare(struct gb_connection
*connection
);
88 void gb_connection_mode_switch_complete(struct gb_connection
*connection
);
90 void greybus_data_rcvd(struct gb_host_device
*hd
, u16 cport_id
,
91 u8
*data
, size_t length
);
93 void gb_connection_latency_tag_enable(struct gb_connection
*connection
);
94 void gb_connection_latency_tag_disable(struct gb_connection
*connection
);
96 static inline bool gb_connection_e2efc_enabled(struct gb_connection
*connection
)
98 return !(connection
->flags
& GB_CONNECTION_FLAG_CSD
);
102 gb_connection_flow_control_disabled(struct gb_connection
*connection
)
104 return connection
->flags
& GB_CONNECTION_FLAG_NO_FLOWCTRL
;
107 static inline bool gb_connection_is_offloaded(struct gb_connection
*connection
)
109 return connection
->flags
& GB_CONNECTION_FLAG_OFFLOADED
;
112 static inline bool gb_connection_is_control(struct gb_connection
*connection
)
114 return connection
->flags
& GB_CONNECTION_FLAG_CONTROL
;
117 static inline void *gb_connection_get_data(struct gb_connection
*connection
)
119 return connection
->private;
122 static inline void gb_connection_set_data(struct gb_connection
*connection
,
125 connection
->private = data
;
128 #endif /* __CONNECTION_H */