blob: 4d6345e8ee6bb7fc4aca143610ab23939da5e5e1 [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łeckie5b61002011-06-27 14:58:52 +020027#include "tables_phy_ht.h"
Rafał Miłecki5192bf52011-06-19 12:17:19 +020028#include "radio_2059.h"
Rafał Miłeckid7520b12011-06-13 16:20:06 +020029#include "main.h"
30
Rafał Miłecki3e644ab2011-06-28 00:08:53 +020031/**************************************************
32 * Radio 2059.
33 **************************************************/
34
Rafał Miłecki39ca5542011-06-19 12:17:20 +020035static void b43_radio_2059_channel_setup(struct b43_wldev *dev,
36 const struct b43_phy_ht_channeltab_e_radio2059 *e)
37{
Rafał Miłeckia6b7da52011-06-19 12:17:21 +020038 u8 i;
39 u16 routing;
40
41 b43_radio_write(dev, 0x16, e->radio_syn16);
42 b43_radio_write(dev, 0x17, e->radio_syn17);
43 b43_radio_write(dev, 0x22, e->radio_syn22);
44 b43_radio_write(dev, 0x25, e->radio_syn25);
45 b43_radio_write(dev, 0x27, e->radio_syn27);
46 b43_radio_write(dev, 0x28, e->radio_syn28);
47 b43_radio_write(dev, 0x29, e->radio_syn29);
48 b43_radio_write(dev, 0x2c, e->radio_syn2c);
49 b43_radio_write(dev, 0x2d, e->radio_syn2d);
50 b43_radio_write(dev, 0x37, e->radio_syn37);
51 b43_radio_write(dev, 0x41, e->radio_syn41);
52 b43_radio_write(dev, 0x43, e->radio_syn43);
53 b43_radio_write(dev, 0x47, e->radio_syn47);
54 b43_radio_write(dev, 0x4a, e->radio_syn4a);
55 b43_radio_write(dev, 0x58, e->radio_syn58);
56 b43_radio_write(dev, 0x5a, e->radio_syn5a);
57 b43_radio_write(dev, 0x6a, e->radio_syn6a);
58 b43_radio_write(dev, 0x6d, e->radio_syn6d);
59 b43_radio_write(dev, 0x6e, e->radio_syn6e);
60 b43_radio_write(dev, 0x92, e->radio_syn92);
61 b43_radio_write(dev, 0x98, e->radio_syn98);
62
63 for (i = 0; i < 2; i++) {
Rafał Miłeckie8dec1e2011-06-28 00:08:52 +020064 routing = i ? R2059_RXRX1 : R2059_TXRX0;
Rafał Miłeckia6b7da52011-06-19 12:17:21 +020065 b43_radio_write(dev, routing | 0x4a, e->radio_rxtx4a);
66 b43_radio_write(dev, routing | 0x58, e->radio_rxtx58);
67 b43_radio_write(dev, routing | 0x5a, e->radio_rxtx5a);
68 b43_radio_write(dev, routing | 0x6a, e->radio_rxtx6a);
69 b43_radio_write(dev, routing | 0x6d, e->radio_rxtx6d);
70 b43_radio_write(dev, routing | 0x6e, e->radio_rxtx6e);
71 b43_radio_write(dev, routing | 0x92, e->radio_rxtx92);
72 b43_radio_write(dev, routing | 0x98, e->radio_rxtx98);
73 }
74
75 udelay(50);
76
Rafał Miłeckic1c3dae2011-06-20 03:12:19 +020077 /* Calibration */
78 b43_radio_mask(dev, 0x2b, ~0x1);
79 b43_radio_mask(dev, 0x2e, ~0x4);
80 b43_radio_set(dev, 0x2e, 0x4);
81 b43_radio_set(dev, 0x2b, 0x1);
82
83 udelay(300);
Rafał Miłecki39ca5542011-06-19 12:17:20 +020084}
85
Rafał Miłecki3e644ab2011-06-28 00:08:53 +020086static void b43_radio_2059_init(struct b43_wldev *dev)
87{
88 const u16 routing[] = { R2059_SYN, R2059_TXRX0, R2059_RXRX1 };
Rafał Miłeckia5f377f2011-06-29 00:56:49 +020089 const u16 radio_values[3][2] = {
90 { 0x61, 0xE9 }, { 0x69, 0xD5 }, { 0x73, 0x99 },
91 };
92 u16 i, j;
Rafał Miłecki3e644ab2011-06-28 00:08:53 +020093
94 b43_radio_write(dev, R2059_ALL | 0x51, 0x0070);
95 b43_radio_write(dev, R2059_ALL | 0x5a, 0x0003);
96
97 for (i = 0; i < ARRAY_SIZE(routing); i++)
98 b43_radio_set(dev, routing[i] | 0x146, 0x3);
99
100 b43_radio_set(dev, 0x2e, 0x0078);
101 b43_radio_set(dev, 0xc0, 0x0080);
102 msleep(2);
103 b43_radio_mask(dev, 0x2e, ~0x0078);
104 b43_radio_mask(dev, 0xc0, ~0x0080);
105
Rafał Miłeckia5f377f2011-06-29 00:56:49 +0200106 if (1) { /* FIXME */
107 b43_radio_set(dev, R2059_RXRX1 | 0x4, 0x1);
108 udelay(10);
109 b43_radio_set(dev, R2059_RXRX1 | 0x0BF, 0x1);
110 b43_radio_maskset(dev, R2059_RXRX1 | 0x19B, 0x3, 0x2);
111
112 b43_radio_set(dev, R2059_RXRX1 | 0x4, 0x2);
113 udelay(100);
114 b43_radio_mask(dev, R2059_RXRX1 | 0x4, ~0x2);
115
116 for (i = 0; i < 10000; i++) {
117 if (b43_radio_read(dev, R2059_RXRX1 | 0x145) & 1) {
118 i = 0;
119 break;
120 }
121 udelay(100);
122 }
123 if (i)
124 b43err(dev->wl, "radio 0x945 timeout\n");
125
126 b43_radio_mask(dev, R2059_RXRX1 | 0x4, ~0x1);
127 b43_radio_set(dev, 0xa, 0x60);
128
129 for (i = 0; i < 3; i++) {
130 b43_radio_write(dev, 0x17F, radio_values[i][0]);
131 b43_radio_write(dev, 0x13D, 0x6E);
132 b43_radio_write(dev, 0x13E, radio_values[i][1]);
133 b43_radio_write(dev, 0x13C, 0x55);
134
135 for (j = 0; j < 10000; j++) {
136 if (b43_radio_read(dev, 0x140) & 2) {
137 j = 0;
138 break;
139 }
140 udelay(500);
141 }
142 if (j)
143 b43err(dev->wl, "radio 0x140 timeout\n");
144
145 b43_radio_write(dev, 0x13C, 0x15);
146 }
147
148 b43_radio_mask(dev, 0x17F, ~0x1);
149 }
150
Rafał Miłeckib473bc12011-07-17 10:30:34 +0200151 b43_radio_mask(dev, 0x11, ~0x0008);
Rafał Miłecki3e644ab2011-06-28 00:08:53 +0200152}
153
154/**************************************************
Rafał Miłecki15222b52011-08-12 13:13:44 +0200155 * Various PHY ops
156 **************************************************/
157
158static void b43_phy_ht_zero_extg(struct b43_wldev *dev)
159{
160 u8 i, j;
161 u16 base[] = { 0x40, 0x60, 0x80 };
162
163 for (i = 0; i < ARRAY_SIZE(base); i++) {
164 for (j = 0; j < 4; j++)
165 b43_phy_write(dev, B43_PHY_EXTG(base[i] + j), 0);
166 }
167
168 for (i = 0; i < ARRAY_SIZE(base); i++)
169 b43_phy_write(dev, B43_PHY_EXTG(base[i] + 0xc), 0);
170}
171
Rafał Miłeckia4042bb2011-08-13 01:41:12 +0200172/* Some unknown AFE (Analog Frondned) op */
173static void b43_phy_ht_afe_unk1(struct b43_wldev *dev)
174{
175 u8 i;
176
177 const u16 ctl_regs[3][2] = {
178 { B43_PHY_HT_AFE_CTL1, B43_PHY_HT_AFE_CTL2 },
179 { B43_PHY_HT_AFE_CTL3, B43_PHY_HT_AFE_CTL4 },
180 { B43_PHY_HT_AFE_CTL5, B43_PHY_HT_AFE_CTL6},
181 };
182
183 for (i = 0; i < 3; i++) {
184 /* TODO: verify masks&sets */
185 b43_phy_set(dev, ctl_regs[i][1], 0x4);
186 b43_phy_set(dev, ctl_regs[i][0], 0x4);
187 b43_phy_mask(dev, ctl_regs[i][1], ~0x1);
188 b43_phy_set(dev, ctl_regs[i][0], 0x1);
189 b43_httab_write(dev, B43_HTTAB16(8, 5 + (i * 0x10)), 0);
190 b43_phy_mask(dev, ctl_regs[i][0], ~0x4);
191 }
192}
193
Rafał Miłeckic750f792011-08-24 11:52:34 +0200194static void b43_phy_ht_force_rf_sequence(struct b43_wldev *dev, u16 rf_seq)
195{
196 u8 i;
197
198 u16 save_seq_mode = b43_phy_read(dev, B43_PHY_HT_RF_SEQ_MODE);
199 b43_phy_set(dev, B43_PHY_HT_RF_SEQ_MODE, 0x3);
200
201 b43_phy_set(dev, B43_PHY_HT_RF_SEQ_TRIG, rf_seq);
202 for (i = 0; i < 200; i++) {
203 if (!(b43_phy_read(dev, B43_PHY_HT_RF_SEQ_STATUS) & rf_seq)) {
204 i = 0;
205 break;
206 }
207 msleep(1);
208 }
209 if (i)
210 b43err(dev->wl, "Forcing RF sequence timeout\n");
211
212 b43_phy_write(dev, B43_PHY_HT_RF_SEQ_MODE, save_seq_mode);
213}
214
Rafał Miłeckiea5a08c2011-08-24 11:52:35 +0200215static void b43_phy_ht_read_clip_detection(struct b43_wldev *dev, u16 *clip_st)
216{
217 clip_st[0] = b43_phy_read(dev, B43_PHY_HT_C1_CLIP1THRES);
218 clip_st[1] = b43_phy_read(dev, B43_PHY_HT_C2_CLIP1THRES);
219 clip_st[2] = b43_phy_read(dev, B43_PHY_HT_C3_CLIP1THRES);
220}
221
Rafał Miłeckib5058342011-08-12 15:27:34 +0200222static void b43_phy_ht_bphy_init(struct b43_wldev *dev)
223{
224 unsigned int i;
225 u16 val;
226
227 val = 0x1E1F;
228 for (i = 0; i < 16; i++) {
229 b43_phy_write(dev, B43_PHY_N_BMODE(0x88 + i), val);
230 val -= 0x202;
231 }
232 val = 0x3E3F;
233 for (i = 0; i < 16; i++) {
234 b43_phy_write(dev, B43_PHY_N_BMODE(0x98 + i), val);
235 val -= 0x202;
236 }
237 b43_phy_write(dev, B43_PHY_N_BMODE(0x38), 0x668);
238}
239
Rafał Miłecki15222b52011-08-12 13:13:44 +0200240/**************************************************
Rafał Miłecki3e644ab2011-06-28 00:08:53 +0200241 * Channel switching ops.
242 **************************************************/
243
Rafał Miłecki39ca5542011-06-19 12:17:20 +0200244static void b43_phy_ht_channel_setup(struct b43_wldev *dev,
245 const struct b43_phy_ht_channeltab_e_phy *e,
246 struct ieee80211_channel *new_channel)
247{
Rafał Miłeckibdb2dfb2011-06-27 14:58:51 +0200248 bool old_band_5ghz;
Rafał Miłeckie5b61002011-06-27 14:58:52 +0200249 u8 i;
Rafał Miłeckibdb2dfb2011-06-27 14:58:51 +0200250
251 old_band_5ghz = b43_phy_read(dev, B43_PHY_HT_BANDCTL) & 0; /* FIXME */
252 if (new_channel->band == IEEE80211_BAND_5GHZ && !old_band_5ghz) {
253 /* TODO */
254 } else if (new_channel->band == IEEE80211_BAND_2GHZ && old_band_5ghz) {
255 /* TODO */
256 }
257
258 b43_phy_write(dev, B43_PHY_HT_BW1, e->bw1);
259 b43_phy_write(dev, B43_PHY_HT_BW2, e->bw2);
260 b43_phy_write(dev, B43_PHY_HT_BW3, e->bw3);
261 b43_phy_write(dev, B43_PHY_HT_BW4, e->bw4);
262 b43_phy_write(dev, B43_PHY_HT_BW5, e->bw5);
263 b43_phy_write(dev, B43_PHY_HT_BW6, e->bw6);
Rafał Miłeckie5b61002011-06-27 14:58:52 +0200264
265 /* TODO: some ops on PHY regs 0x0B0 and 0xC0A */
266
267 /* TODO: separated function? */
268 for (i = 0; i < 3; i++) {
Rafał Miłeckibfc8dfe2011-06-27 15:04:47 +0200269 u16 mask;
Rafał Miłeckie5b61002011-06-27 14:58:52 +0200270 u32 tmp = b43_httab_read(dev, B43_HTTAB32(26, 0xE8));
271
Rafał Miłeckibfc8dfe2011-06-27 15:04:47 +0200272 if (0) /* FIXME */
273 mask = 0x2 << (i * 4);
274 else
275 mask = 0;
276 b43_phy_mask(dev, B43_PHY_EXTG(0x108), mask);
Rafał Miłeckie5b61002011-06-27 14:58:52 +0200277
278 b43_httab_write(dev, B43_HTTAB16(7, 0x110 + i), tmp >> 16);
279 b43_httab_write(dev, B43_HTTAB8(13, 0x63 + (i * 4)),
280 tmp & 0xFF);
281 b43_httab_write(dev, B43_HTTAB8(13, 0x73 + (i * 4)),
282 tmp & 0xFF);
283 }
284
285 b43_phy_write(dev, 0x017e, 0x3830);
Rafał Miłecki39ca5542011-06-19 12:17:20 +0200286}
287
288static int b43_phy_ht_set_channel(struct b43_wldev *dev,
289 struct ieee80211_channel *channel,
290 enum nl80211_channel_type channel_type)
291{
292 struct b43_phy *phy = &dev->phy;
293
294 const struct b43_phy_ht_channeltab_e_radio2059 *chent_r2059 = NULL;
295
296 if (phy->radio_ver == 0x2059) {
297 chent_r2059 = b43_phy_ht_get_channeltab_e_r2059(dev,
298 channel->center_freq);
299 if (!chent_r2059)
300 return -ESRCH;
301 } else {
302 return -ESRCH;
303 }
304
305 /* TODO: In case of N-PHY some bandwidth switching goes here */
306
307 if (phy->radio_ver == 0x2059) {
308 b43_radio_2059_channel_setup(dev, chent_r2059);
309 b43_phy_ht_channel_setup(dev, &(chent_r2059->phy_regs),
310 channel);
311 } else {
312 return -ESRCH;
313 }
314
315 return 0;
316}
317
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200318/**************************************************
319 * Basic PHY ops.
320 **************************************************/
321
322static int b43_phy_ht_op_allocate(struct b43_wldev *dev)
323{
324 struct b43_phy_ht *phy_ht;
325
326 phy_ht = kzalloc(sizeof(*phy_ht), GFP_KERNEL);
327 if (!phy_ht)
328 return -ENOMEM;
329 dev->phy.ht = phy_ht;
330
331 return 0;
332}
333
334static void b43_phy_ht_op_prepare_structs(struct b43_wldev *dev)
335{
336 struct b43_phy *phy = &dev->phy;
337 struct b43_phy_ht *phy_ht = phy->ht;
338
339 memset(phy_ht, 0, sizeof(*phy_ht));
340}
341
Rafał Miłecki2d02c862011-06-28 09:28:39 +0200342static int b43_phy_ht_op_init(struct b43_wldev *dev)
343{
Rafał Miłecki19240f32011-08-12 13:13:46 +0200344 u16 tmp;
Rafał Miłeckiea5a08c2011-08-24 11:52:35 +0200345 u16 clip_state[3];
Rafał Miłecki19240f32011-08-12 13:13:46 +0200346
Rafał Miłecki2d02c862011-06-28 09:28:39 +0200347 b43_phy_ht_tables_init(dev);
348
Rafał Miłecki357e24d2011-08-13 01:41:11 +0200349 b43_phy_mask(dev, 0x0be, ~0x2);
350 b43_phy_set(dev, 0x23f, 0x7ff);
351 b43_phy_set(dev, 0x240, 0x7ff);
352 b43_phy_set(dev, 0x241, 0x7ff);
Rafał Miłecki15222b52011-08-12 13:13:44 +0200353
354 b43_phy_ht_zero_extg(dev);
355
Rafał Miłecki357e24d2011-08-13 01:41:11 +0200356 b43_phy_mask(dev, B43_PHY_EXTG(0), ~0x3);
Rafał Miłeckif457f182011-08-12 13:13:45 +0200357
358 b43_phy_write(dev, B43_PHY_HT_AFE_CTL1, 0);
359 b43_phy_write(dev, B43_PHY_HT_AFE_CTL3, 0);
360 b43_phy_write(dev, B43_PHY_HT_AFE_CTL5, 0);
361
362 b43_phy_write(dev, B43_PHY_EXTG(0x103), 0x20);
363 b43_phy_write(dev, B43_PHY_EXTG(0x101), 0x20);
364 b43_phy_write(dev, 0x20d, 0xb8);
365 b43_phy_write(dev, B43_PHY_EXTG(0x14f), 0xc8);
366 b43_phy_write(dev, 0x70, 0x50);
367 b43_phy_write(dev, 0x1ff, 0x30);
368
369 if (0) /* TODO: condition */
370 ; /* TODO: PHY op on reg 0x217 */
371
Rafał Miłecki357e24d2011-08-13 01:41:11 +0200372 b43_phy_read(dev, 0xb0); /* TODO: what for? */
373 b43_phy_set(dev, 0xb0, 0x1);
Rafał Miłeckif457f182011-08-12 13:13:45 +0200374
Rafał Miłecki357e24d2011-08-13 01:41:11 +0200375 b43_phy_set(dev, 0xb1, 0x91);
376 b43_phy_write(dev, 0x32f, 0x0003);
377 b43_phy_write(dev, 0x077, 0x0010);
378 b43_phy_write(dev, 0x0b4, 0x0258);
379 b43_phy_mask(dev, 0x17e, ~0x4000);
Rafał Miłeckif457f182011-08-12 13:13:45 +0200380
381 b43_phy_write(dev, 0x0b9, 0x0072);
382
Rafał Miłecki98f8dc72011-08-13 17:54:04 +0200383 b43_httab_write_few(dev, B43_HTTAB16(7, 0x14e), 2, 0x010f, 0x010f);
384 b43_httab_write_few(dev, B43_HTTAB16(7, 0x15e), 2, 0x010f, 0x010f);
385 b43_httab_write_few(dev, B43_HTTAB16(7, 0x16e), 2, 0x010f, 0x010f);
Rafał Miłecki19240f32011-08-12 13:13:46 +0200386
Rafał Miłeckia4042bb2011-08-13 01:41:12 +0200387 b43_phy_ht_afe_unk1(dev);
388
Rafał Miłecki98f8dc72011-08-13 17:54:04 +0200389 b43_httab_write_few(dev, B43_HTTAB16(7, 0x130), 9, 0x777, 0x111, 0x111,
390 0x777, 0x111, 0x111, 0x777, 0x111, 0x111);
391
392 b43_httab_write(dev, B43_HTTAB16(7, 0x120), 0x0777);
393 b43_httab_write(dev, B43_HTTAB16(7, 0x124), 0x0777);
394
395 b43_httab_write(dev, B43_HTTAB16(8, 0x00), 0x02);
396 b43_httab_write(dev, B43_HTTAB16(8, 0x10), 0x02);
397 b43_httab_write(dev, B43_HTTAB16(8, 0x20), 0x02);
398
399 b43_httab_write_few(dev, B43_HTTAB16(8, 0x08), 4,
400 0x8e, 0x96, 0x96, 0x96);
401 b43_httab_write_few(dev, B43_HTTAB16(8, 0x18), 4,
402 0x8f, 0x9f, 0x9f, 0x9f);
403 b43_httab_write_few(dev, B43_HTTAB16(8, 0x28), 4,
404 0x8f, 0x9f, 0x9f, 0x9f);
405
406 b43_httab_write_few(dev, B43_HTTAB16(8, 0x0c), 4, 0x2, 0x2, 0x2, 0x2);
407 b43_httab_write_few(dev, B43_HTTAB16(8, 0x1c), 4, 0x2, 0x2, 0x2, 0x2);
408 b43_httab_write_few(dev, B43_HTTAB16(8, 0x2c), 4, 0x2, 0x2, 0x2, 0x2);
Rafał Miłeckia4042bb2011-08-13 01:41:12 +0200409
Rafał Miłecki357e24d2011-08-13 01:41:11 +0200410 b43_phy_maskset(dev, 0x0280, 0xff00, 0x3e);
411 b43_phy_maskset(dev, 0x0283, 0xff00, 0x3e);
412 b43_phy_maskset(dev, B43_PHY_OFDM(0x0141), 0xff00, 0x46);
413 b43_phy_maskset(dev, 0x0283, 0xff00, 0x40);
414
Rafał Miłecki98f8dc72011-08-13 17:54:04 +0200415 b43_httab_write_few(dev, B43_HTTAB16(00, 0x8), 4,
416 0x09, 0x0e, 0x13, 0x18);
417 b43_httab_write_few(dev, B43_HTTAB16(01, 0x8), 4,
418 0x09, 0x0e, 0x13, 0x18);
419 /* TODO: Did wl mean 2 instead of 40? */
420 b43_httab_write_few(dev, B43_HTTAB16(40, 0x8), 4,
421 0x09, 0x0e, 0x13, 0x18);
Rafał Miłecki357e24d2011-08-13 01:41:11 +0200422
423 b43_phy_maskset(dev, B43_PHY_OFDM(0x24), 0x3f, 0xd);
424 b43_phy_maskset(dev, B43_PHY_OFDM(0x64), 0x3f, 0xd);
425 b43_phy_maskset(dev, B43_PHY_OFDM(0xa4), 0x3f, 0xd);
426
427 b43_phy_set(dev, B43_PHY_EXTG(0x060), 0x1);
428 b43_phy_set(dev, B43_PHY_EXTG(0x064), 0x1);
429 b43_phy_set(dev, B43_PHY_EXTG(0x080), 0x1);
430 b43_phy_set(dev, B43_PHY_EXTG(0x084), 0x1);
431
Rafał Miłecki19240f32011-08-12 13:13:46 +0200432 /* Copy some tables entries */
433 tmp = b43_httab_read(dev, B43_HTTAB16(7, 0x144));
434 b43_httab_write(dev, B43_HTTAB16(7, 0x14a), tmp);
435 tmp = b43_httab_read(dev, B43_HTTAB16(7, 0x154));
436 b43_httab_write(dev, B43_HTTAB16(7, 0x15a), tmp);
437 tmp = b43_httab_read(dev, B43_HTTAB16(7, 0x164));
438 b43_httab_write(dev, B43_HTTAB16(7, 0x16a), tmp);
439
440 /* Reset CCA */
441 b43_phy_force_clock(dev, true);
442 tmp = b43_phy_read(dev, B43_PHY_HT_BBCFG);
443 b43_phy_write(dev, B43_PHY_HT_BBCFG, tmp | B43_PHY_HT_BBCFG_RSTCCA);
444 b43_phy_write(dev, B43_PHY_HT_BBCFG, tmp & ~B43_PHY_HT_BBCFG_RSTCCA);
445 b43_phy_force_clock(dev, false);
446
447 b43_mac_phy_clock_set(dev, true);
448
Rafał Miłeckic750f792011-08-24 11:52:34 +0200449 b43_phy_ht_force_rf_sequence(dev, B43_PHY_HT_RF_SEQ_TRIG_RX2TX);
450 b43_phy_ht_force_rf_sequence(dev, B43_PHY_HT_RF_SEQ_TRIG_RST2RX);
Rafał Miłecki357e24d2011-08-13 01:41:11 +0200451
452 /* TODO: PHY op on reg 0xb0 */
453
Rafał Miłeckiea5a08c2011-08-24 11:52:35 +0200454 /* TODO: Should we restore it? Or store it in global PHY info? */
455 b43_phy_ht_read_clip_detection(dev, clip_state);
Rafał Miłeckib5058342011-08-12 15:27:34 +0200456
457 if (b43_current_band(dev->wl) == IEEE80211_BAND_2GHZ)
458 b43_phy_ht_bphy_init(dev);
459
460 b43_httab_write_bulk(dev, B43_HTTAB32(0x1a, 0xc0),
461 B43_HTTAB_1A_C0_LATE_SIZE, b43_httab_0x1a_0xc0_late);
462
Rafał Miłecki2d02c862011-06-28 09:28:39 +0200463 return 0;
464}
465
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200466static void b43_phy_ht_op_free(struct b43_wldev *dev)
467{
468 struct b43_phy *phy = &dev->phy;
469 struct b43_phy_ht *phy_ht = phy->ht;
470
471 kfree(phy_ht);
472 phy->ht = NULL;
473}
474
Rafał Miłeckie7c62552011-06-19 02:18:11 +0200475/* http://bcm-v4.sipsolutions.net/802.11/Radio/Switch%20Radio */
476static void b43_phy_ht_op_software_rfkill(struct b43_wldev *dev,
477 bool blocked)
478{
479 if (b43_read32(dev, B43_MMIO_MACCTL) & B43_MACCTL_ENABLED)
480 b43err(dev->wl, "MAC not suspended\n");
481
Rafał Miłecki0b5dd732011-07-18 02:13:23 +0200482 /* In the following PHY ops we copy wl's dummy behaviour.
483 * TODO: Find out if reads (currently hidden in masks/masksets) are
484 * needed and replace following ops with just writes or w&r.
485 * Note: B43_PHY_HT_RF_CTL1 register is tricky, wrong operation can
486 * cause delayed (!) machine lock up. */
Rafał Miłeckie7c62552011-06-19 02:18:11 +0200487 if (blocked) {
Rafał Miłecki0b5dd732011-07-18 02:13:23 +0200488 b43_phy_mask(dev, B43_PHY_HT_RF_CTL1, 0);
Rafał Miłeckie7c62552011-06-19 02:18:11 +0200489 } else {
Rafał Miłecki0b5dd732011-07-18 02:13:23 +0200490 b43_phy_mask(dev, B43_PHY_HT_RF_CTL1, 0);
491 b43_phy_maskset(dev, B43_PHY_HT_RF_CTL1, 0, 0x1);
492 b43_phy_mask(dev, B43_PHY_HT_RF_CTL1, 0);
493 b43_phy_maskset(dev, B43_PHY_HT_RF_CTL1, 0, 0x2);
Rafał Miłecki3e644ab2011-06-28 00:08:53 +0200494
495 if (dev->phy.radio_ver == 0x2059)
496 b43_radio_2059_init(dev);
497 else
498 B43_WARN_ON(1);
Rafał Miłecki315a6852011-07-17 10:30:32 +0200499
500 b43_switch_channel(dev, dev->phy.channel);
Rafał Miłeckie7c62552011-06-19 02:18:11 +0200501 }
502}
503
Rafał Miłeckia8e82742011-06-16 01:59:20 +0200504static void b43_phy_ht_op_switch_analog(struct b43_wldev *dev, bool on)
505{
506 if (on) {
507 b43_phy_write(dev, B43_PHY_HT_AFE_CTL2, 0x00cd);
508 b43_phy_write(dev, B43_PHY_HT_AFE_CTL1, 0x0000);
509 b43_phy_write(dev, B43_PHY_HT_AFE_CTL4, 0x00cd);
510 b43_phy_write(dev, B43_PHY_HT_AFE_CTL3, 0x0000);
511 b43_phy_write(dev, B43_PHY_HT_AFE_CTL6, 0x00cd);
512 b43_phy_write(dev, B43_PHY_HT_AFE_CTL5, 0x0000);
513 } else {
514 b43_phy_write(dev, B43_PHY_HT_AFE_CTL1, 0x07ff);
515 b43_phy_write(dev, B43_PHY_HT_AFE_CTL2, 0x00fd);
516 b43_phy_write(dev, B43_PHY_HT_AFE_CTL3, 0x07ff);
517 b43_phy_write(dev, B43_PHY_HT_AFE_CTL4, 0x00fd);
518 b43_phy_write(dev, B43_PHY_HT_AFE_CTL5, 0x07ff);
519 b43_phy_write(dev, B43_PHY_HT_AFE_CTL6, 0x00fd);
520 }
521}
522
Rafał Miłecki39ca5542011-06-19 12:17:20 +0200523static int b43_phy_ht_op_switch_channel(struct b43_wldev *dev,
524 unsigned int new_channel)
525{
526 struct ieee80211_channel *channel = dev->wl->hw->conf.channel;
527 enum nl80211_channel_type channel_type = dev->wl->hw->conf.channel_type;
528
529 if (b43_current_band(dev->wl) == IEEE80211_BAND_2GHZ) {
530 if ((new_channel < 1) || (new_channel > 14))
531 return -EINVAL;
532 } else {
533 return -EINVAL;
534 }
535
536 return b43_phy_ht_set_channel(dev, channel, channel_type);
537}
538
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200539static unsigned int b43_phy_ht_op_get_default_chan(struct b43_wldev *dev)
540{
541 if (b43_current_band(dev->wl) == IEEE80211_BAND_2GHZ)
Rafał Miłecki315a6852011-07-17 10:30:32 +0200542 return 11;
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200543 return 36;
544}
545
546/**************************************************
547 * R/W ops.
548 **************************************************/
549
550static u16 b43_phy_ht_op_read(struct b43_wldev *dev, u16 reg)
551{
552 b43_write16(dev, B43_MMIO_PHY_CONTROL, reg);
553 return b43_read16(dev, B43_MMIO_PHY_DATA);
554}
555
556static void b43_phy_ht_op_write(struct b43_wldev *dev, u16 reg, u16 value)
557{
558 b43_write16(dev, B43_MMIO_PHY_CONTROL, reg);
559 b43_write16(dev, B43_MMIO_PHY_DATA, value);
560}
561
562static void b43_phy_ht_op_maskset(struct b43_wldev *dev, u16 reg, u16 mask,
563 u16 set)
564{
565 b43_write16(dev, B43_MMIO_PHY_CONTROL, reg);
566 b43_write16(dev, B43_MMIO_PHY_DATA,
567 (b43_read16(dev, B43_MMIO_PHY_DATA) & mask) | set);
568}
569
Rafał Miłecki4cabd422011-06-16 01:59:19 +0200570static u16 b43_phy_ht_op_radio_read(struct b43_wldev *dev, u16 reg)
571{
572 /* HT-PHY needs 0x200 for read access */
573 reg |= 0x200;
574
575 b43_write16(dev, B43_MMIO_RADIO24_CONTROL, reg);
576 return b43_read16(dev, B43_MMIO_RADIO24_DATA);
577}
578
579static void b43_phy_ht_op_radio_write(struct b43_wldev *dev, u16 reg,
580 u16 value)
581{
582 b43_write16(dev, B43_MMIO_RADIO24_CONTROL, reg);
583 b43_write16(dev, B43_MMIO_RADIO24_DATA, value);
584}
585
Rafał Miłecki21a18f22011-07-07 20:06:56 +0200586static enum b43_txpwr_result
587b43_phy_ht_op_recalc_txpower(struct b43_wldev *dev, bool ignore_tssi)
588{
589 return B43_TXPWR_RES_DONE;
590}
591
592static void b43_phy_ht_op_adjust_txpower(struct b43_wldev *dev)
593{
594}
595
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200596/**************************************************
597 * PHY ops struct.
598 **************************************************/
599
600const struct b43_phy_operations b43_phyops_ht = {
601 .allocate = b43_phy_ht_op_allocate,
602 .free = b43_phy_ht_op_free,
603 .prepare_structs = b43_phy_ht_op_prepare_structs,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200604 .init = b43_phy_ht_op_init,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200605 .phy_read = b43_phy_ht_op_read,
606 .phy_write = b43_phy_ht_op_write,
607 .phy_maskset = b43_phy_ht_op_maskset,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200608 .radio_read = b43_phy_ht_op_radio_read,
609 .radio_write = b43_phy_ht_op_radio_write,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200610 .software_rfkill = b43_phy_ht_op_software_rfkill,
611 .switch_analog = b43_phy_ht_op_switch_analog,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200612 .switch_channel = b43_phy_ht_op_switch_channel,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200613 .get_default_chan = b43_phy_ht_op_get_default_chan,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200614 .recalc_txpower = b43_phy_ht_op_recalc_txpower,
615 .adjust_txpower = b43_phy_ht_op_adjust_txpower,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200616};