1 /*
2  * Copyright (c) 2010 Broadcom Corporation
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16 
17 #ifndef BRCMFMAC_BUS_H
18 #define BRCMFMAC_BUS_H
19 
20 #include "debug.h"
21 
22 /* IDs of the 6 default common rings of msgbuf protocol */
23 #define BRCMF_H2D_MSGRING_CONTROL_SUBMIT	0
24 #define BRCMF_H2D_MSGRING_RXPOST_SUBMIT		1
25 #define BRCMF_H2D_MSGRING_FLOWRING_IDSTART	2
26 #define BRCMF_D2H_MSGRING_CONTROL_COMPLETE	2
27 #define BRCMF_D2H_MSGRING_TX_COMPLETE		3
28 #define BRCMF_D2H_MSGRING_RX_COMPLETE		4
29 
30 
31 #define BRCMF_NROF_H2D_COMMON_MSGRINGS		2
32 #define BRCMF_NROF_D2H_COMMON_MSGRINGS		3
33 #define BRCMF_NROF_COMMON_MSGRINGS	(BRCMF_NROF_H2D_COMMON_MSGRINGS + \
34 					 BRCMF_NROF_D2H_COMMON_MSGRINGS)
35 
36 /* The level of bus communication with the dongle */
37 enum brcmf_bus_state {
38 	BRCMF_BUS_DOWN,		/* Not ready for frame transfers */
39 	BRCMF_BUS_UP		/* Ready for frame transfers */
40 };
41 
42 /* The level of bus communication with the dongle */
43 enum brcmf_bus_protocol_type {
44 	BRCMF_PROTO_BCDC,
45 	BRCMF_PROTO_MSGBUF
46 };
47 
48 struct brcmf_mp_device;
49 
50 struct brcmf_bus_dcmd {
51 	char *name;
52 	char *param;
53 	int param_len;
54 	struct list_head list;
55 };
56 
57 /**
58  * struct brcmf_bus_ops - bus callback operations.
59  *
60  * @preinit: execute bus/device specific dongle init commands (optional).
61  * @init: prepare for communication with dongle.
62  * @stop: clear pending frames, disable data flow.
63  * @txdata: send a data frame to the dongle. When the data
64  *	has been transferred, the common driver must be
65  *	notified using brcmf_txcomplete(). The common
66  *	driver calls this function with interrupts
67  *	disabled.
68  * @txctl: transmit a control request message to dongle.
69  * @rxctl: receive a control response message from dongle.
70  * @gettxq: obtain a reference of bus transmit queue (optional).
71  * @wowl_config: specify if dongle is configured for wowl when going to suspend
72  * @get_ramsize: obtain size of device memory.
73  * @get_memdump: obtain device memory dump in provided buffer.
74  *
75  * This structure provides an abstract interface towards the
76  * bus specific driver. For control messages to common driver
77  * will assure there is only one active transaction. Unless
78  * indicated otherwise these callbacks are mandatory.
79  */
80 struct brcmf_bus_ops {
81 	int (*preinit)(struct device *dev);
82 	void (*stop)(struct device *dev);
83 	int (*txdata)(struct device *dev, struct sk_buff *skb);
84 	int (*txctl)(struct device *dev, unsigned char *msg, uint len);
85 	int (*rxctl)(struct device *dev, unsigned char *msg, uint len);
86 	struct pktq * (*gettxq)(struct device *dev);
87 	void (*wowl_config)(struct device *dev, bool enabled);
88 	size_t (*get_ramsize)(struct device *dev);
89 	int (*get_memdump)(struct device *dev, void *data, size_t len);
90 };
91 
92 
93 /**
94  * struct brcmf_bus_msgbuf - bus ringbuf if in case of msgbuf.
95  *
96  * @commonrings: commonrings which are always there.
97  * @flowrings: commonrings which are dynamically created and destroyed for data.
98  * @rx_dataoffset: if set then all rx data has this this offset.
99  * @max_rxbufpost: maximum number of buffers to post for rx.
100  * @max_flowrings: maximum number of tx flow rings supported.
101  * @max_submissionrings: maximum number of submission rings(h2d) supported.
102  * @max_completionrings: maximum number of completion rings(d2h) supported.
103  */
104 struct brcmf_bus_msgbuf {
105 	struct brcmf_commonring *commonrings[BRCMF_NROF_COMMON_MSGRINGS];
106 	struct brcmf_commonring **flowrings;
107 	u32 rx_dataoffset;
108 	u32 max_rxbufpost;
109 	u16 max_flowrings;
110 	u16 max_submissionrings;
111 	u16 max_completionrings;
112 };
113 
114 
115 /**
116  * struct brcmf_bus - interface structure between common and bus layer
117  *
118  * @bus_priv: pointer to private bus device.
119  * @proto_type: protocol type, bcdc or msgbuf
120  * @dev: device pointer of bus device.
121  * @drvr: public driver information.
122  * @state: operational state of the bus interface.
123  * @maxctl: maximum size for rxctl request message.
124  * @tx_realloc: number of tx packets realloced for headroom.
125  * @dstats: dongle-based statistical data.
126  * @dcmd_list: bus/device specific dongle initialization commands.
127  * @chip: device identifier of the dongle chip.
128  * @wowl_supported: is wowl supported by bus driver.
129  * @chiprev: revision of the dongle chip.
130  */
131 struct brcmf_bus {
132 	union {
133 		struct brcmf_sdio_dev *sdio;
134 		struct brcmf_usbdev *usb;
135 		struct brcmf_pciedev *pcie;
136 	} bus_priv;
137 	enum brcmf_bus_protocol_type proto_type;
138 	struct device *dev;
139 	struct brcmf_pub *drvr;
140 	enum brcmf_bus_state state;
141 	uint maxctl;
142 	unsigned long tx_realloc;
143 	u32 chip;
144 	u32 chiprev;
145 	bool always_use_fws_queue;
146 	bool wowl_supported;
147 
148 	const struct brcmf_bus_ops *ops;
149 	struct brcmf_bus_msgbuf *msgbuf;
150 };
151 
152 /*
153  * callback wrappers
154  */
155 static inline int brcmf_bus_preinit(struct brcmf_bus *bus)
156 {
157 	if (!bus->ops->preinit)
158 		return 0;
159 	return bus->ops->preinit(bus->dev);
160 }
161 
162 static inline void brcmf_bus_stop(struct brcmf_bus *bus)
163 {
164 	bus->ops->stop(bus->dev);
165 }
166 
167 static inline int brcmf_bus_txdata(struct brcmf_bus *bus, struct sk_buff *skb)
168 {
169 	return bus->ops->txdata(bus->dev, skb);
170 }
171 
172 static inline
173 int brcmf_bus_txctl(struct brcmf_bus *bus, unsigned char *msg, uint len)
174 {
175 	return bus->ops->txctl(bus->dev, msg, len);
176 }
177 
178 static inline
179 int brcmf_bus_rxctl(struct brcmf_bus *bus, unsigned char *msg, uint len)
180 {
181 	return bus->ops->rxctl(bus->dev, msg, len);
182 }
183 
184 static inline
185 struct pktq *brcmf_bus_gettxq(struct brcmf_bus *bus)
186 {
187 	if (!bus->ops->gettxq)
188 		return ERR_PTR(-ENOENT);
189 
190 	return bus->ops->gettxq(bus->dev);
191 }
192 
193 static inline
194 void brcmf_bus_wowl_config(struct brcmf_bus *bus, bool enabled)
195 {
196 	if (bus->ops->wowl_config)
197 		bus->ops->wowl_config(bus->dev, enabled);
198 }
199 
200 static inline size_t brcmf_bus_get_ramsize(struct brcmf_bus *bus)
201 {
202 	if (!bus->ops->get_ramsize)
203 		return 0;
204 
205 	return bus->ops->get_ramsize(bus->dev);
206 }
207 
208 static inline
209 int brcmf_bus_get_memdump(struct brcmf_bus *bus, void *data, size_t len)
210 {
211 	if (!bus->ops->get_memdump)
212 		return -EOPNOTSUPP;
213 
214 	return bus->ops->get_memdump(bus->dev, data, len);
215 }
216 
217 /*
218  * interface functions from common layer
219  */
220 
221 /* Receive frame for delivery to OS.  Callee disposes of rxp. */
222 void brcmf_rx_frame(struct device *dev, struct sk_buff *rxp, bool handle_event);
223 /* Receive async event packet from firmware. Callee disposes of rxp. */
224 void brcmf_rx_event(struct device *dev, struct sk_buff *rxp);
225 
226 /* Indication from bus module regarding presence/insertion of dongle. */
227 int brcmf_attach(struct device *dev, struct brcmf_mp_device *settings);
228 /* Indication from bus module regarding removal/absence of dongle */
229 void brcmf_detach(struct device *dev);
230 /* Indication from bus module that dongle should be reset */
231 void brcmf_dev_reset(struct device *dev);
232 /* Indication from bus module to change flow-control state */
233 void brcmf_txflowblock(struct device *dev, bool state);
234 
235 /* Notify the bus has transferred the tx packet to firmware */
236 void brcmf_txcomplete(struct device *dev, struct sk_buff *txp, bool success);
237 
238 /* Configure the "global" bus state used by upper layers */
239 void brcmf_bus_change_state(struct brcmf_bus *bus, enum brcmf_bus_state state);
240 
241 int brcmf_bus_started(struct device *dev);
242 s32 brcmf_iovar_data_set(struct device *dev, char *name, void *data, u32 len);
243 void brcmf_bus_add_txhdrlen(struct device *dev, uint len);
244 
245 #ifdef CONFIG_BRCMFMAC_SDIO
246 void brcmf_sdio_exit(void);
247 void brcmf_sdio_register(void);
248 #endif
249 #ifdef CONFIG_BRCMFMAC_USB
250 void brcmf_usb_exit(void);
251 void brcmf_usb_register(void);
252 #endif
253 
254 #endif /* BRCMFMAC_BUS_H */
255