summaryrefslogtreecommitdiffstats
path: root/drivers/staging/brcm80211/include/dbus.h
blob: 81ffea79d00895990661afa20af2ba05263b5cef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
/*
 * Copyright (c) 2010 Broadcom Corporation
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef __DBUS_H__
#define __DBUS_H__

#ifdef BCMDBG
#define DBUSERR(args)        do { if (net_ratelimit()) printf args; } while (0)
#define DBUSTRACE(args)
#define DBUSDBGLOCK(args)

#else
#define DBUSTRACE(args)
#define DBUSERR(args)
#define DBUSDBGLOCK(args)
#endif

enum {
	DBUS_OK = 0,
	DBUS_ERR = -200,
	DBUS_ERR_TIMEOUT,
	DBUS_ERR_DISCONNECT,
	DBUS_ERR_NODEVICE,
	DBUS_ERR_UNSUPPORTED,
	DBUS_ERR_PENDING,
	DBUS_ERR_NOMEM,
	DBUS_ERR_TXFAIL,
	DBUS_ERR_TXTIMEOUT,
	DBUS_ERR_TXDROP,
	DBUS_ERR_RXFAIL,
	DBUS_ERR_RXDROP,
	DBUS_ERR_TXCTLFAIL,
	DBUS_ERR_RXCTLFAIL,
	DBUS_ERR_REG_PARAM,
	DBUS_STATUS_CANCELLED
};

#define ERR_CBMASK_TXFAIL		0x00000001
#define ERR_CBMASK_RXFAIL		0x00000002
#define ERR_CBMASK_ALL			0xFFFFFFFF

#define DBUS_CBCTL_WRITE		0
#define DBUS_CBCTL_READ			1

#define DBUS_TX_RETRY_LIMIT		3	/* retries for failed txirb */
#define DBUS_TX_TIMEOUT_INTERVAL	250	/* timeout for txirb complete, in ms */

#define DBUS_BUFFER_SIZE_TX	5000
#define DBUS_BUFFER_SIZE_RX	5000

#define DBUS_BUFFER_SIZE_TX_NOAGG	2048
#define DBUS_BUFFER_SIZE_RX_NOAGG	2048

/* DBUS types */
enum {
	DBUS_USB,
	DBUS_SDIO,
	DBUS_SPI,
	DBUS_UNKNOWN
};

enum dbus_state {
	DBUS_STATE_DL_PENDING,
	DBUS_STATE_DL_DONE,
	DBUS_STATE_UP,
	DBUS_STATE_DOWN,
	DBUS_STATE_PNP_FWDL,
	DBUS_STATE_DISCONNECT
};

enum dbus_pnp_state {
	DBUS_PNP_DISCONNECT,
	DBUS_PNP_SLEEP,
	DBUS_PNP_RESUME
};

typedef enum _DEVICE_SPEED {
	INVALID_SPEED = -1,
	LOW_SPEED = 1,		/* USB 1.1: 1.5 Mbps */
	FULL_SPEED,		/* USB 1.1: 12  Mbps */
	HIGH_SPEED,		/* USB 2.0: 480 Mbps */
	SUPER_SPEED,		/* USB 3.0: 4.8 Gbps */
} DEVICE_SPEED;

typedef struct {
	int bustype;
	int vid;
	int pid;
	int devid;
	int chiprev;		/* chip revsion number */
	int mtu;
	int nchan;		/* Data Channels */
} dbus_attrib_t;

/* FIX: Account for errors related to DBUS;
 * Let upper layer account for packets/bytes
 */
typedef struct {
	u32 rx_errors;
	u32 tx_errors;
	u32 rx_dropped;
	u32 tx_dropped;
} dbus_stats_t;

/*
 * Configurable BUS parameters
 */
typedef struct {
	bool rxctl_deferrespok;
} dbus_config_t;

struct dbus_callbacks;
struct exec_parms;

typedef void *(*probe_cb_t) (void *arg, const char *desc, u32 bustype,
			     u32 hdrlen);
typedef void (*disconnect_cb_t) (void *arg);
typedef void *(*exec_cb_t) (struct exec_parms *args);

/* Client callbacks registered during dbus_attach() */
typedef struct dbus_callbacks {
	void (*send_complete) (void *cbarg, void *info, int status);
	void (*recv_buf) (void *cbarg, u8 *buf, int len);
	void (*recv_pkt) (void *cbarg, void *pkt);
	void (*txflowcontrol) (void *cbarg, bool onoff);
	void (*errhandler) (void *cbarg, int err);
	void (*ctl_complete) (void *cbarg, int type, int status);
	void (*state_change) (void *cbarg, int state);
	void *(*pktget) (void *cbarg, uint len, bool send);
	void (*pktfree) (void *cbarg, void *p, bool send);
} dbus_callbacks_t;

