brcmfmac: remove unused/duplicate defines in chip.c
[deliverable/linux.git] / drivers / net / wireless / brcm80211 / brcmfmac / core.h
... / ...
CommitLineData
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 BRCMFMAC_CORE_H
22#define BRCMFMAC_CORE_H
23
24#include "fweh.h"
25
26#define TOE_TX_CSUM_OL 0x00000001
27#define TOE_RX_CSUM_OL 0x00000002
28
29/* For supporting multiple interfaces */
30#define BRCMF_MAX_IFS 16
31
32#define DOT11_MAX_DEFAULT_KEYS 4
33
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
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
45#define BRCMF_AMPDU_RX_REORDER_MAXFLOWS 256
46
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
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
71/* Forward decls for struct brcmf_pub (see below) */
72struct brcmf_proto; /* device communication protocol info */
73struct brcmf_cfg80211_dev; /* cfg80211 device info */
74struct brcmf_fws_info; /* firmware signalling info */
75
76/* Common structure for module and instance linkage */
77struct brcmf_pub {
78 /* Linkage ponters */
79 struct brcmf_bus *bus_if;
80 struct brcmf_proto *proto;
81 struct brcmf_cfg80211_info *config;
82
83 /* Internal brcmf items */
84 uint hdrlen; /* Total BRCMF header length (proto + bus) */
85 uint rxsz; /* Rx buffer size bus module should use */
86
87 /* Dongle media info */
88 char fwver[BRCMF_DRIVER_FIRMWARE_VERSION_LEN];
89 u8 mac[ETH_ALEN]; /* MAC address obtained from dongle */
90
91 /* Multicast data packets sent to dongle */
92 unsigned long tx_multicast;
93
94 struct brcmf_if *iflist[BRCMF_MAX_IFS];
95
96 struct mutex proto_block;
97 unsigned char proto_buf[BRCMF_DCMD_MAXLEN];
98
99 struct brcmf_fweh_info fweh;
100
101 struct brcmf_fws_info *fws;
102
103 struct brcmf_ampdu_rx_reorder
104 *reorder_flows[BRCMF_AMPDU_RX_REORDER_MAXFLOWS];
105
106 u32 feat_flags;
107 u32 chip_quirks;
108
109#ifdef DEBUG
110 struct dentry *dbgfs_dir;
111#endif
112};
113
114/* forward declarations */
115struct brcmf_cfg80211_vif;
116struct brcmf_fws_mac_descriptor;
117
118/**
119 * enum brcmf_netif_stop_reason - reason for stopping netif queue.
120 *
121 * @BRCMF_NETIF_STOP_REASON_FWS_FC:
122 * netif stopped due to firmware signalling flow control.
123 * @BRCMF_NETIF_STOP_REASON_FLOW:
124 * netif stopped due to flowring full.
125 */
126enum brcmf_netif_stop_reason {
127 BRCMF_NETIF_STOP_REASON_FWS_FC = 1,
128 BRCMF_NETIF_STOP_REASON_FLOW = 2
129};
130
131/**
132 * struct brcmf_if - interface control information.
133 *
134 * @drvr: points to device related information.
135 * @vif: points to cfg80211 specific interface information.
136 * @ndev: associated network device.
137 * @stats: interface specific network statistics.
138 * @setmacaddr_work: worker object for setting mac address.
139 * @multicast_work: worker object for multicast provisioning.
140 * @fws_desc: interface specific firmware-signalling descriptor.
141 * @ifidx: interface index in device firmware.
142 * @bssidx: index of bss associated with this interface.
143 * @mac_addr: assigned mac address.
144 * @netif_stop: bitmap indicates reason why netif queues are stopped.
145 * @netif_stop_lock: spinlock for update netif_stop from multiple sources.
146 * @pend_8021x_cnt: tracks outstanding number of 802.1x frames.
147 * @pend_8021x_wait: used for signalling change in count.
148 */
149struct brcmf_if {
150 struct brcmf_pub *drvr;
151 struct brcmf_cfg80211_vif *vif;
152 struct net_device *ndev;
153 struct net_device_stats stats;
154 struct work_struct setmacaddr_work;
155 struct work_struct multicast_work;
156 struct brcmf_fws_mac_descriptor *fws_desc;
157 int ifidx;
158 s32 bssidx;
159 u8 mac_addr[ETH_ALEN];
160 u8 netif_stop;
161 spinlock_t netif_stop_lock;
162 atomic_t pend_8021x_cnt;
163 wait_queue_head_t pend_8021x_wait;
164};
165
166struct brcmf_skb_reorder_data {
167 u8 *reorder;
168};
169
170int brcmf_netdev_wait_pend8021x(struct net_device *ndev);
171
172/* Return pointer to interface name */
173char *brcmf_ifname(struct brcmf_pub *drvr, int idx);
174
175int brcmf_net_attach(struct brcmf_if *ifp, bool rtnl_locked);
176struct brcmf_if *brcmf_add_if(struct brcmf_pub *drvr, s32 bssidx, s32 ifidx,
177 char *name, u8 *mac_addr);
178void brcmf_remove_interface(struct brcmf_pub *drvr, u32 bssidx);
179int brcmf_get_next_free_bsscfgidx(struct brcmf_pub *drvr);
180void brcmf_txflowblock_if(struct brcmf_if *ifp,
181 enum brcmf_netif_stop_reason reason, bool state);
182void brcmf_txfinalize(struct brcmf_pub *drvr, struct sk_buff *txp, u8 ifidx,
183 bool success);
184void brcmf_netif_rx(struct brcmf_if *ifp, struct sk_buff *skb);
185
186/* Sets dongle media info (drv_version, mac address). */
187int brcmf_c_preinit_dcmds(struct brcmf_if *ifp);
188
189#endif /* BRCMFMAC_CORE_H */
This page took 0.025124 seconds and 5 git commands to generate.