Merge git://www.linux-watchdog.org/linux-watchdog
[linux-2.6-block.git] / drivers / net / wireless / brcm80211 / brcmfmac / dhd_bus.h
CommitLineData
5b435de0
AS
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 _BRCMF_BUS_H_
18#define _BRCMF_BUS_H_
19
bb350711
AS
20#include "dhd_dbg.h"
21
9a1bb602
HM
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_D2H_MSGRING_CONTROL_COMPLETE 2
26#define BRCMF_D2H_MSGRING_TX_COMPLETE 3
27#define BRCMF_D2H_MSGRING_RX_COMPLETE 4
28
29#define BRCMF_NROF_H2D_COMMON_MSGRINGS 2
30#define BRCMF_NROF_D2H_COMMON_MSGRINGS 3
31#define BRCMF_NROF_COMMON_MSGRINGS (BRCMF_NROF_H2D_COMMON_MSGRINGS + \
32 BRCMF_NROF_D2H_COMMON_MSGRINGS)
33
a8a363ac
FL
34/* The level of bus communication with the dongle */
35enum brcmf_bus_state {
bb350711
AS
36 BRCMF_BUS_UNKNOWN, /* Not determined yet */
37 BRCMF_BUS_NOMEDIUM, /* No medium access to dongle */
a8a363ac
FL
38 BRCMF_BUS_DOWN, /* Not ready for frame transfers */
39 BRCMF_BUS_LOAD, /* Download access only (CPU reset) */
40 BRCMF_BUS_DATA /* Ready for frame transfers */
41};
42
943258b6
HM
43/* The level of bus communication with the dongle */
44enum brcmf_bus_protocol_type {
45 BRCMF_PROTO_BCDC,
46 BRCMF_PROTO_MSGBUF
47};
48
135e4c61
FL
49struct brcmf_bus_dcmd {
50 char *name;
51 char *param;
52 int param_len;
53 struct list_head list;
54};
55
d9cb2596
AS
56/**
57 * struct brcmf_bus_ops - bus callback operations.
58 *
cf458287 59 * @preinit: execute bus/device specific dongle init commands (optional).
d9cb2596
AS
60 * @init: prepare for communication with dongle.
61 * @stop: clear pending frames, disable data flow.
4061f895
AS
62 * @txdata: send a data frame to the dongle. When the data
63 * has been transferred, the common driver must be
64 * notified using brcmf_txcomplete(). The common
65 * driver calls this function with interrupts
66 * disabled.
d9cb2596
AS
67 * @txctl: transmit a control request message to dongle.
68 * @rxctl: receive a control response message from dongle.
e2432b67 69 * @gettxq: obtain a reference of bus transmit queue (optional).
d9cb2596
AS
70 *
71 * This structure provides an abstract interface towards the
72 * bus specific driver. For control messages to common driver
e2432b67
AS
73 * will assure there is only one active transaction. Unless
74 * indicated otherwise these callbacks are mandatory.
d9cb2596
AS
75 */
76struct brcmf_bus_ops {
cf458287 77 int (*preinit)(struct device *dev);
d9cb2596
AS
78 void (*stop)(struct device *dev);
79 int (*txdata)(struct device *dev, struct sk_buff *skb);
80 int (*txctl)(struct device *dev, unsigned char *msg, uint len);
81 int (*rxctl)(struct device *dev, unsigned char *msg, uint len);
e2432b67 82 struct pktq * (*gettxq)(struct device *dev);
d9cb2596
AS
83};
84
9a1bb602
HM
85
86/**
87 * struct brcmf_bus_msgbuf - bus ringbuf if in case of msgbuf.
88 *
89 * @commonrings: commonrings which are always there.
90 * @flowrings: commonrings which are dynamically created and destroyed for data.
91 * @rx_dataoffset: if set then all rx data has this this offset.
92 * @max_rxbufpost: maximum number of buffers to post for rx.
93 * @nrof_flowrings: number of flowrings.
94 */
95struct brcmf_bus_msgbuf {
96 struct brcmf_commonring *commonrings[BRCMF_NROF_COMMON_MSGRINGS];
97 struct brcmf_commonring **flowrings;
98 u32 rx_dataoffset;
99 u32 max_rxbufpost;
100 u32 nrof_flowrings;
101};
102
103
d9cb2596
AS
104/**
105 * struct brcmf_bus - interface structure between common and bus layer
106 *
107 * @bus_priv: pointer to private bus device.
943258b6 108 * @proto_type: protocol type, bcdc or msgbuf
d9cb2596
AS
109 * @dev: device pointer of bus device.
110 * @drvr: public driver information.
111 * @state: operational state of the bus interface.
112 * @maxctl: maximum size for rxctl request message.
d9cb2596
AS
113 * @tx_realloc: number of tx packets realloced for headroom.
114 * @dstats: dongle-based statistical data.
d9cb2596 115 * @dcmd_list: bus/device specific dongle initialization commands.
75d907d3
AS
116 * @chip: device identifier of the dongle chip.
117 * @chiprev: revision of the dongle chip.
d9cb2596 118 */
a8a363ac 119struct brcmf_bus {
0a332e46 120 union {
0a332e46 121 struct brcmf_sdio_dev *sdio;
71bb244b 122 struct brcmf_usbdev *usb;
9e37f045 123 struct brcmf_pciedev *pcie;
0a332e46 124 } bus_priv;
943258b6 125 enum brcmf_bus_protocol_type proto_type;
d9cb2596
AS
126 struct device *dev;
127 struct brcmf_pub *drvr;
a8a363ac 128 enum brcmf_bus_state state;
d9cb2596 129 uint maxctl;
d9cb2596 130 unsigned long tx_realloc;
75d907d3
AS
131 u32 chip;
132 u32 chiprev;
9cd18359 133 bool always_use_fws_queue;
a8a363ac 134
d9cb2596 135 struct brcmf_bus_ops *ops;
9a1bb602 136 struct brcmf_bus_msgbuf *msgbuf;
a8a363ac
FL
137};
138
d9cb2596
AS
139/*
140 * callback wrappers
141 */
cf458287
AS
142static inline int brcmf_bus_preinit(struct brcmf_bus *bus)
143{
144 if (!bus->ops->preinit)
145 return 0;
146 return bus->ops->preinit(bus->dev);
147}
148
d9cb2596
AS
149static inline void brcmf_bus_stop(struct brcmf_bus *bus)
150{
151 bus->ops->stop(bus->dev);
152}
153
154static inline int brcmf_bus_txdata(struct brcmf_bus *bus, struct sk_buff *skb)
155{
156 return bus->ops->txdata(bus->dev, skb);
157}
158
159static inline
160int brcmf_bus_txctl(struct brcmf_bus *bus, unsigned char *msg, uint len)
161{
162 return bus->ops->txctl(bus->dev, msg, len);
163}
164
165static inline
166int brcmf_bus_rxctl(struct brcmf_bus *bus, unsigned char *msg, uint len)
167{
168 return bus->ops->rxctl(bus->dev, msg, len);
169}
170
e2432b67
AS
171static inline
172struct pktq *brcmf_bus_gettxq(struct brcmf_bus *bus)
173{
174 if (!bus->ops->gettxq)
175 return ERR_PTR(-ENOENT);
176
177 return bus->ops->gettxq(bus->dev);
178}
bb350711
AS
179
180static inline bool brcmf_bus_ready(struct brcmf_bus *bus)
181{
182 return bus->state == BRCMF_BUS_LOAD || bus->state == BRCMF_BUS_DATA;
183}
184
185static inline void brcmf_bus_change_state(struct brcmf_bus *bus,
186 enum brcmf_bus_state new_state)
187{
188 /* NOMEDIUM is permanent */
189 if (bus->state == BRCMF_BUS_NOMEDIUM)
190 return;
191
192 brcmf_dbg(TRACE, "%d -> %d\n", bus->state, new_state);
193 bus->state = new_state;
194}
195
a8a363ac
FL
196/*
197 * interface functions from common layer
198 */
199
9bd91f3c
JP
200bool brcmf_c_prec_enq(struct device *dev, struct pktq *q, struct sk_buff *pkt,
201 int prec);
a8a363ac
FL
202
203/* Receive frame for delivery to OS. Callee disposes of rxp. */
7009deab 204void brcmf_rx_frame(struct device *dev, struct sk_buff *rxp);
a8a363ac
FL
205
206/* Indication from bus module regarding presence/insertion of dongle. */
8dee77ba 207int brcmf_attach(struct device *dev);
a8a363ac 208/* Indication from bus module regarding removal/absence of dongle */
9bd91f3c 209void brcmf_detach(struct device *dev);
81d5f1bb 210/* Indication from bus module that dongle should be reset */
9bd91f3c 211void brcmf_dev_reset(struct device *dev);
a8a363ac 212/* Indication from bus module to change flow-control state */
9bd91f3c 213void brcmf_txflowblock(struct device *dev, bool state);
a8a363ac 214
7f4bceec 215/* Notify the bus has transferred the tx packet to firmware */
9bd91f3c 216void brcmf_txcomplete(struct device *dev, struct sk_buff *txp, bool success);
a8a363ac 217
9bd91f3c 218int brcmf_bus_start(struct device *dev);
cf458287
AS
219s32 brcmf_iovar_data_set(struct device *dev, char *name, void *data,
220 u32 len);
8dee77ba 221void brcmf_bus_add_txhdrlen(struct device *dev, uint len);
a8a363ac 222
f3d7cdc3 223#ifdef CONFIG_BRCMFMAC_SDIO
9bd91f3c
JP
224void brcmf_sdio_exit(void);
225void brcmf_sdio_init(void);
4fbef95a 226void brcmf_sdio_register(void);
f3d7cdc3 227#endif
71bb244b 228#ifdef CONFIG_BRCMFMAC_USB
9bd91f3c 229void brcmf_usb_exit(void);
4fbef95a 230void brcmf_usb_register(void);
71bb244b 231#endif
f3d7cdc3 232
5b435de0 233#endif /* _BRCMF_BUS_H_ */