struct dbus_pub;
struct bcmstrbuf;
struct dbus_irb;
struct dbus_irb_rx;
struct dbus_irb_tx;
struct dbus_intf_callbacks;

typedef struct {
	void *(*attach) (struct dbus_pub *pub, void *cbarg,
			 struct dbus_intf_callbacks *cbs);
	void (*detach) (struct dbus_pub *pub, void *bus);

	int (*up) (void *bus);
	int (*down) (void *bus);
	int (*send_irb) (void *bus, struct dbus_irb_tx *txirb);
	int (*recv_irb) (void *bus, struct dbus_irb_rx *rxirb);
	int (*cancel_irb) (void *bus, struct dbus_irb_tx *txirb);
	int (*send_ctl) (void *bus, u8 *buf, int len);
	int (*recv_ctl) (void *bus, u8 *buf, int len);
	int (*get_stats) (void *bus, dbus_stats_t *stats);
	int (*get_attrib) (void *bus, dbus_attrib_t *attrib);

	int (*pnp) (void *bus, int event);
	int (*remove) (void *bus);
	int (*resume) (void *bus);
	int (*suspend) (void *bus);
	int (*stop) (void *bus);
	int (*reset) (void *bus);

	/* Access to bus buffers directly */
	void *(*pktget) (void *bus, int len);
	void (*pktfree) (void *bus, void *pkt);

	int (*iovar_op) (void *bus, const char *name, void *params, int plen,
			 void *arg, int len, bool set);
	void (*dump) (void *bus, struct bcmstrbuf *strbuf);
	int (*set_config) (void *bus, dbus_config_t *config);
	int (*get_config) (void *bus, dbus_config_t *config);

	 bool(*device_exists) (void *bus);
	 bool(*dlneeded) (void *bus);
	int (*dlstart) (void *bus, u8 *fw, int len);
	int (*dlrun) (void *bus);
	 bool(*recv_needed) (void *bus);

	void *(*exec_rxlock) (void *bus, exec_cb_t func,
			      struct exec_parms *args);
	void *(*exec_txlock) (void *bus, exec_cb_t func,
			      struct exec_parms *args);

	int (*tx_timer_init) (void *bus);
	int (*tx_timer_start) (void *bus, uint timeout);
	int (*tx_timer_stop) (void *bus);

	int (*sched_dpc) (void *bus);
	int (*lock) (void *bus);
	int (*unlock) (void *bus);
	int (*sched_probe_cb) (void *bus);

	int (*shutdown) (void *bus);

	int (*recv_stop) (void *bus);
	int (*recv_resume) (void *bus);

	/* Add from the bottom */
} dbus_intf_t;

typedef struct dbus_pub {
	struct osl_info *osh;
	dbus_stats_t stats;
	dbus_attrib_t attrib;
	enum dbus_state busstate;
	DEVICE_SPEED device_speed;
	int ntxq, nrxq, rxsize;
	void *bus;
	struct shared_info *sh;
} dbus_pub_t;

#define BUS_INFO(bus, type) (((type *) bus)->pub->bus)

/*
 * Public Bus Function Interface
 */
extern int dbus_register(int vid, int pid, probe_cb_t prcb,
			 disconnect_cb_t discb, void *prarg, void *param1,
			 void *param2);
extern int dbus_deregister(void);

extern const dbus_pub_t *dbus_attach(struct osl_info *osh, int rxsize, int nrxq,
				     int ntxq, void *cbarg,
				     dbus_callbacks_t *cbs,
				     struct shared_info *sh);
extern void dbus_detach(const dbus_pub_t *pub);

extern int dbus_up(const dbus_pub_t *pub);
extern int dbus_down(const dbus_pub_t *pub);
extern int dbus_stop(const dbus_pub_t *pub);
extern int dbus_shutdown(const dbus_pub_t *pub);
extern void dbus_flowctrl_rx(const dbus_pub_t *pub, bool on);

extern int dbus_send_buf(const dbus_pub_t *pub, u8 *buf, int len,
			 void *info);
extern int dbus_send_pkt(const dbus_pub_t *pub, void *pkt, void *info);
extern int dbus_send_ctl(const dbus_pub_t *pub, u8 *buf, int len);
extern int dbus_recv_ctl(const dbus_pub_t *pub, u8 *buf, int len);

