blob: 72f01ce8b42c4f930a69f77e90152663608ac567 [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łeckic1c3dae2011-06-20 03:12:19 +020072 /* Calibration */
73 b43_radio_mask(dev, 0x2b, ~0x1);
74 b43_radio_mask(dev, 0x2e, ~0x4);
75 b43_radio_set(dev, 0x2e, 0x4);
76 b43_radio_set(dev, 0x2b, 0x1);
77
78 udelay(300);
Rafał Miłecki39ca5542011-06-19 12:17:20 +020079}
80
81static void b43_phy_ht_channel_setup(struct b43_wldev *dev,
82 const struct b43_phy_ht_channeltab_e_phy *e,
83 struct ieee80211_channel *new_channel)
84{
85 /* TODO */
86}
87
88static int b43_phy_ht_set_channel(struct b43_wldev *dev,
89 struct ieee80211_channel *channel,
90 enum nl80211_channel_type channel_type)
91{
92 struct b43_phy *phy = &dev->phy;
93
94 const struct b43_phy_ht_channeltab_e_radio2059 *chent_r2059 = NULL;
95
96 if (phy->radio_ver == 0x2059) {
97 chent_r2059 = b43_phy_ht_get_channeltab_e_r2059(dev,
98 channel->center_freq);
99 if (!chent_r2059)
100 return -ESRCH;
101 } else {
102 return -ESRCH;
103 }
104
105 /* TODO: In case of N-PHY some bandwidth switching goes here */
106
107 if (phy->radio_ver == 0x2059) {
108 b43_radio_2059_channel_setup(dev, chent_r2059);
109 b43_phy_ht_channel_setup(dev, &(chent_r2059->phy_regs),
110 channel);
111 } else {
112 return -ESRCH;
113 }
114
115 return 0;
116}
117
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200118/**************************************************
119 * Basic PHY ops.
120 **************************************************/
121
122static int b43_phy_ht_op_allocate(struct b43_wldev *dev)
123{
124 struct b43_phy_ht *phy_ht;
125
126 phy_ht = kzalloc(sizeof(*phy_ht), GFP_KERNEL);
127 if (!phy_ht)
128 return -ENOMEM;
129 dev->phy.ht = phy_ht;
130
131 return 0;
132}
133
134static void b43_phy_ht_op_prepare_structs(struct b43_wldev *dev)
135{
136 struct b43_phy *phy = &dev->phy;
137 struct b43_phy_ht *phy_ht = phy->ht;
138
139 memset(phy_ht, 0, sizeof(*phy_ht));
140}
141
142static void b43_phy_ht_op_free(struct b43_wldev *dev)
143{
144 struct b43_phy *phy = &dev->phy;
145 struct b43_phy_ht *phy_ht = phy->ht;
146
147 kfree(phy_ht);
148 phy->ht = NULL;
149}
150
Rafał Miłeckie7c62552011-06-19 02:18:11 +0200151/* http://bcm-v4.sipsolutions.net/802.11/Radio/Switch%20Radio */
152static void b43_phy_ht_op_software_rfkill(struct b43_wldev *dev,
153 bool blocked)
154{
155 if (b43_read32(dev, B43_MMIO_MACCTL) & B43_MACCTL_ENABLED)
156 b43err(dev->wl, "MAC not suspended\n");
157
158 if (blocked) {
159 b43_phy_mask(dev, B43_PHY_HT_RF_CTL1, ~0);
160 } else {
Rafał Miłecki1a3f71a2011-06-19 02:18:12 +0200161 b43_phy_mask(dev, B43_PHY_HT_RF_CTL1, ~0);
162 b43_phy_maskset(dev, B43_PHY_HT_RF_CTL1, ~0, 0x1);
163 b43_phy_mask(dev, B43_PHY_HT_RF_CTL1, ~0);
164 b43_phy_maskset(dev, B43_PHY_HT_RF_CTL1, ~0, 0x2);
Rafał Miłeckie7c62552011-06-19 02:18:11 +0200165 }
166}
167
Rafał Miłeckia8e82742011-06-16 01:59:20 +0200168static void b43_phy_ht_op_switch_analog(struct b43_wldev *dev, bool on)
169{
170 if (on) {
171 b43_phy_write(dev, B43_PHY_HT_AFE_CTL2, 0x00cd);
172 b43_phy_write(dev, B43_PHY_HT_AFE_CTL1, 0x0000);
173 b43_phy_write(dev, B43_PHY_HT_AFE_CTL4, 0x00cd);
174 b43_phy_write(dev, B43_PHY_HT_AFE_CTL3, 0x0000);
175 b43_phy_write(dev, B43_PHY_HT_AFE_CTL6, 0x00cd);
176 b43_phy_write(dev, B43_PHY_HT_AFE_CTL5, 0x0000);
177 } else {
178 b43_phy_write(dev, B43_PHY_HT_AFE_CTL1, 0x07ff);
179 b43_phy_write(dev, B43_PHY_HT_AFE_CTL2, 0x00fd);
180 b43_phy_write(dev, B43_PHY_HT_AFE_CTL3, 0x07ff);
181 b43_phy_write(dev, B43_PHY_HT_AFE_CTL4, 0x00fd);
182 b43_phy_write(dev, B43_PHY_HT_AFE_CTL5, 0x07ff);
183 b43_phy_write(dev, B43_PHY_HT_AFE_CTL6, 0x00fd);
184 }
185}
186
Rafał Miłecki39ca5542011-06-19 12:17:20 +0200187static int b43_phy_ht_op_switch_channel(struct b43_wldev *dev,
188 unsigned int new_channel)
189{
190 struct ieee80211_channel *channel = dev->wl->hw->conf.channel;
191 enum nl80211_channel_type channel_type = dev->wl->hw->conf.channel_type;
192
193 if (b43_current_band(dev->wl) == IEEE80211_BAND_2GHZ) {
194 if ((new_channel < 1) || (new_channel > 14))
195 return -EINVAL;
196 } else {
197 return -EINVAL;
198 }
199
200 return b43_phy_ht_set_channel(dev, channel, channel_type);
201}
202
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200203static unsigned int b43_phy_ht_op_get_default_chan(struct b43_wldev *dev)
204{
205 if (b43_current_band(dev->wl) == IEEE80211_BAND_2GHZ)
206 return 1;
207 return 36;
208}
209
210/**************************************************
211 * R/W ops.
212 **************************************************/
213
214static u16 b43_phy_ht_op_read(struct b43_wldev *dev, u16 reg)
215{
216 b43_write16(dev, B43_MMIO_PHY_CONTROL, reg);
217 return b43_read16(dev, B43_MMIO_PHY_DATA);
218}
219
220static void b43_phy_ht_op_write(struct b43_wldev *dev, u16 reg, u16 value)
221{
222 b43_write16(dev, B43_MMIO_PHY_CONTROL, reg);
223 b43_write16(dev, B43_MMIO_PHY_DATA, value);
224}
225
226static void b43_phy_ht_op_maskset(struct b43_wldev *dev, u16 reg, u16 mask,
227 u16 set)
228{
229 b43_write16(dev, B43_MMIO_PHY_CONTROL, reg);
230 b43_write16(dev, B43_MMIO_PHY_DATA,
231 (b43_read16(dev, B43_MMIO_PHY_DATA) & mask) | set);
232}
233
Rafał Miłecki4cabd422011-06-16 01:59:19 +0200234static u16 b43_phy_ht_op_radio_read(struct b43_wldev *dev, u16 reg)
235{
236 /* HT-PHY needs 0x200 for read access */
237 reg |= 0x200;
238
239 b43_write16(dev, B43_MMIO_RADIO24_CONTROL, reg);
240 return b43_read16(dev, B43_MMIO_RADIO24_DATA);
241}
242
243static void b43_phy_ht_op_radio_write(struct b43_wldev *dev, u16 reg,
244 u16 value)
245{
246 b43_write16(dev, B43_MMIO_RADIO24_CONTROL, reg);
247 b43_write16(dev, B43_MMIO_RADIO24_DATA, value);
248}
249
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200250/**************************************************
251 * PHY ops struct.
252 **************************************************/
253
254const struct b43_phy_operations b43_phyops_ht = {
255 .allocate = b43_phy_ht_op_allocate,
256 .free = b43_phy_ht_op_free,
257 .prepare_structs = b43_phy_ht_op_prepare_structs,
258 /*
259 .init = b43_phy_ht_op_init,
260 */
261 .phy_read = b43_phy_ht_op_read,
262 .phy_write = b43_phy_ht_op_write,
263 .phy_maskset = b43_phy_ht_op_maskset,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200264 .radio_read = b43_phy_ht_op_radio_read,
265 .radio_write = b43_phy_ht_op_radio_write,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200266 .software_rfkill = b43_phy_ht_op_software_rfkill,
267 .switch_analog = b43_phy_ht_op_switch_analog,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200268 .switch_channel = b43_phy_ht_op_switch_channel,
Rafał Miłeckid7520b12011-06-13 16:20:06 +0200269 .get_default_chan = b43_phy_ht_op_get_default_chan,
270 /*
271 .recalc_txpower = b43_phy_ht_op_recalc_txpower,
272 .adjust_txpower = b43_phy_ht_op_adjust_txpower,
273 */
274};