core.h 6.31 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (c) 2010 Broadcom Corporation
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

/****************
 * Common types *
 */

21 22
#ifndef BRCMFMAC_CORE_H
#define BRCMFMAC_CORE_H
23

24
#include <net/cfg80211.h>
25 26
#include "fweh.h"

27 28 29 30 31 32
#define TOE_TX_CSUM_OL		0x00000001
#define TOE_RX_CSUM_OL		0x00000002

/* For supporting multiple interfaces */
#define BRCMF_MAX_IFS	16

33 34 35 36 37 38
/* Small, medium and maximum buffer size for dcmd
 */
#define BRCMF_DCMD_SMLEN	256
#define BRCMF_DCMD_MEDLEN	1536
#define BRCMF_DCMD_MAXLEN	8192

39 40 41 42 43
/* IOCTL from host to device are limited in lenght. A device can only handle
 * ethernet frame size. This limitation is to be applied by protocol layer.
 */
#define BRCMF_TX_IOCTL_MAX_MSG_SIZE	(ETH_FRAME_LEN+ETH_FCS_LEN)

44 45
#define BRCMF_AMPDU_RX_REORDER_MAXFLOWS		256

46 47 48 49 50
/* Length of firmware version string stored for
 * ethtool driver info which uses 32 bytes as well.
 */
#define BRCMF_DRIVER_FIRMWARE_VERSION_LEN	32

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
/**
 * struct brcmf_ampdu_rx_reorder - AMPDU receive reorder info
 *
 * @pktslots: dynamic allocated array for ordering AMPDU packets.
 * @flow_id: AMPDU flow identifier.
 * @cur_idx: last AMPDU index from firmware.
 * @exp_idx: expected next AMPDU index.
 * @max_idx: maximum amount of packets per AMPDU.
 * @pend_pkts: number of packets currently in @pktslots.
 */
struct brcmf_ampdu_rx_reorder {
	struct sk_buff **pktslots;
	u8 flow_id;
	u8 cur_idx;
	u8 exp_idx;
	u8 max_idx;
	u8 pend_pkts;
};

70 71 72
/* Forward decls for struct brcmf_pub (see below) */
struct brcmf_proto;	/* device communication protocol info */
struct brcmf_cfg80211_dev; /* cfg80211 device info */
73
struct brcmf_fws_info; /* firmware signalling info */
74

75 76 77 78 79 80 81 82
/*
 * struct brcmf_rev_info
 *
 * The result field stores the error code of the
 * revision info request from firmware. For the
 * other fields see struct brcmf_rev_info_le in
 * fwil_types.h
 */
83
struct brcmf_rev_info {
84
	int result;
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	u32 vendorid;
	u32 deviceid;
	u32 radiorev;
	u32 chiprev;
	u32 corerev;
	u32 boardid;
	u32 boardvendor;
	u32 boardrev;
	u32 driverrev;
	u32 ucoderev;
	u32 bus;
	u32 chipnum;
	u32 phytype;
	u32 phyrev;
	u32 anarev;
	u32 chippkg;
	u32 nvramrev;
};

104 105 106
/* Common structure for module and instance linkage */
struct brcmf_pub {
	/* Linkage ponters */
107
	struct brcmf_bus *bus_if;
108
	struct brcmf_proto *proto;
109
	struct brcmf_cfg80211_info *config;
110 111 112 113 114 115

	/* Internal brcmf items */
	uint hdrlen;		/* Total BRCMF header length (proto + bus) */
	uint rxsz;		/* Rx buffer size bus module should use */

	/* Dongle media info */
116
	char fwver[BRCMF_DRIVER_FIRMWARE_VERSION_LEN];
117 118 119 120 121
	u8 mac[ETH_ALEN];		/* MAC address obtained from dongle */

	/* Multicast data packets sent to dongle */
	unsigned long tx_multicast;

122 123
	struct mac_address addresses[BRCMF_MAX_IFS];

124 125 126
	struct brcmf_if *iflist[BRCMF_MAX_IFS];

	struct mutex proto_block;
127
	unsigned char proto_buf[BRCMF_DCMD_MAXLEN];
128

129
	struct brcmf_fweh_info fweh;
130 131

	struct brcmf_fws_info *fws;
132 133 134

