2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 * Purpose: MAC routines
39 * Write MAC Multicast Address Mask
43 * mc_filter (mac filter)
50 void vnt_mac_set_filter(struct vnt_private
*priv
, u64 mc_filter
)
52 __le64 le_mc
= cpu_to_le64(mc_filter
);
54 vnt_control_out(priv
, MESSAGE_TYPE_WRITE
, MAC_REG_MAR0
,
55 MESSAGE_REQUEST_MACREG
, sizeof(le_mc
), (u8
*)&le_mc
);
69 void vnt_mac_shutdown(struct vnt_private
*priv
)
71 vnt_control_out(priv
, MESSAGE_TYPE_MACSHUTDOWN
, 0, 0, 0, NULL
);
74 void vnt_mac_set_bb_type(struct vnt_private
*priv
, u8 type
)
79 data
[1] = EnCFG_BBType_MASK
;
81 vnt_control_out(priv
, MESSAGE_TYPE_WRITE_MASK
, MAC_REG_ENCFG0
,
82 MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);
87 * Disable the Key Entry by MISCFIFO
91 * dwIoBase - Base Address for MAC
99 void vnt_mac_disable_keyentry(struct vnt_private
*priv
, u8 entry_idx
)
101 vnt_control_out(priv
, MESSAGE_TYPE_CLRKEYENTRY
, 0, 0,
102 sizeof(entry_idx
), &entry_idx
);
107 * Set the Key by MISCFIFO
111 * dwIoBase - Base Address for MAC
119 void vnt_mac_set_keyentry(struct vnt_private
*priv
, u16 key_ctl
, u32 entry_idx
,
120 u32 key_idx
, u8
*addr
, u8
*key
)
122 struct vnt_mac_set_key set_key
;
125 offset
= MISCFIFO_KEYETRY0
;
126 offset
+= (entry_idx
* MISCFIFO_KEYENTRYSIZE
);
128 set_key
.u
.write
.key_ctl
= cpu_to_le16(key_ctl
);
129 memcpy(set_key
.u
.write
.addr
, addr
, ETH_ALEN
);
131 /* swap over swap[0] and swap[1] to get correct write order */
132 swap(set_key
.u
.swap
[0], set_key
.u
.swap
[1]);
134 memcpy(set_key
.key
, key
, WLAN_KEY_LEN_CCMP
);
136 dev_dbg(&priv
->usb
->dev
, "offset %d key ctl %d set key %24ph\n",
137 offset
, key_ctl
, (u8
*)&set_key
);
139 vnt_control_out(priv
, MESSAGE_TYPE_SETKEY
, offset
,
140 (u16
)key_idx
, sizeof(struct vnt_mac_set_key
), (u8
*)&set_key
);
143 void vnt_mac_reg_bits_off(struct vnt_private
*priv
, u8 reg_ofs
, u8 bits
)
150 vnt_control_out(priv
, MESSAGE_TYPE_WRITE_MASK
,
151 reg_ofs
, MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);
154 void vnt_mac_reg_bits_on(struct vnt_private
*priv
, u8 reg_ofs
, u8 bits
)
161 vnt_control_out(priv
, MESSAGE_TYPE_WRITE_MASK
,
162 reg_ofs
, MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);
165 void vnt_mac_write_word(struct vnt_private
*priv
, u8 reg_ofs
, u16 word
)
169 data
[0] = (u8
)(word
& 0xff);
170 data
[1] = (u8
)(word
>> 8);
172 vnt_control_out(priv
, MESSAGE_TYPE_WRITE
,
173 reg_ofs
, MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);
176 void vnt_mac_set_bssid_addr(struct vnt_private
*priv
, u8
*addr
)
178 vnt_control_out(priv
, MESSAGE_TYPE_WRITE
, MAC_REG_BSSID0
,
179 MESSAGE_REQUEST_MACREG
, ETH_ALEN
, addr
);
182 void vnt_mac_enable_protect_mode(struct vnt_private
*priv
)
186 data
[0] = EnCFG_ProtectMd
;
187 data
[1] = EnCFG_ProtectMd
;
189 vnt_control_out(priv
, MESSAGE_TYPE_WRITE_MASK
,
190 MAC_REG_ENCFG0
, MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);
193 void vnt_mac_disable_protect_mode(struct vnt_private
*priv
)
198 data
[1] = EnCFG_ProtectMd
;
200 vnt_control_out(priv
, MESSAGE_TYPE_WRITE_MASK
,
201 MAC_REG_ENCFG0
, MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);
204 void vnt_mac_enable_barker_preamble_mode(struct vnt_private
*priv
)
208 data
[0] = EnCFG_BarkerPream
;
209 data
[1] = EnCFG_BarkerPream
;
211 vnt_control_out(priv
, MESSAGE_TYPE_WRITE_MASK
,
212 MAC_REG_ENCFG2
, MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);
215 void vnt_mac_disable_barker_preamble_mode(struct vnt_private
*priv
)
220 data
[1] = EnCFG_BarkerPream
;
222 vnt_control_out(priv
, MESSAGE_TYPE_WRITE_MASK
,
223 MAC_REG_ENCFG2
, MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);
226 void vnt_mac_set_beacon_interval(struct vnt_private
*priv
, u16 interval
)
230 data
[0] = (u8
)(interval
& 0xff);
231 data
[1] = (u8
)(interval
>> 8);
233 vnt_control_out(priv
, MESSAGE_TYPE_WRITE
,
234 MAC_REG_BI
, MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);
237 void vnt_mac_set_led(struct vnt_private
*priv
, u8 state
, u8 led
)
244 vnt_control_out(priv
, MESSAGE_TYPE_WRITE_MASK
, MAC_REG_PAPEDELAY
,
245 MESSAGE_REQUEST_MACREG
, ARRAY_SIZE(data
), data
);