blob: 9b8ee19ea55d12ccf45a644e139490dd5d2b4843 [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
27struct dngl_stats {
28 unsigned long rx_packets; /* total packets received */
29 unsigned long tx_packets; /* total packets transmitted */
30 unsigned long rx_bytes; /* total bytes received */
31 unsigned long tx_bytes; /* total bytes transmitted */
32 unsigned long rx_errors; /* bad packets received */
33 unsigned long tx_errors; /* packet transmit problems */
34 unsigned long rx_dropped; /* packets dropped by dongle */
35 unsigned long tx_dropped; /* packets dropped by dongle */
36 unsigned long multicast; /* multicast packets received */
37};
38
Franky Lin135e4c62012-06-26 21:26:34 +020039struct brcmf_bus_dcmd {
40 char *name;
41 char *param;
42 int param_len;
43 struct list_head list;
44};
45
Franky Lina8a363a2011-12-16 18:37:13 -080046/* interface structure between common and bus layer */
47struct brcmf_bus {
48 u8 type; /* bus type */
Arend van Spriel0a332e42012-02-09 21:09:02 +010049 union {
Arend van Spriel0a332e42012-02-09 21:09:02 +010050 struct brcmf_sdio_dev *sdio;
Arend van Spriel71bb2442012-02-09 21:09:08 +010051 struct brcmf_usbdev *usb;
Arend van Spriel0a332e42012-02-09 21:09:02 +010052 } bus_priv;
53 struct brcmf_pub *drvr; /* pointer to driver pub structure brcmf_pub */
Franky Lina8a363a2011-12-16 18:37:13 -080054 enum brcmf_bus_state state;
55 uint maxctl; /* Max size rxctl request from proto to bus */
56 bool drvr_up; /* Status flag of driver up/down */
57 unsigned long tx_realloc; /* Tx packets realloced for headroom */
58 struct dngl_stats dstats; /* Stats for dongle-based data */
59 u8 align; /* bus alignment requirement */
Franky Lin135e4c62012-06-26 21:26:34 +020060 struct list_head dcmd_list;
Franky Lina8a363a2011-12-16 18:37:13 -080061
62 /* interface functions pointers */
63 /* Stop bus module: clear pending frames, disable data flow */
64 void (*brcmf_bus_stop)(struct device *);
Franky Lin99a0b8f2011-12-16 18:37:14 -080065 /* Initialize bus module: prepare for communication w/dongle */
66 int (*brcmf_bus_init)(struct device *);
Franky Linb9692d12011-12-16 18:37:15 -080067 /* Send a data frame to the dongle. Callee disposes of txp. */
68 int (*brcmf_bus_txdata)(struct device *, struct sk_buff *);
Franky Linfcf094f2011-12-16 18:37:16 -080069 /* Send/receive a control message to/from the dongle.
70 * Expects caller to enforce a single outstanding transaction.
71 */
72 int (*brcmf_bus_txctl)(struct device *, unsigned char *, uint);
73 int (*brcmf_bus_rxctl)(struct device *, unsigned char *, uint);
Franky Lina8a363a2011-12-16 18:37:13 -080074};
75
76/*
77 * interface functions from common layer
78 */
79
80/* Remove any protocol-specific data header. */
81extern int brcmf_proto_hdrpull(struct device *dev, int *ifidx,
82 struct sk_buff *rxp);
83
84extern bool brcmf_c_prec_enq(struct device *dev, struct pktq *q,
85 struct sk_buff *pkt, int prec);
86
87/* Receive frame for delivery to OS. Callee disposes of rxp. */
88extern void brcmf_rx_frame(struct device *dev, int ifidx,
89 struct sk_buff_head *rxlist);
90static inline void brcmf_rx_packet(struct device *dev, int ifidx,
91 struct sk_buff *pkt)
92{
93 struct sk_buff_head q;
94
95 skb_queue_head_init(&q);
96 skb_queue_tail(&q, pkt);
97 brcmf_rx_frame(dev, ifidx, &q);
98}
99
100/* Indication from bus module regarding presence/insertion of dongle. */
101extern int brcmf_attach(uint bus_hdrlen, struct device *dev);
102/* Indication from bus module regarding removal/absence of dongle */
103extern void brcmf_detach(struct device *dev);
104
105/* Indication from bus module to change flow-control state */
Hante Meuleman90d03ff2012-09-11 21:18:46 +0200106extern void brcmf_txflowblock(struct device *dev, bool state);
Franky Lina8a363a2011-12-16 18:37:13 -0800107
108/* Notify tx completion */
109extern void brcmf_txcomplete(struct device *dev, struct sk_buff *txp,
110 bool success);
111
112extern int brcmf_bus_start(struct device *dev);
113
114extern int brcmf_add_if(struct device *dev, int ifidx,
115 char *name, u8 *mac_addr);
Arend van Sprielf3d7cdc2012-02-09 21:09:03 +0100116
117#ifdef CONFIG_BRCMFMAC_SDIO
118extern void brcmf_sdio_exit(void);
Arend van Spriel549040a2012-03-02 22:55:48 +0100119extern void brcmf_sdio_init(void);
Arend van Sprielf3d7cdc2012-02-09 21:09:03 +0100120#endif
Arend van Spriel71bb2442012-02-09 21:09:08 +0100121#ifdef CONFIG_BRCMFMAC_USB
122extern void brcmf_usb_exit(void);
Arend van Spriel549040a2012-03-02 22:55:48 +0100123extern void brcmf_usb_init(void);
Arend van Spriel71bb2442012-02-09 21:09:08 +0100124#endif
Arend van Sprielf3d7cdc2012-02-09 21:09:03 +0100125
Arend van Spriel5b435de2011-10-05 13:19:03 +0200126#endif /* _BRCMF_BUS_H_ */