blob: 080395f49fa5922400419d821e1fda4fcc1b460e [file] [log] [blame]
Arend van Spriel5b435de2011-10-05 13:19:03 +02001/*
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
Franky Lina8a363a2011-12-16 18:37:13 -080020/* The level of bus communication with the dongle */
21enum 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 */
25};
26
Franky Lin135e4c62012-06-26 21:26:34 +020027struct brcmf_bus_dcmd {
28 char *name;
29 char *param;
30 int param_len;
31 struct list_head list;
32};
33
Arend van Sprield9cb2592012-12-05 15:25:54 +010034/**
35 * struct brcmf_bus_ops - bus callback operations.
36 *
37 * @init: prepare for communication with dongle.
38 * @stop: clear pending frames, disable data flow.
39 * @txdata: send a data frame to the dongle (callee disposes skb).
40 * @txctl: transmit a control request message to dongle.
41 * @rxctl: receive a control response message from dongle.
Arend van Spriele2432b62013-04-03 12:40:38 +020042 * @gettxq: obtain a reference of bus transmit queue (optional).
Arend van Sprield9cb2592012-12-05 15:25:54 +010043 *
44 * This structure provides an abstract interface towards the
45 * bus specific driver. For control messages to common driver
Arend van Spriele2432b62013-04-03 12:40:38 +020046 * will assure there is only one active transaction. Unless
47 * indicated otherwise these callbacks are mandatory.
Arend van Sprield9cb2592012-12-05 15:25:54 +010048 */
49struct brcmf_bus_ops {
50 int (*init)(struct device *dev);
51 void (*stop)(struct device *dev);
52 int (*txdata)(struct device *dev, struct sk_buff *skb);
53 int (*txctl)(struct device *dev, unsigned char *msg, uint len);
54 int (*rxctl)(struct device *dev, unsigned char *msg, uint len);
Arend van Spriele2432b62013-04-03 12:40:38 +020055 struct pktq * (*gettxq)(struct device *dev);
Arend van Sprield9cb2592012-12-05 15:25:54 +010056};
57
58/**
59 * struct brcmf_bus - interface structure between common and bus layer
60 *
61 * @bus_priv: pointer to private bus device.
62 * @dev: device pointer of bus device.
63 * @drvr: public driver information.
64 * @state: operational state of the bus interface.
65 * @maxctl: maximum size for rxctl request message.
Arend van Sprield9cb2592012-12-05 15:25:54 +010066 * @tx_realloc: number of tx packets realloced for headroom.
67 * @dstats: dongle-based statistical data.
68 * @align: alignment requirement for the bus.
69 * @dcmd_list: bus/device specific dongle initialization commands.
Arend van Spriel75d907d2013-02-06 18:40:45 +010070 * @chip: device identifier of the dongle chip.
71 * @chiprev: revision of the dongle chip.
Arend van Sprield9cb2592012-12-05 15:25:54 +010072 */
Franky Lina8a363a2011-12-16 18:37:13 -080073struct brcmf_bus {
Arend van Spriel0a332e42012-02-09 21:09:02 +010074 union {
Arend van Spriel0a332e42012-02-09 21:09:02 +010075 struct brcmf_sdio_dev *sdio;
Arend van Spriel71bb2442012-02-09 21:09:08 +010076 struct brcmf_usbdev *usb;
Arend van Spriel0a332e42012-02-09 21:09:02 +010077 } bus_priv;
Arend van Sprield9cb2592012-12-05 15:25:54 +010078 struct device *dev;
79 struct brcmf_pub *drvr;
Franky Lina8a363a2011-12-16 18:37:13 -080080 enum brcmf_bus_state state;
Arend van Sprield9cb2592012-12-05 15:25:54 +010081 uint maxctl;
Arend van Sprield9cb2592012-12-05 15:25:54 +010082 unsigned long tx_realloc;
Arend van Sprield9cb2592012-12-05 15:25:54 +010083 u8 align;
Arend van Spriel75d907d2013-02-06 18:40:45 +010084 u32 chip;
85 u32 chiprev;
Franky Lin135e4c62012-06-26 21:26:34 +020086 struct list_head dcmd_list;
Franky Lina8a363a2011-12-16 18:37:13 -080087
Arend van Sprield9cb2592012-12-05 15:25:54 +010088 struct brcmf_bus_ops *ops;
Franky Lina8a363a2011-12-16 18:37:13 -080089};
90
91/*
Arend van Sprield9cb2592012-12-05 15:25:54 +010092 * callback wrappers
93 */
94static inline int brcmf_bus_init(struct brcmf_bus *bus)
95{
96 return bus->ops->init(bus->dev);
97}
98
99static inline void brcmf_bus_stop(struct brcmf_bus *bus)
100{
101 bus->ops->stop(bus->dev);
102}
103
104static inline int brcmf_bus_txdata(struct brcmf_bus *bus, struct sk_buff *skb)
105{
106 return bus->ops->txdata(bus->dev, skb);
107}
108
109static inline
110int brcmf_bus_txctl(struct brcmf_bus *bus, unsigned char *msg, uint len)
111{
112 return bus->ops->txctl(bus->dev, msg, len);
113}
114
115static inline
116int brcmf_bus_rxctl(struct brcmf_bus *bus, unsigned char *msg, uint len)
117{
118 return bus->ops->rxctl(bus->dev, msg, len);
119}
120
Arend van Spriele2432b62013-04-03 12:40:38 +0200121static inline
122struct pktq *brcmf_bus_gettxq(struct brcmf_bus *bus)
123{
124 if (!bus->ops->gettxq)
125 return ERR_PTR(-ENOENT);
126
127 return bus->ops->gettxq(bus->dev);
128}
Arend van Sprield9cb2592012-12-05 15:25:54 +0100129/*
Franky Lina8a363a2011-12-16 18:37:13 -0800130 * interface functions from common layer
131 */
132
Franky Lina8a363a2011-12-16 18:37:13 -0800133extern bool brcmf_c_prec_enq(struct device *dev, struct pktq *q,
134 struct sk_buff *pkt, int prec);
135
136/* Receive frame for delivery to OS. Callee disposes of rxp. */
Arend van Spriela43af512013-01-02 15:22:43 +0100137extern void brcmf_rx_frames(struct device *dev, struct sk_buff_head *rxlist);
Franky Lina8a363a2011-12-16 18:37:13 -0800138
139/* Indication from bus module regarding presence/insertion of dongle. */
140extern int brcmf_attach(uint bus_hdrlen, struct device *dev);
141/* Indication from bus module regarding removal/absence of dongle */
142extern void brcmf_detach(struct device *dev);
Arend van Spriel81d5f1b2013-01-02 15:22:40 +0100143/* Indication from bus module that dongle should be reset */
144extern void brcmf_dev_reset(struct device *dev);
Franky Lina8a363a2011-12-16 18:37:13 -0800145/* Indication from bus module to change flow-control state */
Hante Meuleman90d03ff2012-09-11 21:18:46 +0200146extern void brcmf_txflowblock(struct device *dev, bool state);
Franky Lina8a363a2011-12-16 18:37:13 -0800147
Arend van Spriel7f4bcee2013-03-03 12:45:29 +0100148/* Notify the bus has transferred the tx packet to firmware */
Franky Lina8a363a2011-12-16 18:37:13 -0800149extern void brcmf_txcomplete(struct device *dev, struct sk_buff *txp,
150 bool success);
151
152extern int brcmf_bus_start(struct device *dev);
153
Arend van Sprielf3d7cdc2012-02-09 21:09:03 +0100154#ifdef CONFIG_BRCMFMAC_SDIO
155extern void brcmf_sdio_exit(void);
Arend van Spriel549040a2012-03-02 22:55:48 +0100156extern void brcmf_sdio_init(void);
Arend van Sprielf3d7cdc2012-02-09 21:09:03 +0100157#endif
Arend van Spriel71bb2442012-02-09 21:09:08 +0100158#ifdef CONFIG_BRCMFMAC_USB
159extern void brcmf_usb_exit(void);
Arend van Spriel549040a2012-03-02 22:55:48 +0100160extern void brcmf_usb_init(void);
Arend van Spriel71bb2442012-02-09 21:09:08 +0100161#endif
Arend van Sprielf3d7cdc2012-02-09 21:09:03 +0100162
Arend van Spriel5b435de2011-10-05 13:19:03 +0200163#endif /* _BRCMF_BUS_H_ */