blob: 0b13f6f37c2fa4853f8405a012b1e882792bf6ce [file] [log] [blame]
Rafał Miłeckid7520b12011-06-13 16:20:06 +02001/*
2
3 Broadcom B43 wireless driver
4 IEEE 802.11n HT-PHY support
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
19 Boston, MA 02110-1301, USA.
20
21*/
22
23#include <linux/slab.h>
24
25#include "b43.h"
26#include "phy_ht.h"
Rafał Miłecki5192bf52011-06-19 12:17:19 +020027#include "radio_2059.h"
Rafał Miłeckid7520b12011-06-13 16:20:06 +020028#include "main.h"
29
Rafał Miłecki39ca5542011-06-19 12:17:20 +020030static void b43_radio_2059_channel_setup(struct b43_wldev *dev,
31 const struct b43_phy_ht_channeltab_e_radio2059 *e)
32{
Rafał Miłeckia6b7da52011-06-19 12:17:21 +020033 u8 i;
34 u16 routing;
35
36 b43_radio_write(dev, 0x16, e->radio_syn16);
37 b43_radio_write(dev, 0x17, e->radio_syn17);
38 b43_radio_write(dev, 0x22, e->radio_syn22);
39 b43_radio_write(dev, 0x25, e->radio_syn25);
40 b43_radio_write(dev, 0x27, e->radio_syn27);
41 b43_radio_write(dev, 0x28, e->radio_syn28);
42 b43_radio_write(dev, 0x29, e->radio_syn29);
43 b43_radio_write(dev, 0x2c, e->radio_syn2c);
44 b43_radio_write(dev, 0x2d, e->radio_syn2d);
45 b43_radio_write(dev, 0x37, e->radio_syn37);
46 b43_radio_write(dev, 0x41, e->radio_syn41);
47 b43_radio_write(dev, 0x43, e->radio_syn43);
48 b43_radio_write(dev, 0x47, e->radio_syn47);
49 b43_radio_write(dev, 0x4a, e->radio_syn4a);
50 b43_radio_write(dev, 0x58, e->radio_syn58);
51 b43_radio_write(dev, 0x5a, e->radio_syn5a);
52 b43_radio_write(dev, 0x6a, e->radio_syn6a);
53 b43_radio_write(dev, 0x6d, e->radio_syn6d);
54 b43_radio_write(dev, 0x6e, e->radio_syn6e);
55 b43_radio_write(dev, 0x92, e->radio_syn92);
56 b43_radio_write(dev, 0x98, e->radio_syn98);
57
58 for (i = 0; i < 2; i++) {
59 routing = i ? 0x800 : 0x400;
60 b43_radio_write(dev, routing | 0x4a, e->radio_rxtx4a);
61 b43_radio_write(dev, routing | 0x58, e->radio_rxtx58);
62 b43_radio_write(dev, routing | 0x5a, e->radio_rxtx5a);
63 b43_radio_write(dev, routing | 0x6a, e->radio_rxtx6a);
64 b43_radio_write(dev, routing | 0x6d, e->radio_rxtx6d);
65 b43_radio_write(dev, routing | 0x6e, e->radio_rxtx6e);
66 b43_radio_write(dev, routing | 0x92, e->radio_rxtx92);
67 b43_radio_write(dev, routing | 0x98, e->radio_rxtx98);
68 }
69
70 udelay(50);
71
Rafał Miłecki39ca5542011-06-19 12:17:20 +020072 /* TODO */
73}
74
75static void b43_phy_ht_channel_setup(struct b43_wldev *dev,
76 const struct b43_phy_ht_channeltab_e_phy *e,
77 struct ieee80211_channel *new_channel)
78{
79 /* TODO */
80}
81
82static int b43_phy_ht_set_channel(struct b43_wldev *dev,
83 struct ieee80211_channel *channel,
84 enum nl80211_channel_type channel_type)
85{
86 struct b43_phy *phy = &dev->phy;
87
88 const struct b43_phy_ht_channeltab_e_radio2059 *chent_r2059 = NULL;
89
90 if (phy->radio_ver == 0x2059) {
91 chent_r2059 = b43_phy_ht_get_channeltab_e_r2059(dev,
92 channel->center_freq);
93 if (!chent_r2059)
94 return -ESRCH;
95 } else {
96 return -ESRCH;
97 }
98
99 /* TODO: In case of N-PHY some bandwidth switching goes here */
100
101 if (phy->radio_ver == 0x2059) {
102 b43_radio_2059_channel_setup(dev, chent_r2059);
103 b43_phy_ht_channel_setup(dev, &(chent_r2059->phy_regs),
104 channel);
105 } else {
106 return -ESRCH;
107 }
108
109 return 0;
110}
111
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200112/**************************************************
113 * Basic PHY ops.
114 **************************************************/
115
116static int b43_phy_ht_op_allocate(struct b43_wldev *dev)
117{
118 struct b43_phy_ht *phy_ht;
119
120 phy_ht = kzalloc(sizeof(*phy_ht), GFP_KERNEL);
121 if (!phy_ht)
122 return -ENOMEM;
123 dev->phy.ht = phy_ht;
124
125 return 0;
126}
127
128static void b43_phy_ht_op_prepare_structs(struct b43_wldev *dev)
129{
130 struct b43_phy *phy = &dev->phy;
131 struct b43_phy_ht *phy_ht = phy->ht;
132
133 memset(phy_ht, 0, sizeof(*phy_ht));
134}
135
136static void b43_phy_ht_op_free(struct b43_wldev *dev)
137{
138 struct b43_phy *phy = &dev->phy;
139 struct b43_phy_ht *phy_ht = phy->ht;
140
141 kfree(phy_ht);
142 phy->ht = NULL;
143}
144
Rafał Miłeckie7c62552011-06-19 02:18:11 +0200145/* http://bcm-v4.sipsolutions.net/802.11/Radio/Switch%20Radio */
146static void b43_phy_ht_op_software_rfkill(struct b43_wldev *dev,
147 bool blocked)
148{
149 if (b43_read32(dev, B43_MMIO_MACCTL) & B43_MACCTL_ENABLED)
150 b43err(dev->wl, "MAC not suspended\n");
151
152 if (blocked) {
153 b43_phy_mask(dev, B43_PHY_HT_RF_CTL1, ~0);
154 } else {
Rafał Miłecki1a3f71a2011-06-19 02:18:12 +0200155 b43_phy_mask(dev, B43_PHY_HT_RF_CTL1, ~0);
156 b43_phy_maskset(dev, B43_PHY_HT_RF_CTL1, ~0, 0x1);
157 b43_phy_mask(dev, B43_PHY_HT_RF_CTL1, ~0);
158 b43_phy_maskset(dev, B43_PHY_HT_RF_CTL1, ~0, 0x2);
Rafał Miłeckie7c62552011-06-19 02:18:11 +0200159 }
160}
161
Rafał Miłeckia8e82742011-06-16 01:59:20 +0200162static void b43_phy_ht_op_switch_analog(struct b43_wldev *dev, bool on)
163{
164 if (on) {
165 b43_phy_write(dev, B43_PHY_HT_AFE_CTL2, 0x00cd);
166 b43_phy_write(dev, B43_PHY_HT_AFE_CTL1, 0x0000);
167 b43_phy_write(dev, B43_PHY_HT_AFE_CTL4, 0x00cd);
168 b43_phy_write(dev, B43_PHY_HT_AFE_CTL3, 0x0000);
169 b43_phy_write(dev, B43_PHY_HT_AFE_CTL6, 0x00cd);
170 b43_phy_write(dev, B43_PHY_HT_AFE_CTL5, 0x0000);
171 } else {
172 b43_phy_write(dev, B43_PHY_HT_AFE_CTL1, 0x07ff);
173 b43_phy_write(dev, B43_PHY_HT_AFE_CTL2, 0x00fd);
174 b43_phy_write(dev, B43_PHY_HT_AFE_CTL3, 0x07ff);
175 b43_phy_write(dev, B43_PHY_HT_AFE_CTL4, 0x00fd);
176 b43_phy_write(dev, B43_PHY_HT_AFE_CTL5, 0x07ff);
177 b43_phy_write(dev, B43_PHY_HT_AFE_CTL6, 0x00fd);
178 }
179}
180
Rafał Miłecki39ca5542011-06-19 12:17:20 +0200181static int b43_phy_ht_op_switch_channel(struct b43_wldev *dev,
182 unsigned int new_channel)
183{
184 struct ieee80211_channel *channel = dev->wl->hw->conf.channel;
185 enum nl80211_channel_type channel_type = dev->wl->hw->conf.channel_type;
186
187 if (b43_current_band(dev->wl) == IEEE80211_BAND_2GHZ) {
188 if ((new_channel < 1) || (new_channel > 14))
189 return -EINVAL;
190 } else {
191 return -EINVAL;
192 }
193
194 return b43_phy_ht_set_channel(dev, channel, channel_type);
195}
196
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200197static unsigned int b43_phy_ht_op_get_default_chan(struct b43_wldev *dev)
198{
199 if (b43_current_band(dev->wl) == IEEE80211_BAND_2GHZ)
200 return 1;
201 return 36;
202}
203
204/**************************************************
205 * R/W ops.
206 **************************************************/
207
208static u16 b43_phy_ht_op_read(struct b43_wldev *dev, u16 reg)
209{
210 b43_write16(dev, B43_MMIO_PHY_CONTROL, reg);
211 return b43_read16(dev, B43_MMIO_PHY_DATA);
212}
213
214static void b43_phy_ht_op_write(struct b43_wldev *dev, u16 reg, u16 value)
215{
216 b43_write16(dev, B43_MMIO_PHY_CONTROL, reg);
217 b43_write16(dev, B43_MMIO_PHY_DATA, value);
218}
219
220static void b43_phy_ht_op_maskset(struct b43_wldev *dev, u16 reg, u16 mask,
221 u16 set)
222{
223 b43_write16(dev, B43_MMIO_PHY_CONTROL, reg);
224 b43_write16(dev, B43_MMIO_PHY_DATA,
225 (b43_read16(dev, B43_MMIO_PHY_DATA) & mask) | set);
226}
227
Rafał Miłecki4cabd422011-06-16 01:59:19 +0200228static u16 b43_phy_ht_op_radio_read(struct b43_wldev *dev, u16 reg)
229{
230 /* HT-PHY needs 0x200 for read access */
231 reg |= 0x200;
232
233 b43_write16(dev, B43_MMIO_RADIO24_CONTROL, reg);
234 return b43_read16(dev, B43_MMIO_RADIO24_DATA);
235}
236
237static void b43_phy_ht_op_radio_write(struct b43_wldev *dev, u16 reg,
238 u16 value)
239{
240 b43_write16(dev, B43_MMIO_RADIO24_CONTROL, reg);
241 b43_write16(dev, B43_MMIO_RADIO24_DATA, value);
242}
243
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200244/**************************************************
245 * PHY ops struct.
246 **************************************************/
247
248const struct b43_phy_operations b43_phyops_ht = {
249 .allocate = b43_phy_ht_op_allocate,
250 .free = b43_phy_ht_op_free,
251 .prepare_structs = b43_phy_ht_op_prepare_structs,
252 /*
253 .init = b43_phy_ht_op_init,
254 */
255 .phy_read = b43_phy_ht_op_read,
256 .phy_write = b43_phy_ht_op_write,
257 .phy_maskset = b43_phy_ht_op_maskset,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200258 .radio_read = b43_phy_ht_op_radio_read,
259 .radio_write = b43_phy_ht_op_radio_write,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200260 .software_rfkill = b43_phy_ht_op_software_rfkill,
261 .switch_analog = b43_phy_ht_op_switch_analog,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200262 .switch_channel = b43_phy_ht_op_switch_channel,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200263 .get_default_chan = b43_phy_ht_op_get_default_chan,
264 /*
265 .recalc_txpower = b43_phy_ht_op_recalc_txpower,
266 .adjust_txpower = b43_phy_ht_op_adjust_txpower,
267 */
268};