2 * Copyright (c) 2010 Broadcom Corporation
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.
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.
20 /* The level of bus communication with the dongle */
21 enum brcmf_bus_state
{
22 BRCMF_BUS_DOWN
, /* Not ready for frame transfers */
23 BRCMF_BUS_LOAD
, /* Download access only (CPU reset) */
24 BRCMF_BUS_DATA
/* Ready for frame transfers */
27 struct brcmf_bus_dcmd
{
31 struct list_head list
;
35 * struct brcmf_bus_ops - bus callback operations.
37 * @init: prepare for communication with dongle.
38 * @stop: clear pending frames, disable data flow.
39 * @txdata: send a data frame to the dongle. When the data
40 * has been transferred, the common driver must be
41 * notified using brcmf_txcomplete(). The common
42 * driver calls this function with interrupts
44 * @txctl: transmit a control request message to dongle.
45 * @rxctl: receive a control response message from dongle.
46 * @gettxq: obtain a reference of bus transmit queue (optional).
48 * This structure provides an abstract interface towards the
49 * bus specific driver. For control messages to common driver
50 * will assure there is only one active transaction. Unless
51 * indicated otherwise these callbacks are mandatory.
53 struct brcmf_bus_ops
{
54 int (*init
)(struct device
*dev
);
55 void (*stop
)(struct device
*dev
);
56 int (*txdata
)(struct device
*dev
, struct sk_buff
*skb
);
57 int (*txctl
)(struct device
*dev
, unsigned char *msg
, uint len
);
58 int (*rxctl
)(struct device
*dev
, unsigned char *msg
, uint len
);
59 struct pktq
* (*gettxq
)(struct device
*dev
);
63 * struct brcmf_bus - interface structure between common and bus layer
65 * @bus_priv: pointer to private bus device.
66 * @dev: device pointer of bus device.
67 * @drvr: public driver information.
68 * @state: operational state of the bus interface.
69 * @maxctl: maximum size for rxctl request message.
70 * @tx_realloc: number of tx packets realloced for headroom.
71 * @dstats: dongle-based statistical data.
72 * @dcmd_list: bus/device specific dongle initialization commands.
73 * @chip: device identifier of the dongle chip.
74 * @chiprev: revision of the dongle chip.
78 struct brcmf_sdio_dev
*sdio
;
79 struct brcmf_usbdev
*usb
;
82 struct brcmf_pub
*drvr
;
83 enum brcmf_bus_state state
;
85 unsigned long tx_realloc
;
88 struct list_head dcmd_list
;
90 struct brcmf_bus_ops
*ops
;
96 static inline int brcmf_bus_init(struct brcmf_bus
*bus
)
98 return bus
->ops
->init(bus
->dev
);
101 static inline void brcmf_bus_stop(struct brcmf_bus
*bus
)
103 bus
->ops
->stop(bus
->dev
);
106 static inline int brcmf_bus_txdata(struct brcmf_bus
*bus
, struct sk_buff
*skb
)
108 return bus
->ops
->txdata(bus
->dev
, skb
);
112 int brcmf_bus_txctl(struct brcmf_bus
*bus
, unsigned char *msg
, uint len
)
114 return bus
->ops
->txctl(bus
->dev
, msg
, len
);
118 int brcmf_bus_rxctl(struct brcmf_bus
*bus
, unsigned char *msg
, uint len
)
120 return bus
->ops
->rxctl(bus
->dev
, msg
, len
);
124 struct pktq
*brcmf_bus_gettxq(struct brcmf_bus
*bus
)
126 if (!bus
->ops
->gettxq
)
127 return ERR_PTR(-ENOENT
);
129 return bus
->ops
->gettxq(bus
->dev
);
132 * interface functions from common layer
135 extern bool brcmf_c_prec_enq(struct device
*dev
, struct pktq
*q
,
136 struct sk_buff
*pkt
, int prec
);
138 /* Receive frame for delivery to OS. Callee disposes of rxp. */
139 extern void brcmf_rx_frames(struct device
*dev
, struct sk_buff_head
*rxlist
);
141 /* Indication from bus module regarding presence/insertion of dongle. */
142 extern int brcmf_attach(uint bus_hdrlen
, struct device
*dev
);
143 /* Indication from bus module regarding removal/absence of dongle */
144 extern void brcmf_detach(struct device
*dev
);
145 /* Indication from bus module that dongle should be reset */
146 extern void brcmf_dev_reset(struct device
*dev
);
147 /* Indication from bus module to change flow-control state */
148 extern void brcmf_txflowblock(struct device
*dev
, bool state
);
150 /* Notify the bus has transferred the tx packet to firmware */
151 extern void brcmf_txcomplete(struct device
*dev
, struct sk_buff
*txp
,
154 extern int brcmf_bus_start(struct device
*dev
);
156 #ifdef CONFIG_BRCMFMAC_SDIO
157 extern void brcmf_sdio_exit(void);
158 extern void brcmf_sdio_init(void);
159 extern void brcmf_sdio_register(void);
161 #ifdef CONFIG_BRCMFMAC_USB
162 extern void brcmf_usb_exit(void);
163 extern void brcmf_usb_register(void);
166 #endif /* _BRCMF_BUS_H_ */