extern int dbus_get_stats(const dbus_pub_t *pub, dbus_stats_t *stats);
extern int dbus_get_attrib(const dbus_pub_t *pub, dbus_attrib_t *attrib);
extern int dbus_get_device_speed(const dbus_pub_t *pub);
extern int dbus_set_config(const dbus_pub_t *pub, dbus_config_t *config);
extern int dbus_get_config(const dbus_pub_t *pub, dbus_config_t *config);

extern void *dbus_pktget(const dbus_pub_t *pub, int len);
extern void dbus_pktfree(const dbus_pub_t *pub, void *pkt);

extern int dbus_set_errmask(const dbus_pub_t *pub, u32 mask);
extern int dbus_pnp_sleep(const dbus_pub_t *pub);
extern int dbus_pnp_resume(const dbus_pub_t *pub, int *fw_reload);
extern int dbus_pnp_disconnect(const dbus_pub_t *pub);

extern int dbus_iovar_op(const dbus_pub_t *pub, const char *name,
			 void *params, int plen, void *arg, int len, bool set);
#ifdef BCMDBG
extern void dbus_hist_dump(const dbus_pub_t *pub, struct bcmstrbuf *b);
#endif				/* BCMDBG */
/*
 * Private Common Bus Interface
 */

/* IO Request Block (IRB) */
typedef struct dbus_irb {
	struct dbus_irb *next;	/* it's casted from dbus_irb_tx or dbus_irb_rx struct */
} dbus_irb_t;

typedef struct dbus_irb_rx {
	struct dbus_irb irb;	/* Must be first */
	u8 *buf;
	int buf_len;
	int actual_len;
	void *pkt;
	void *info;
	void *arg;
} dbus_irb_rx_t;

typedef struct dbus_irb_tx {
	struct dbus_irb irb;	/* Must be first */
	u8 *buf;
	int len;
	void *pkt;
	int retry_count;
	void *info;
	void *arg;
} dbus_irb_tx_t;

/* DBUS interface callbacks are different from user callbacks
 * so, internally, different info can be passed to upper layer
 */
typedef struct dbus_intf_callbacks {
	void (*send_irb_timeout) (void *cbarg, dbus_irb_tx_t *txirb);
	void (*send_irb_complete) (void *cbarg, dbus_irb_tx_t *txirb,
				   int status);
	void (*recv_irb_complete) (void *cbarg, dbus_irb_rx_t *rxirb,
				   int status);
	void (*errhandler) (void *cbarg, int err);
	void (*ctl_complete) (void *cbarg, int type, int status);
	void (*state_change) (void *cbarg, int state);
	 bool(*isr) (void *cbarg, bool *wantdpc);
	 bool(*dpc) (void *cbarg, bool bounded);
	void (*watchdog) (void *cbarg);
	void *(*pktget) (void *cbarg, uint len, bool send);
	void (*pktfree) (void *cbarg, void *p, bool send);
	struct dbus_irb *(*getirb) (void *cbarg, bool send);
	void (*rxerr_indicate) (void *cbarg, bool on);
} dbus_intf_callbacks_t;

/*
 * Porting: To support new bus, port these functions below
 */

/*
 * Bus specific Interface
 * Implemented by dbus_usb.c/dbus_sdio.c
 */
extern int dbus_bus_register(int vid, int pid, probe_cb_t prcb,
			     disconnect_cb_t discb, void *prarg,
			     dbus_intf_t **intf, void *param1, void *param2);
extern int dbus_bus_deregister(void);

/*
 * Bus-specific and OS-specific Interface
 * Implemented by dbus_usb_[linux/ndis].c/dbus_sdio_[linux/ndis].c
 */
extern int dbus_bus_osl_register(int vid, int pid, probe_cb_t prcb,
				 disconnect_cb_t discb, void *prarg,
				 dbus_intf_t **intf, void *param1,
				 void *param2);
extern int dbus_bus_osl_deregister(void);

/*
 * Bus-specific, OS-specific, HW-specific Interface
 * Mainly for SDIO Host HW controller
 */
extern int dbus_bus_osl_hw_register(int vid, int pid, probe_cb_t prcb,
				    disconnect_cb_t discb, void *prarg,
				    dbus_intf_t **intf);
extern int dbus_bus_osl_hw_deregister(void);

#endif				/* __DBUS_H__ */
OpenPOWER on IntegriCloud