brcmfmac: (clean) Rename sdio related files.
[deliverable/linux.git] / drivers / net / wireless / brcm80211 / brcmfmac / dhd.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/****************
18 * Common types *
19 */
20
21#ifndef _BRCMF_H_
22#define _BRCMF_H_
23
5c36b99a
AS
24#include "fweh.h"
25
5b435de0
AS
26#define TOE_TX_CSUM_OL 0x00000001
27#define TOE_RX_CSUM_OL 0x00000002
28
5b435de0
AS
29/* For supporting multiple interfaces */
30#define BRCMF_MAX_IFS 16
5b435de0 31
5b435de0
AS
32#define DOT11_MAX_DEFAULT_KEYS 4
33
81f5dcb8
HM
34/* Small, medium and maximum buffer size for dcmd
35 */
36#define BRCMF_DCMD_SMLEN 256
37#define BRCMF_DCMD_MEDLEN 1536
38#define BRCMF_DCMD_MAXLEN 8192
39
d4533992
HM
40/* IOCTL from host to device are limited in lenght. A device can only handle
41 * ethernet frame size. This limitation is to be applied by protocol layer.
42 */
43#define BRCMF_TX_IOCTL_MAX_MSG_SIZE (ETH_FRAME_LEN+ETH_FCS_LEN)
44
87edd891
AS
45#define BRCMF_AMPDU_RX_REORDER_MAXFLOWS 256
46
55685b8f
AS
47/* Length of firmware version string stored for
48 * ethtool driver info which uses 32 bytes as well.
49 */
50#define BRCMF_DRIVER_FIRMWARE_VERSION_LEN 32
51
87edd891
AS
52/**
53 * struct brcmf_ampdu_rx_reorder - AMPDU receive reorder info
54 *
55 * @pktslots: dynamic allocated array for ordering AMPDU packets.
56 * @flow_id: AMPDU flow identifier.
57 * @cur_idx: last AMPDU index from firmware.
58 * @exp_idx: expected next AMPDU index.
59 * @max_idx: maximum amount of packets per AMPDU.
60 * @pend_pkts: number of packets currently in @pktslots.
61 */
62struct brcmf_ampdu_rx_reorder {
63 struct sk_buff **pktslots;
64 u8 flow_id;
65 u8 cur_idx;
66 u8 exp_idx;
67 u8 max_idx;
68 u8 pend_pkts;
69};
70
5b435de0 71/* Forward decls for struct brcmf_pub (see below) */
5b435de0 72struct brcmf_proto; /* device communication protocol info */
5b435de0 73struct brcmf_cfg80211_dev; /* cfg80211 device info */
349e7104 74struct brcmf_fws_info; /* firmware signalling info */
5b435de0
AS
75
76/* Common structure for module and instance linkage */
77struct brcmf_pub {
78 /* Linkage ponters */
8d169aa0 79 struct brcmf_bus *bus_if;
85b84133 80 struct brcmf_proto *proto;
27a68fe3 81 struct brcmf_cfg80211_info *config;
5b435de0
AS
82
83 /* Internal brcmf items */
5b435de0 84 uint hdrlen; /* Total BRCMF header length (proto + bus) */
5b435de0
AS
85 uint rxsz; /* Rx buffer size bus module should use */
86 u8 wme_dp; /* wme discard priority */
87
88 /* Dongle media info */
55685b8f 89 char fwver[BRCMF_DRIVER_FIRMWARE_VERSION_LEN];
5b435de0 90 u8 mac[ETH_ALEN]; /* MAC address obtained from dongle */
5b435de0 91
5b435de0
AS
92 /* Multicast data packets sent to dongle */
93 unsigned long tx_multicast;
5b435de0 94
d08b6a37
FL
95 struct brcmf_if *iflist[BRCMF_MAX_IFS];
96
97 struct mutex proto_block;
81f5dcb8 98 unsigned char proto_buf[BRCMF_DCMD_MAXLEN];
d08b6a37 99
5c36b99a 100 struct brcmf_fweh_info fweh;
349e7104 101
349e7104 102 struct brcmf_fws_info *fws;
87edd891
AS
103
104 struct brcmf_ampdu_rx_reorder
105 *reorder_flows[BRCMF_AMPDU_RX_REORDER_MAXFLOWS];
c08437b4
AS
106
107 u32 feat_flags;
108 u32 chip_quirks;
109
d319a7cf
AS
110#ifdef DEBUG
111 struct dentry *dbgfs_dir;
112#endif
5b435de0
AS
113};
114
bb8c8063 115/* forward declarations */
3eacf866 116struct brcmf_cfg80211_vif;
bb8c8063 117struct brcmf_fws_mac_descriptor;
3eacf866 118
29e04ae3
AS
119/**
120 * enum brcmf_netif_stop_reason - reason for stopping netif queue.
121 *
122 * @BRCMF_NETIF_STOP_REASON_FWS_FC:
123 * netif stopped due to firmware signalling flow control.
17ca5c71
HM
124 * @BRCMF_NETIF_STOP_REASON_FLOW:
125 * netif stopped due to flowring full.
29e04ae3
AS
126 */
127enum brcmf_netif_stop_reason {
128 BRCMF_NETIF_STOP_REASON_FWS_FC = 1,
17ca5c71 129 BRCMF_NETIF_STOP_REASON_FLOW = 2
29e04ae3
AS
130};
131
1d4fd8d7
AS
132/**
133 * struct brcmf_if - interface control information.
134 *
135 * @drvr: points to device related information.
3eacf866 136 * @vif: points to cfg80211 specific interface information.
1d4fd8d7
AS
137 * @ndev: associated network device.
138 * @stats: interface specific network statistics.
bb8c8063
AS
139 * @setmacaddr_work: worker object for setting mac address.
140 * @multicast_work: worker object for multicast provisioning.
141 * @fws_desc: interface specific firmware-signalling descriptor.
2880b868 142 * @ifidx: interface index in device firmware.
1d4fd8d7
AS
143 * @bssidx: index of bss associated with this interface.
144 * @mac_addr: assigned mac address.
29e04ae3 145 * @netif_stop: bitmap indicates reason why netif queues are stopped.
df50f756 146 * @netif_stop_lock: spinlock for update netif_stop from multiple sources.
10ef7321
HM
147 * @pend_8021x_cnt: tracks outstanding number of 802.1x frames.
148 * @pend_8021x_wait: used for signalling change in count.
1d4fd8d7
AS
149 */
150struct brcmf_if {
151 struct brcmf_pub *drvr;
3eacf866 152 struct brcmf_cfg80211_vif *vif;
1d4fd8d7
AS
153 struct net_device *ndev;
154 struct net_device_stats stats;
bdf5ff51
AS
155 struct work_struct setmacaddr_work;
156 struct work_struct multicast_work;
bb8c8063 157 struct brcmf_fws_mac_descriptor *fws_desc;
2880b868 158 int ifidx;
1d4fd8d7
AS
159 s32 bssidx;
160 u8 mac_addr[ETH_ALEN];
29e04ae3 161 u8 netif_stop;
df50f756 162 spinlock_t netif_stop_lock;
10ef7321
HM
163 atomic_t pend_8021x_cnt;
164 wait_queue_head_t pend_8021x_wait;
5b435de0
AS
165};
166
87edd891
AS
167struct brcmf_skb_reorder_data {
168 u8 *reorder;
169};
1d4fd8d7 170
9bd91f3c 171int brcmf_netdev_wait_pend8021x(struct net_device *ndev);
5b435de0 172
5b435de0 173/* Return pointer to interface name */
9bd91f3c 174char *brcmf_ifname(struct brcmf_pub *drvr, int idx);
5b435de0 175
9bd91f3c
JP
176int brcmf_net_attach(struct brcmf_if *ifp, bool rtnl_locked);
177struct brcmf_if *brcmf_add_if(struct brcmf_pub *drvr, s32 bssidx, s32 ifidx,
178 char *name, u8 *mac_addr);
179void brcmf_del_if(struct brcmf_pub *drvr, s32 bssidx);
29e04ae3
AS
180void brcmf_txflowblock_if(struct brcmf_if *ifp,
181 enum brcmf_netif_stop_reason reason, bool state);
53e30ea4 182void brcmf_txfinalize(struct brcmf_pub *drvr, struct sk_buff *txp, u8 ifidx,
9bd91f3c 183 bool success);
9374a2b5 184void brcmf_netif_rx(struct brcmf_if *ifp, struct sk_buff *skb);
5b435de0 185
f931868d
HM
186/* Sets dongle media info (drv_version, mac address). */
187int brcmf_c_preinit_dcmds(struct brcmf_if *ifp);
188
5b435de0 189#endif /* _BRCMF_H_ */
This page took 0.26744 seconds and 5 git commands to generate.