3 Broadcom BCM43xx wireless driver
5 Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>,
6 Stefano Brivio <st3@riseup.net>
7 Michael Buesch <mbuesch@freenet.de>
8 Danny van Dyk <kugelfang@gentoo.org>
9 Andreas Jaggi <andreas.jaggi@waterwave.ch>
11 Some parts of the code in this file are derived from the ipw2200
12 driver Copyright(c) 2003 - 2004 Intel Corporation.
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2 of the License, or
17 (at your option) any later version.
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program; see the file COPYING. If not, write to
26 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
27 Boston, MA 02110-1301, USA.
31 #include <linux/delay.h>
34 #include "bcm43xx_power.h"
35 #include "bcm43xx_main.h"
38 /* Get max/min slowclock frequency
39 * as described in http://bcm-specs.sipsolutions.net/PowerControl
41 static int bcm43xx_pctl_clockfreqlimit(struct bcm43xx_private
*bcm
,
49 struct bcm43xx_coreinfo
*old_core
;
51 if (!(bcm
->chipcommon_capabilities
& BCM43xx_CAPABILITIES_PCTL
))
53 old_core
= bcm
->current_core
;
54 err
= bcm43xx_switch_core(bcm
, &bcm
->core_chipcommon
);
58 if (bcm
->current_core
->rev
< 6) {
59 if ((bcm
->bustype
== BCM43xx_BUSTYPE_PCMCIA
) ||
60 (bcm
->bustype
== BCM43xx_BUSTYPE_SB
)) {
64 err
= bcm43xx_pci_read_config32(bcm
, BCM43xx_PCTL_OUT
, &tmp
);
66 printk(KERN_ERR PFX
"clockfreqlimit pcicfg read failure\n");
79 } else if (bcm
->current_core
->rev
< 10) {
80 selection
= (tmp
& 0x07);
82 tmp
= bcm43xx_read32(bcm
, BCM43xx_CHIPCOMMON_SLOWCLKCTL
);
83 divisor
= 4 * (1 + ((tmp
& 0xFFFF0000) >> 16));
87 tmp
= bcm43xx_read32(bcm
, BCM43xx_CHIPCOMMON_SYSCLKCTL
);
88 divisor
= 4 * (1 + ((tmp
& 0xFFFF0000) >> 16));
120 err
= bcm43xx_switch_core(bcm
, old_core
);
127 /* init power control
128 * as described in http://bcm-specs.sipsolutions.net/PowerControl
130 int bcm43xx_pctl_init(struct bcm43xx_private
*bcm
)
133 struct bcm43xx_coreinfo
*old_core
;
135 if (!(bcm
->chipcommon_capabilities
& BCM43xx_CAPABILITIES_PCTL
))
137 old_core
= bcm
->current_core
;
138 err
= bcm43xx_switch_core(bcm
, &bcm
->core_chipcommon
);
144 maxfreq
= bcm43xx_pctl_clockfreqlimit(bcm
, 1);
145 bcm43xx_write32(bcm
, BCM43xx_CHIPCOMMON_PLLONDELAY
,
146 (maxfreq
* 150 + 999999) / 1000000);
147 bcm43xx_write32(bcm
, BCM43xx_CHIPCOMMON_FREFSELDELAY
,
148 (maxfreq
* 15 + 999999) / 1000000);
150 err
= bcm43xx_switch_core(bcm
, old_core
);
157 u16
bcm43xx_pctl_powerup_delay(struct bcm43xx_private
*bcm
)
162 struct bcm43xx_coreinfo
*old_core
;
165 if (bcm
->bustype
!= BCM43xx_BUSTYPE_PCI
)
167 if (!(bcm
->chipcommon_capabilities
& BCM43xx_CAPABILITIES_PCTL
))
169 old_core
= bcm
->current_core
;
170 err
= bcm43xx_switch_core(bcm
, &bcm
->core_chipcommon
);
174 minfreq
= bcm43xx_pctl_clockfreqlimit(bcm
, 0);
175 pll_on_delay
= bcm43xx_read32(bcm
, BCM43xx_CHIPCOMMON_PLLONDELAY
);
176 delay
= (((pll_on_delay
+ 2) * 1000000) + (minfreq
- 1)) / minfreq
;
178 err
= bcm43xx_switch_core(bcm
, old_core
);
185 /* set the powercontrol clock
186 * as described in http://bcm-specs.sipsolutions.net/PowerControl
188 int bcm43xx_pctl_set_clock(struct bcm43xx_private
*bcm
, u16 mode
)
191 struct bcm43xx_coreinfo
*old_core
;
194 old_core
= bcm
->current_core
;
195 err
= bcm43xx_switch_core(bcm
, &bcm
->core_chipcommon
);
201 if (bcm
->core_chipcommon
.rev
< 6) {
202 if (mode
== BCM43xx_PCTL_CLK_FAST
) {
203 err
= bcm43xx_pctl_set_crystal(bcm
, 1);
208 if ((bcm
->chipcommon_capabilities
& BCM43xx_CAPABILITIES_PCTL
) &&
209 (bcm
->core_chipcommon
.rev
< 10)) {
211 case BCM43xx_PCTL_CLK_FAST
:
212 tmp
= bcm43xx_read32(bcm
, BCM43xx_CHIPCOMMON_SLOWCLKCTL
);
213 tmp
= (tmp
& ~BCM43xx_PCTL_FORCE_SLOW
) | BCM43xx_PCTL_FORCE_PLL
;
214 bcm43xx_write32(bcm
, BCM43xx_CHIPCOMMON_SLOWCLKCTL
, tmp
);
216 case BCM43xx_PCTL_CLK_SLOW
:
217 tmp
= bcm43xx_read32(bcm
, BCM43xx_CHIPCOMMON_SLOWCLKCTL
);
218 tmp
|= BCM43xx_PCTL_FORCE_SLOW
;
219 bcm43xx_write32(bcm
, BCM43xx_CHIPCOMMON_SLOWCLKCTL
, tmp
);
221 case BCM43xx_PCTL_CLK_DYNAMIC
:
222 tmp
= bcm43xx_read32(bcm
, BCM43xx_CHIPCOMMON_SLOWCLKCTL
);
223 tmp
&= ~BCM43xx_PCTL_FORCE_SLOW
;
224 tmp
|= BCM43xx_PCTL_FORCE_PLL
;
225 tmp
&= ~BCM43xx_PCTL_DYN_XTAL
;
226 bcm43xx_write32(bcm
, BCM43xx_CHIPCOMMON_SLOWCLKCTL
, tmp
);
231 err
= bcm43xx_switch_core(bcm
, old_core
);
238 int bcm43xx_pctl_set_crystal(struct bcm43xx_private
*bcm
, int on
)
241 u32 in
, out
, outenable
;
243 err
= bcm43xx_pci_read_config32(bcm
, BCM43xx_PCTL_IN
, &in
);
246 err
= bcm43xx_pci_read_config32(bcm
, BCM43xx_PCTL_OUT
, &out
);
249 err
= bcm43xx_pci_read_config32(bcm
, BCM43xx_PCTL_OUTENABLE
, &outenable
);
253 outenable
|= (BCM43xx_PCTL_XTAL_POWERUP
| BCM43xx_PCTL_PLL_POWERDOWN
);
259 out
|= (BCM43xx_PCTL_XTAL_POWERUP
| BCM43xx_PCTL_PLL_POWERDOWN
);
261 err
= bcm43xx_pci_write_config32(bcm
, BCM43xx_PCTL_OUT
, out
);
264 err
= bcm43xx_pci_write_config32(bcm
, BCM43xx_PCTL_OUTENABLE
, outenable
);
269 out
&= ~BCM43xx_PCTL_PLL_POWERDOWN
;
270 err
= bcm43xx_pci_write_config32(bcm
, BCM43xx_PCTL_OUT
, out
);
275 if (bcm
->current_core
->rev
< 5)
277 if (bcm
->sprom
.boardflags
& BCM43xx_BFL_XTAL_NOSLOW
)
280 /* XXX: Why BCM43xx_MMIO_RADIO_HWENABLED_xx can't be read at this time?
281 * err = bcm43xx_switch_core(bcm, bcm->active_80211_core);
284 * if (((bcm->current_core->rev >= 3) &&
285 * (bcm43xx_read32(bcm, BCM43xx_MMIO_RADIO_HWENABLED_HI) & (1 << 16))) ||
286 * ((bcm->current_core->rev < 3) &&
287 * !(bcm43xx_read16(bcm, BCM43xx_MMIO_RADIO_HWENABLED_LO) & (1 << 4))))
289 * err = bcm43xx_switch_core(bcm, &bcm->core_chipcommon);
294 err
= bcm43xx_pctl_set_clock(bcm
, BCM43xx_PCTL_CLK_SLOW
);
297 out
&= ~BCM43xx_PCTL_XTAL_POWERUP
;
298 out
|= BCM43xx_PCTL_PLL_POWERDOWN
;
299 err
= bcm43xx_pci_write_config32(bcm
, BCM43xx_PCTL_OUT
, out
);
302 err
= bcm43xx_pci_write_config32(bcm
, BCM43xx_PCTL_OUTENABLE
, outenable
);
311 printk(KERN_ERR PFX
"Error: pctl_set_clock() could not access PCI config space!\n");
316 /* Set the PowerSavingControlBits.
320 * -1 => calculate the bit
322 void bcm43xx_power_saving_ctl_bits(struct bcm43xx_private
*bcm
,
323 int bit25
, int bit26
)
328 //FIXME: Force 25 to off and 26 to on for now:
333 //TODO: If powersave is not off and FIXME is not set and we are not in adhoc
334 // and thus is not an AP and we are associated, set bit 25
337 //TODO: If the device is awake or this is an AP, or we are scanning, or FIXME,
338 // or we are associated, or FIXME, or the latest PS-Poll packet sent was
339 // successful, set bit26
341 status
= bcm43xx_read32(bcm
, BCM43xx_MMIO_STATUS_BITFIELD
);
343 status
|= BCM43xx_SBF_PS1
;
345 status
&= ~BCM43xx_SBF_PS1
;
347 status
|= BCM43xx_SBF_PS2
;
349 status
&= ~BCM43xx_SBF_PS2
;
350 bcm43xx_write32(bcm
, BCM43xx_MMIO_STATUS_BITFIELD
, status
);
351 if (bit26
&& bcm
->current_core
->rev
>= 5) {
352 for (i
= 0; i
< 100; i
++) {
353 if (bcm43xx_shm_read32(bcm
, BCM43xx_SHM_SHARED
, 0x0040) != 4)