2 * Copyright (c) 2008-2009 Atheros Communications Inc.
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.
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
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <linux/skbuff.h>
21 #include <linux/if_ether.h>
22 #include <net/mac80211.h>
24 static const u8 ath_bcast_mac[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
26 struct reg_dmn_pair_mapping {
32 struct ath_regulatory {
40 struct reg_dmn_pair_mapping *regpair;
44 unsigned int (*read)(void *, u32 reg_offset);
45 void (*write)(void *, u32 val, u32 reg_offset);
51 void (*read_cachesize)(struct ath_common *common, int *csz);
52 void (*cleanup)(struct ath_common *common);
53 bool (*eeprom_read)(struct ath_common *common, u32 off, u16 *data);
54 void (*bt_coex_prep)(struct ath_common *common);
59 struct ieee80211_hw *hw;
65 u8 curbssid[ETH_ALEN];
66 u8 bssidmask[ETH_ALEN];
71 struct ath_regulatory regulatory;
72 const struct ath_ops *ops;
73 const struct ath_bus_ops *bus_ops;
76 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,
80 void ath_hw_setbssidmask(struct ath_common *common);