Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 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 | |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 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 */ |
| 25 | }; |
| 26 | |
Franky Lin | 135e4c6 | 2012-06-26 21:26:34 +0200 | [diff] [blame] | 27 | struct brcmf_bus_dcmd { |
| 28 | char *name; |
| 29 | char *param; |
| 30 | int param_len; |
| 31 | struct list_head list; |
| 32 | }; |
| 33 | |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 34 | /** |
| 35 | * struct brcmf_bus_ops - bus callback operations. |
| 36 | * |
| 37 | * @init: prepare for communication with dongle. |
| 38 | * @stop: clear pending frames, disable data flow. |
Arend van Spriel | 4061f89 | 2013-08-10 12:27:19 +0200 | [diff] [blame] | 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 |
| 43 | * disabled. |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 44 | * @txctl: transmit a control request message to dongle. |
| 45 | * @rxctl: receive a control response message from dongle. |
Arend van Spriel | e2432b6 | 2013-04-03 12:40:38 +0200 | [diff] [blame] | 46 | * @gettxq: obtain a reference of bus transmit queue (optional). |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 47 | * |
| 48 | * This structure provides an abstract interface towards the |
| 49 | * bus specific driver. For control messages to common driver |
Arend van Spriel | e2432b6 | 2013-04-03 12:40:38 +0200 | [diff] [blame] | 50 | * will assure there is only one active transaction. Unless |
| 51 | * indicated otherwise these callbacks are mandatory. |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 52 | */ |
| 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); |
Arend van Spriel | e2432b6 | 2013-04-03 12:40:38 +0200 | [diff] [blame] | 59 | struct pktq * (*gettxq)(struct device *dev); |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | /** |
| 63 | * struct brcmf_bus - interface structure between common and bus layer |
| 64 | * |
| 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. |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 70 | * @tx_realloc: number of tx packets realloced for headroom. |
| 71 | * @dstats: dongle-based statistical data. |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 72 | * @dcmd_list: bus/device specific dongle initialization commands. |
Arend van Spriel | 75d907d | 2013-02-06 18:40:45 +0100 | [diff] [blame] | 73 | * @chip: device identifier of the dongle chip. |
| 74 | * @chiprev: revision of the dongle chip. |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 75 | */ |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 76 | struct brcmf_bus { |
Arend van Spriel | 0a332e4 | 2012-02-09 21:09:02 +0100 | [diff] [blame] | 77 | union { |
Arend van Spriel | 0a332e4 | 2012-02-09 21:09:02 +0100 | [diff] [blame] | 78 | struct brcmf_sdio_dev *sdio; |
Arend van Spriel | 71bb244 | 2012-02-09 21:09:08 +0100 | [diff] [blame] | 79 | struct brcmf_usbdev *usb; |
Arend van Spriel | 0a332e4 | 2012-02-09 21:09:02 +0100 | [diff] [blame] | 80 | } bus_priv; |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 81 | struct device *dev; |
| 82 | struct brcmf_pub *drvr; |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 83 | enum brcmf_bus_state state; |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 84 | uint maxctl; |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 85 | unsigned long tx_realloc; |
Arend van Spriel | 75d907d | 2013-02-06 18:40:45 +0100 | [diff] [blame] | 86 | u32 chip; |
| 87 | u32 chiprev; |
Franky Lin | 135e4c6 | 2012-06-26 21:26:34 +0200 | [diff] [blame] | 88 | struct list_head dcmd_list; |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 89 | |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 90 | struct brcmf_bus_ops *ops; |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 91 | }; |
| 92 | |
| 93 | /* |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 94 | * callback wrappers |
| 95 | */ |
| 96 | static inline int brcmf_bus_init(struct brcmf_bus *bus) |
| 97 | { |
| 98 | return bus->ops->init(bus->dev); |
| 99 | } |
| 100 | |
| 101 | static inline void brcmf_bus_stop(struct brcmf_bus *bus) |
| 102 | { |
| 103 | bus->ops->stop(bus->dev); |
| 104 | } |
| 105 | |
| 106 | static inline int brcmf_bus_txdata(struct brcmf_bus *bus, struct sk_buff *skb) |
| 107 | { |
| 108 | return bus->ops->txdata(bus->dev, skb); |
| 109 | } |
| 110 | |
| 111 | static inline |
| 112 | int brcmf_bus_txctl(struct brcmf_bus *bus, unsigned char *msg, uint len) |
| 113 | { |
| 114 | return bus->ops->txctl(bus->dev, msg, len); |
| 115 | } |
| 116 | |
| 117 | static inline |
| 118 | int brcmf_bus_rxctl(struct brcmf_bus *bus, unsigned char *msg, uint len) |
| 119 | { |
| 120 | return bus->ops->rxctl(bus->dev, msg, len); |
| 121 | } |
| 122 | |
Arend van Spriel | e2432b6 | 2013-04-03 12:40:38 +0200 | [diff] [blame] | 123 | static inline |
| 124 | struct pktq *brcmf_bus_gettxq(struct brcmf_bus *bus) |
| 125 | { |
| 126 | if (!bus->ops->gettxq) |
| 127 | return ERR_PTR(-ENOENT); |
| 128 | |
| 129 | return bus->ops->gettxq(bus->dev); |
| 130 | } |
Arend van Spriel | d9cb259 | 2012-12-05 15:25:54 +0100 | [diff] [blame] | 131 | /* |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 132 | * interface functions from common layer |
| 133 | */ |
| 134 | |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 135 | extern bool brcmf_c_prec_enq(struct device *dev, struct pktq *q, |
| 136 | struct sk_buff *pkt, int prec); |
| 137 | |
| 138 | /* Receive frame for delivery to OS. Callee disposes of rxp. */ |
Arend van Spriel | a43af51 | 2013-01-02 15:22:43 +0100 | [diff] [blame] | 139 | extern void brcmf_rx_frames(struct device *dev, struct sk_buff_head *rxlist); |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 140 | |
| 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); |
Arend van Spriel | 81d5f1b | 2013-01-02 15:22:40 +0100 | [diff] [blame] | 145 | /* Indication from bus module that dongle should be reset */ |
| 146 | extern void brcmf_dev_reset(struct device *dev); |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 147 | /* Indication from bus module to change flow-control state */ |
Hante Meuleman | 90d03ff | 2012-09-11 21:18:46 +0200 | [diff] [blame] | 148 | extern void brcmf_txflowblock(struct device *dev, bool state); |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 149 | |
Arend van Spriel | 7f4bcee | 2013-03-03 12:45:29 +0100 | [diff] [blame] | 150 | /* Notify the bus has transferred the tx packet to firmware */ |
Franky Lin | a8a363a | 2011-12-16 18:37:13 -0800 | [diff] [blame] | 151 | extern void brcmf_txcomplete(struct device *dev, struct sk_buff *txp, |
| 152 | bool success); |
| 153 | |
| 154 | extern int brcmf_bus_start(struct device *dev); |
| 155 | |
Arend van Spriel | f3d7cdc | 2012-02-09 21:09:03 +0100 | [diff] [blame] | 156 | #ifdef CONFIG_BRCMFMAC_SDIO |
| 157 | extern void brcmf_sdio_exit(void); |
Arend van Spriel | 549040a | 2012-03-02 22:55:48 +0100 | [diff] [blame] | 158 | extern void brcmf_sdio_init(void); |
Arend van Spriel | f3d7cdc | 2012-02-09 21:09:03 +0100 | [diff] [blame] | 159 | #endif |
Arend van Spriel | 71bb244 | 2012-02-09 21:09:08 +0100 | [diff] [blame] | 160 | #ifdef CONFIG_BRCMFMAC_USB |
| 161 | extern void brcmf_usb_exit(void); |
Arend van Spriel | 549040a | 2012-03-02 22:55:48 +0100 | [diff] [blame] | 162 | extern void brcmf_usb_init(void); |
Arend van Spriel | 71bb244 | 2012-02-09 21:09:08 +0100 | [diff] [blame] | 163 | #endif |
Arend van Spriel | f3d7cdc | 2012-02-09 21:09:03 +0100 | [diff] [blame] | 164 | |
Arend van Spriel | 5b435de | 2011-10-05 13:19:03 +0200 | [diff] [blame] | 165 | #endif /* _BRCMF_BUS_H_ */ |