	struct brcmf_ampdu_rx_reorder
		*reorder_flows[BRCMF_AMPDU_RX_REORDER_MAXFLOWS];
135 136 137 138

	u32 feat_flags;
	u32 chip_quirks;

139
	struct brcmf_rev_info revinfo;
140 141 142
#ifdef DEBUG
	struct dentry *dbgfs_dir;
#endif
143 144
};

145
/* forward declarations */
146
struct brcmf_cfg80211_vif;
147
struct brcmf_fws_mac_descriptor;
148

149 150 151 152 153
/**
 * enum brcmf_netif_stop_reason - reason for stopping netif queue.
 *
 * @BRCMF_NETIF_STOP_REASON_FWS_FC:
 *	netif stopped due to firmware signalling flow control.
154 155
 * @BRCMF_NETIF_STOP_REASON_FLOW:
 *	netif stopped due to flowring full.
156 157 158
 */
enum brcmf_netif_stop_reason {
	BRCMF_NETIF_STOP_REASON_FWS_FC = 1,
159
	BRCMF_NETIF_STOP_REASON_FLOW = 2
160 161
};

162 163 164 165
/**
 * struct brcmf_if - interface control information.
 *
 * @drvr: points to device related information.
166
 * @vif: points to cfg80211 specific interface information.
167 168
 * @ndev: associated network device.
 * @stats: interface specific network statistics.
169 170 171
 * @setmacaddr_work: worker object for setting mac address.
 * @multicast_work: worker object for multicast provisioning.
 * @fws_desc: interface specific firmware-signalling descriptor.
172
 * @ifidx: interface index in device firmware.
173 174
 * @bssidx: index of bss associated with this interface.
 * @mac_addr: assigned mac address.
175
 * @netif_stop: bitmap indicates reason why netif queues are stopped.
176
 * @netif_stop_lock: spinlock for update netif_stop from multiple sources.
177 178
 * @pend_8021x_cnt: tracks outstanding number of 802.1x frames.
 * @pend_8021x_wait: used for signalling change in count.
179 180 181
 */
struct brcmf_if {
	struct brcmf_pub *drvr;
182
	struct brcmf_cfg80211_vif *vif;
183 184
	struct net_device *ndev;
	struct net_device_stats stats;
185 186
	struct work_struct setmacaddr_work;
	struct work_struct multicast_work;
187
	struct brcmf_fws_mac_descriptor *fws_desc;
188
	int ifidx;
189 190
	s32 bssidx;
	u8 mac_addr[ETH_ALEN];
191
	u8 netif_stop;
192
	spinlock_t netif_stop_lock;
193 194
	atomic_t pend_8021x_cnt;
	wait_queue_head_t pend_8021x_wait;
195 196
};

197 198 199
struct brcmf_skb_reorder_data {
	u8 *reorder;
};
200

201
int brcmf_netdev_wait_pend8021x(struct brcmf_if *ifp);
202 203

/* Return pointer to interface name */
204
char *brcmf_ifname(struct brcmf_pub *drvr, int idx);
205
struct brcmf_if *brcmf_get_ifp(struct brcmf_pub *drvr, int ifidx);
206 207 208
int brcmf_net_attach(struct brcmf_if *ifp, bool rtnl_locked);
struct brcmf_if *brcmf_add_if(struct brcmf_pub *drvr, s32 bssidx, s32 ifidx,
			      char *name, u8 *mac_addr);
209 210
void brcmf_remove_interface(struct brcmf_pub *drvr, u32 bssidx);
int brcmf_get_next_free_bsscfgidx(struct brcmf_pub *drvr);
211 212
void brcmf_txflowblock_if(struct brcmf_if *ifp,
			  enum brcmf_netif_stop_reason reason, bool state);
213
void brcmf_txfinalize(struct brcmf_pub *drvr, struct sk_buff *txp, u8 ifidx,
214
		      bool success);
215
void brcmf_netif_rx(struct brcmf_if *ifp, struct sk_buff *skb);
216

217 218 219
/* Sets dongle media info (drv_version, mac address). */
int brcmf_c_preinit_dcmds(struct brcmf_if *ifp);

220
#endif /* BRCMFMAC_CORE_H */