2 * Copyright (c) 2010 Broadcom Corporation
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <linux/delay.h>
18 #include <linux/kernel.h>
19 #include <linux/string.h>
22 #include <linux/netdevice.h>
25 #include <linux/module.h>
26 #include <linux/pci.h>
33 #include <pcie_core.h>
44 #include <sbsdpcmdev.h>
49 /* this file now contains only definitions for sb functions, only necessary
50 *for devices using Sonics backplanes (bcm4329)
53 /* if an amba SDIO device is supported, please further restrict the inclusion
57 #include "siutils_priv.h"
60 /* local prototypes */
61 static si_info_t
*si_doattach(si_info_t
*sii
, uint devid
, struct osl_info
*osh
,
62 void *regs
, uint bustype
, void *sdh
, char **vars
,
64 static bool si_buscore_prep(si_info_t
*sii
, uint bustype
, uint devid
,
66 static bool si_buscore_setup(si_info_t
*sii
, chipcregs_t
*cc
, uint bustype
,
67 u32 savewin
, uint
*origidx
, void *regs
);
68 static void si_nvram_process(si_info_t
*sii
, char *pvars
);
70 /* dev path concatenation util */
71 static char *si_devpathvar(si_t
*sih
, char *var
, int len
, const char *name
);
72 static bool _si_clkctl_cc(si_info_t
*sii
, uint mode
);
73 static bool si_ispcie(si_info_t
*sii
);
74 static uint
socram_banksize(si_info_t
*sii
, sbsocramregs_t
*r
,
77 /* global variable to indicate reservation/release of gpio's */
78 static u32 si_gpioreservation
;
81 * Allocate a si handle.
82 * devid - pci device id (used to determine chip#)
83 * osh - opaque OS handle
84 * regs - virtual address of initial core registers
85 * bustype - pci/sb/sdio/etc
86 * vars - pointer to a pointer area for "environment" variables
87 * varsz - pointer to int to return the size of the vars
89 si_t
*si_attach(uint devid
, struct osl_info
*osh
, void *regs
, uint bustype
,
90 void *sdh
, char **vars
, uint
*varsz
)
95 sii
= kmalloc(sizeof(si_info_t
), GFP_ATOMIC
);
97 SI_ERROR(("si_attach: malloc failed!\n"));
101 if (si_doattach(sii
, devid
, osh
, regs
, bustype
, sdh
, vars
, varsz
) ==
106 sii
->vars
= vars
? *vars
: NULL
;
107 sii
->varsz
= varsz
? *varsz
: 0;
112 /* global kernel resource */
113 static si_info_t ksii
;
115 static bool si_buscore_prep(si_info_t
*sii
, uint bustype
, uint devid
,
120 /* kludge to enable the clock on the 4306 which lacks a slowclock */
121 if (bustype
== PCI_BUS
&& !si_ispcie(sii
))
122 si_clkctl_xtal(&sii
->pub
, XTAL
| PLL
, ON
);
126 if (bustype
== SDIO_BUS
) {
130 /* Try forcing SDIO core to do ALPAvail request only */
131 clkset
= SBSDIO_FORCE_HW_CLKREQ_OFF
| SBSDIO_ALP_AVAIL_REQ
;
132 bcmsdh_cfg_write(sdh
, SDIO_FUNC_1
, SBSDIO_FUNC1_CHIPCLKCSR
,
137 /* If register supported, wait for ALPAvail and then force ALP */
139 bcmsdh_cfg_read(sdh
, SDIO_FUNC_1
,
140 SBSDIO_FUNC1_CHIPCLKCSR
, NULL
);
141 if ((clkval
& ~SBSDIO_AVBITS
) == clkset
) {
143 bcmsdh_cfg_read(sdh
, SDIO_FUNC_1
,
144 SBSDIO_FUNC1_CHIPCLKCSR
,
146 !SBSDIO_ALPAV(clkval
)),
147 PMU_MAX_TRANSITION_DLY
);
148 if (!SBSDIO_ALPAV(clkval
)) {
149 SI_ERROR(("timeout on ALPAV wait, clkval 0x%02x\n", clkval
));
153 SBSDIO_FORCE_HW_CLKREQ_OFF
|
155 bcmsdh_cfg_write(sdh
, SDIO_FUNC_1
,
156 SBSDIO_FUNC1_CHIPCLKCSR
,
162 /* Also, disable the extra SDIO pull-ups */
163 bcmsdh_cfg_write(sdh
, SDIO_FUNC_1
, SBSDIO_FUNC1_SDIOPULLUP
, 0,
166 #endif /* defined(BCMSDIO) */
171 static bool si_buscore_setup(si_info_t
*sii
, chipcregs_t
*cc
, uint bustype
,
172 u32 savewin
, uint
*origidx
, void *regs
)
176 uint pciidx
, pcieidx
, pcirev
, pcierev
;
178 cc
= si_setcoreidx(&sii
->pub
, SI_CC_IDX
);
181 /* get chipcommon rev */
182 sii
->pub
.ccrev
= (int)si_corerev(&sii
->pub
);
184 /* get chipcommon chipstatus */
185 if (sii
->pub
.ccrev
>= 11)
186 sii
->pub
.chipst
= R_REG(sii
->osh
, &cc
->chipstatus
);
188 /* get chipcommon capabilites */
189 sii
->pub
.cccaps
= R_REG(sii
->osh
, &cc
->capabilities
);
190 /* get chipcommon extended capabilities */
193 if (sii
->pub
.ccrev
>= 35)
194 sii
->pub
.cccaps_ext
= R_REG(sii
->osh
, &cc
->capabilities_ext
);
196 /* get pmu rev and caps */
197 if (sii
->pub
.cccaps
& CC_CAP_PMU
) {
198 sii
->pub
.pmucaps
= R_REG(sii
->osh
, &cc
->pmucapabilities
);
199 sii
->pub
.pmurev
= sii
->pub
.pmucaps
& PCAP_REV_MASK
;
203 SI_MSG(("Chipc: rev %d, caps 0x%x, chipst 0x%x pmurev %d, pmucaps 0x%x\n",
204 sii->pub.ccrev, sii->pub.cccaps, sii->pub.chipst, sii->pub.pmurev,
208 /* figure out bus/orignal core idx */
209 sii
->pub
.buscoretype
= NODEV_CORE_ID
;
210 sii
->pub
.buscorerev
= NOREV
;
211 sii
->pub
.buscoreidx
= BADIDX
;
214 pcirev
= pcierev
= NOREV
;
215 pciidx
= pcieidx
= BADIDX
;
217 for (i
= 0; i
< sii
->numcores
; i
++) {
220 si_setcoreidx(&sii
->pub
, i
);
221 cid
= si_coreid(&sii
->pub
);
222 crev
= si_corerev(&sii
->pub
);
224 /* Display cores found */
225 SI_VMSG(("CORE[%d]: id 0x%x rev %d base 0x%x regs 0x%p\n",
226 i
, cid
, crev
, sii
->coresba
[i
], sii
->regs
[i
]));
228 if (bustype
== PCI_BUS
) {
229 if (cid
== PCI_CORE_ID
) {
233 } else if (cid
== PCIE_CORE_ID
) {
240 else if (((bustype
== SDIO_BUS
) ||
241 (bustype
== SPI_BUS
)) &&
242 ((cid
== PCMCIA_CORE_ID
) || (cid
== SDIOD_CORE_ID
))) {
243 sii
->pub
.buscorerev
= crev
;
244 sii
->pub
.buscoretype
= cid
;
245 sii
->pub
.buscoreidx
= i
;
249 /* find the core idx before entering this func. */
250 if ((savewin
&& (savewin
== sii
->coresba
[i
])) ||
251 (regs
== sii
->regs
[i
]))
256 SI_MSG(("Buscore id/type/rev %d/0x%x/%d\n", sii
->pub
.buscoreidx
,
257 sii
->pub
.buscoretype
, sii
->pub
.buscorerev
));
259 /* Make sure any on-chip ARM is off (in case strapping is wrong),
260 * or downloaded code was
263 if ((bustype
== SDIO_BUS
) || (bustype
== SPI_BUS
)) {
264 if (si_setcore(&sii
->pub
, ARM7S_CORE_ID
, 0) ||
265 si_setcore(&sii
->pub
, ARMCM3_CORE_ID
, 0))
266 si_core_disable(&sii
->pub
, 0);
276 sii
->pub
.buscoretype
= PCI_CORE_ID
;
277 sii
->pub
.buscorerev
= pcirev
;
278 sii
->pub
.buscoreidx
= pciidx
;
280 sii
->pub
.buscoretype
= PCIE_CORE_ID
;
281 sii
->pub
.buscorerev
= pcierev
;
282 sii
->pub
.buscoreidx
= pcieidx
;
285 SI_VMSG(("Buscore id/type/rev %d/0x%x/%d\n", sii
->pub
.buscoreidx
,
286 sii
->pub
.buscoretype
, sii
->pub
.buscorerev
));
288 /* fixup necessary chip/core configurations */
289 if (sii
->pub
.bustype
== PCI_BUS
) {
292 sii
->pch
= (void *)pcicore_init(
294 (void *)PCIEREGS(sii
));
295 if (sii
->pch
== NULL
)
299 if (si_pci_fixcfg(&sii
->pub
)) {
300 SI_ERROR(("si_doattach: sb_pci_fixcfg failed\n"));
305 /* return to the original core */
306 si_setcoreidx(&sii
->pub
, *origidx
);
311 static __used
void si_nvram_process(si_info_t
*sii
, char *pvars
)
315 /* get boardtype and boardrev */
316 switch (sii
->pub
.bustype
) {
318 /* do a pci config read to get subsystem id and subvendor id */
319 pci_read_config_dword(sii
->osh
->pdev
, PCI_CFG_SVID
, &w
);
320 /* Let nvram variables override subsystem Vend/ID */
321 sii
->pub
.boardvendor
= (u16
)si_getdevpathintvar(&sii
->pub
,
323 if (sii
->pub
.boardvendor
== 0)
324 sii
->pub
.boardvendor
= w
& 0xffff;
326 SI_ERROR(("Overriding boardvendor: 0x%x instead of 0x%x\n", sii
->pub
.boardvendor
, w
& 0xffff));
327 sii
->pub
.boardtype
= (u16
)si_getdevpathintvar(&sii
->pub
,
329 if (sii
->pub
.boardtype
== 0)
330 sii
->pub
.boardtype
= (w
>> 16) & 0xffff;
332 SI_ERROR(("Overriding boardtype: 0x%x instead of 0x%x\n", sii
->pub
.boardtype
, (w
>> 16) & 0xffff));
338 sii
->pub
.boardvendor
= getintvar(pvars
, "manfid");
339 sii
->pub
.boardtype
= getintvar(pvars
, "prodid");
344 sii
->pub
.boardvendor
= VENDOR_BROADCOM
;
345 sii
->pub
.boardtype
= SPI_BOARD
;
351 sii
->pub
.boardvendor
= VENDOR_BROADCOM
;
352 sii
->pub
.boardtype
= getintvar(pvars
, "prodid");
353 if (pvars
== NULL
|| (sii
->pub
.boardtype
== 0)) {
354 sii
->pub
.boardtype
= getintvar(NULL
, "boardtype");
355 if (sii
->pub
.boardtype
== 0)
356 sii
->pub
.boardtype
= 0xffff;
361 if (sii
->pub
.boardtype
== 0) {
362 SI_ERROR(("si_doattach: unknown board type\n"));
363 ASSERT(sii
->pub
.boardtype
);
366 sii
->pub
.boardflags
= getintvar(pvars
, "boardflags");
369 /* this is will make Sonics calls directly, since Sonics is no longer supported in the Si abstraction */
370 /* this has been customized for the bcm 4329 ONLY */
372 static si_info_t
*si_doattach(si_info_t
*sii
, uint devid
, struct osl_info
*osh
,
373 void *regs
, uint bustype
, void *sdh
,
374 char **vars
, uint
*varsz
)
376 struct si_pub
*sih
= &sii
->pub
;
382 ASSERT(GOODREGS(regs
));
384 memset((unsigned char *) sii
, 0, sizeof(si_info_t
));
388 sih
->buscoreidx
= BADIDX
;
394 /* find Chipcommon address */
395 cc
= (chipcregs_t
*) sii
->curmap
;
396 sih
->bustype
= bustype
;
398 /* bus/core/clk setup for register access */
399 if (!si_buscore_prep(sii
, bustype
, devid
, sdh
)) {
400 SI_ERROR(("si_doattach: si_core_clk_prep failed %d\n",
405 /* ChipID recognition.
406 * We assume we can read chipid at offset 0 from the regs arg.
407 * If we add other chiptypes (or if we need to support old sdio hosts w/o chipcommon),
408 * some way of recognizing them needs to be added here.
410 w
= R_REG(osh
, &cc
->chipid
);
411 sih
->socitype
= (w
& CID_TYPE_MASK
) >> CID_TYPE_SHIFT
;
412 /* Might as wll fill in chip id rev & pkg */
413 sih
->chip
= w
& CID_ID_MASK
;
414 sih
->chiprev
= (w
& CID_REV_MASK
) >> CID_REV_SHIFT
;
415 sih
->chippkg
= (w
& CID_PKG_MASK
) >> CID_PKG_SHIFT
;
417 if ((sih
->chip
== BCM4329_CHIP_ID
) &&
418 (sih
->chippkg
!= BCM4329_289PIN_PKG_ID
))
419 sih
->chippkg
= BCM4329_182PIN_PKG_ID
;
421 sih
->issim
= IS_SIM(sih
->chippkg
);
424 /* SI_MSG(("Found chip type SB (0x%08x)\n", w)); */
425 sb_scan(&sii
->pub
, regs
, devid
);
427 /* no cores found, bail out */
428 if (sii
->numcores
== 0) {
429 SI_ERROR(("si_doattach: could not find any cores\n"));
432 /* bus/core/clk setup */
434 if (!si_buscore_setup(sii
, cc
, bustype
, savewin
, &origidx
, regs
)) {
435 SI_ERROR(("si_doattach: si_buscore_setup failed\n"));
442 /* Init nvram from flash if it exists */
443 nvram_init((void *)&(sii
->pub
));
445 /* Init nvram from sprom/otp if they exist */
447 (&sii
->pub
, bustype
, regs
, sii
->osh
, vars
, varsz
)) {
448 SI_ERROR(("si_doattach: srom_var_init failed: bad srom\n"));
451 pvars
= vars
? *vars
: NULL
;
452 si_nvram_process(sii
, pvars
);
455 /* === NVRAM, clock is ready === */
458 if (sii
->pub
.ccrev
>= 20) {
460 cc
= (chipcregs_t
*) si_setcore(sih
, CC_CORE_ID
, 0);
461 W_REG(osh
, &cc
->gpiopullup
, 0);
462 W_REG(osh
, &cc
->gpiopulldown
, 0);
463 sb_setcoreidx(sih
, origidx
);
469 /* PMU specific initializations */
470 if (PMUCTL_ENAB(sih
)) {
472 si_pmu_init(sih
, sii
->osh
);
473 si_pmu_chip_init(sih
, sii
->osh
);
474 xtalfreq
= getintvar(pvars
, "xtalfreq");
475 /* If xtalfreq var not available, try to measure it */
477 xtalfreq
= si_pmu_measure_alpclk(sih
, sii
->osh
);
478 si_pmu_pll_init(sih
, sii
->osh
, xtalfreq
);
479 si_pmu_res_init(sih
, sii
->osh
);
480 si_pmu_swreg_init(sih
, sii
->osh
);
483 /* setup the GPIO based LED powersave register */
484 w
= getintvar(pvars
, "leddc");
486 w
= DEFAULT_GPIOTIMERVAL
;
487 sb_corereg(sih
, SI_CC_IDX
, offsetof(chipcregs_t
, gpiotimerval
), ~0, w
);
490 /* clear any previous epidiag-induced target abort */
491 sb_taclear(sih
, false);
502 static si_info_t
*si_doattach(si_info_t
*sii
, uint devid
, struct osl_info
*osh
,
503 void *regs
, uint bustype
, void *sdh
,
504 char **vars
, uint
*varsz
)
506 struct si_pub
*sih
= &sii
->pub
;
512 ASSERT(GOODREGS(regs
));
514 memset((unsigned char *) sii
, 0, sizeof(si_info_t
));
518 sih
->buscoreidx
= BADIDX
;
524 /* check to see if we are a si core mimic'ing a pci core */
525 if (bustype
== PCI_BUS
) {
526 pci_read_config_dword(sii
->osh
->pdev
, PCI_SPROM_CONTROL
, &w
);
527 if (w
== 0xffffffff) {
528 SI_ERROR(("%s: incoming bus is PCI but it's a lie, "
529 " switching to SI devid:0x%x\n",
535 /* find Chipcommon address */
536 if (bustype
== PCI_BUS
) {
537 pci_read_config_dword(sii
->osh
->pdev
, PCI_BAR0_WIN
, &savewin
);
538 if (!GOODCOREADDR(savewin
, SI_ENUM_BASE
))
539 savewin
= SI_ENUM_BASE
;
540 pci_write_config_dword(sii
->osh
->pdev
, PCI_BAR0_WIN
,
542 cc
= (chipcregs_t
*) regs
;
544 cc
= (chipcregs_t
*) REG_MAP(SI_ENUM_BASE
, SI_CORE_SIZE
);
547 sih
->bustype
= bustype
;
549 /* bus/core/clk setup for register access */
550 if (!si_buscore_prep(sii
, bustype
, devid
, sdh
)) {
551 SI_ERROR(("si_doattach: si_core_clk_prep failed %d\n",
556 /* ChipID recognition.
557 * We assume we can read chipid at offset 0 from the regs arg.
558 * If we add other chiptypes (or if we need to support old sdio hosts w/o chipcommon),
559 * some way of recognizing them needs to be added here.
561 w
= R_REG(osh
, &cc
->chipid
);
562 sih
->socitype
= (w
& CID_TYPE_MASK
) >> CID_TYPE_SHIFT
;
563 /* Might as wll fill in chip id rev & pkg */
564 sih
->chip
= w
& CID_ID_MASK
;
565 sih
->chiprev
= (w
& CID_REV_MASK
) >> CID_REV_SHIFT
;
566 sih
->chippkg
= (w
& CID_PKG_MASK
) >> CID_PKG_SHIFT
;
568 sih
->issim
= IS_SIM(sih
->chippkg
);
571 if (sii
->pub
.socitype
== SOCI_AI
) {
572 SI_MSG(("Found chip type AI (0x%08x)\n", w
));
573 /* pass chipc address instead of original core base */
574 ai_scan(&sii
->pub
, (void *)cc
, devid
);
576 SI_ERROR(("Found chip of unknown type (0x%08x)\n", w
));
579 /* no cores found, bail out */
580 if (sii
->numcores
== 0) {
581 SI_ERROR(("si_doattach: could not find any cores\n"));
584 /* bus/core/clk setup */
586 if (!si_buscore_setup(sii
, cc
, bustype
, savewin
, &origidx
, regs
)) {
587 SI_ERROR(("si_doattach: si_buscore_setup failed\n"));
591 /* assume current core is CC */
592 if ((sii
->pub
.ccrev
== 0x25)
594 ((sih
->chip
== BCM43236_CHIP_ID
595 || sih
->chip
== BCM43235_CHIP_ID
596 || sih
->chip
== BCM43238_CHIP_ID
)
597 && (sii
->pub
.chiprev
<= 2))) {
599 if ((cc
->chipstatus
& CST43236_BP_CLK
) != 0) {
601 clkdiv
= R_REG(osh
, &cc
->clkdiv
);
602 /* otp_clk_div is even number, 120/14 < 9mhz */
603 clkdiv
= (clkdiv
& ~CLKD_OTP
) | (14 << CLKD_OTP_SHIFT
);
604 W_REG(osh
, &cc
->clkdiv
, clkdiv
);
605 SI_ERROR(("%s: set clkdiv to %x\n", __func__
, clkdiv
));
610 /* Init nvram from flash if it exists */
611 nvram_init((void *)&(sii
->pub
));
613 /* Init nvram from sprom/otp if they exist */
615 (&sii
->pub
, bustype
, regs
, sii
->osh
, vars
, varsz
)) {
616 SI_ERROR(("si_doattach: srom_var_init failed: bad srom\n"));
619 pvars
= vars
? *vars
: NULL
;
620 si_nvram_process(sii
, pvars
);
622 /* === NVRAM, clock is ready === */
623 cc
= (chipcregs_t
*) si_setcore(sih
, CC_CORE_ID
, 0);
624 W_REG(osh
, &cc
->gpiopullup
, 0);
625 W_REG(osh
, &cc
->gpiopulldown
, 0);
626 si_setcoreidx(sih
, origidx
);
628 /* PMU specific initializations */
629 if (PMUCTL_ENAB(sih
)) {
631 si_pmu_init(sih
, sii
->osh
);
632 si_pmu_chip_init(sih
, sii
->osh
);
633 xtalfreq
= getintvar(pvars
, "xtalfreq");
634 /* If xtalfreq var not available, try to measure it */
636 xtalfreq
= si_pmu_measure_alpclk(sih
, sii
->osh
);
637 si_pmu_pll_init(sih
, sii
->osh
, xtalfreq
);
638 si_pmu_res_init(sih
, sii
->osh
);
639 si_pmu_swreg_init(sih
, sii
->osh
);
642 /* setup the GPIO based LED powersave register */
643 w
= getintvar(pvars
, "leddc");
645 w
= DEFAULT_GPIOTIMERVAL
;
646 si_corereg(sih
, SI_CC_IDX
, offsetof(chipcregs_t
, gpiotimerval
), ~0, w
);
649 ASSERT(sii
->pch
!= NULL
);
650 pcicore_attach(sii
->pch
, pvars
, SI_DOATTACH
);
653 if ((sih
->chip
== BCM43224_CHIP_ID
) ||
654 (sih
->chip
== BCM43421_CHIP_ID
)) {
655 /* enable 12 mA drive strenth for 43224 and set chipControl register bit 15 */
656 if (sih
->chiprev
== 0) {
657 SI_MSG(("Applying 43224A0 WARs\n"));
658 si_corereg(sih
, SI_CC_IDX
,
659 offsetof(chipcregs_t
, chipcontrol
),
660 CCTRL43224_GPIO_TOGGLE
,
661 CCTRL43224_GPIO_TOGGLE
);
662 si_pmu_chipcontrol(sih
, 0, CCTRL_43224A0_12MA_LED_DRIVE
,
663 CCTRL_43224A0_12MA_LED_DRIVE
);
665 if (sih
->chiprev
>= 1) {
666 SI_MSG(("Applying 43224B0+ WARs\n"));
667 si_pmu_chipcontrol(sih
, 0, CCTRL_43224B0_12MA_LED_DRIVE
,
668 CCTRL_43224B0_12MA_LED_DRIVE
);
672 if (sih
->chip
== BCM4313_CHIP_ID
) {
673 /* enable 12 mA drive strenth for 4313 and set chipControl register bit 1 */
674 SI_MSG(("Applying 4313 WARs\n"));
675 si_pmu_chipcontrol(sih
, 0, CCTRL_4313_12MA_LED_DRIVE
,
676 CCTRL_4313_12MA_LED_DRIVE
);
679 if (sih
->chip
== BCM4331_CHIP_ID
) {
680 /* Enable Ext PA lines depending on chip package option */
681 si_chipcontrl_epa4331(sih
, true);
686 if (sih
->bustype
== PCI_BUS
) {
688 pcicore_deinit(sii
->pch
);
696 /* may be called with core in reset */
697 void si_detach(si_t
*sih
)
702 struct si_pub
*si_local
= NULL
;
703 bcopy(&sih
, &si_local
, sizeof(si_t
**));
710 if (sih
->bustype
== SI_BUS
)
711 for (idx
= 0; idx
< SI_MAXCORES
; idx
++)
712 if (sii
->regs
[idx
]) {
713 REG_UNMAP(sii
->regs
[idx
]);
714 sii
->regs
[idx
] = NULL
;
718 nvram_exit((void *)si_local
); /* free up nvram buffers */
720 if (sih
->bustype
== PCI_BUS
) {
722 pcicore_deinit(sii
->pch
);
726 #if !defined(BCMBUSTYPE) || (BCMBUSTYPE == SI_BUS)
728 #endif /* !BCMBUSTYPE || (BCMBUSTYPE == SI_BUS) */
732 void *si_osh(si_t
*sih
)
740 /* register driver interrupt disabling and restoring callback functions */
742 si_register_intr_callback(si_t
*sih
, void *intrsoff_fn
, void *intrsrestore_fn
,
743 void *intrsenabled_fn
, void *intr_arg
)
748 sii
->intr_arg
= intr_arg
;
749 sii
->intrsoff_fn
= (si_intrsoff_t
) intrsoff_fn
;
750 sii
->intrsrestore_fn
= (si_intrsrestore_t
) intrsrestore_fn
;
751 sii
->intrsenabled_fn
= (si_intrsenabled_t
) intrsenabled_fn
;
752 /* save current core id. when this function called, the current core
753 * must be the core which provides driver functions(il, et, wl, etc.)
755 sii
->dev_coreid
= sii
->coreid
[sii
->curidx
];
758 void si_deregister_intr_callback(si_t
*sih
)
763 sii
->intrsoff_fn
= NULL
;
766 uint
si_flag(si_t
*sih
)
768 if (sih
->socitype
== SOCI_AI
)
776 void si_setint(si_t
*sih
, int siflag
)
778 if (sih
->socitype
== SOCI_AI
)
779 ai_setint(sih
, siflag
);
785 uint
si_coreid(si_t
*sih
)
790 return sii
->coreid
[sii
->curidx
];
794 uint
si_coreidx(si_t
*sih
)
802 bool si_backplane64(si_t
*sih
)
804 return (sih
->cccaps
& CC_CAP_BKPLN64
) != 0;
808 uint
si_corerev(si_t
*sih
)
810 if (sih
->socitype
== SOCI_AI
)
811 return ai_corerev(sih
);
819 /* return index of coreid or BADIDX if not found */
820 uint
si_findcoreidx(si_t
*sih
, uint coreid
, uint coreunit
)
830 for (i
= 0; i
< sii
->numcores
; i
++)
831 if (sii
->coreid
[i
] == coreid
) {
832 if (found
== coreunit
)
841 * This function changes logical "focus" to the indicated core;
842 * must be called with interrupts off.
843 * Moreover, callers should keep interrupts off during switching out of and back to d11 core
845 void *si_setcore(si_t
*sih
, uint coreid
, uint coreunit
)
849 idx
= si_findcoreidx(sih
, coreid
, coreunit
);
853 if (sih
->socitype
== SOCI_AI
)
854 return ai_setcoreidx(sih
, idx
);
857 return sb_setcoreidx(sih
, idx
);
866 void *si_setcoreidx(si_t
*sih
, uint coreidx
)
868 if (sih
->socitype
== SOCI_AI
)
869 return ai_setcoreidx(sih
, coreidx
);
877 /* Turn off interrupt as required by sb_setcore, before switch core */
878 void *si_switch_core(si_t
*sih
, uint coreid
, uint
*origidx
, uint
*intr_val
)
886 /* Overloading the origidx variable to remember the coreid,
887 * this works because the core ids cannot be confused with
891 if (coreid
== CC_CORE_ID
)
892 return (void *)CCREGS_FAST(sii
);
893 else if (coreid
== sih
->buscoretype
)
894 return (void *)PCIEREGS(sii
);
896 INTR_OFF(sii
, *intr_val
);
897 *origidx
= sii
->curidx
;
898 cc
= si_setcore(sih
, coreid
, 0);
904 /* restore coreidx and restore interrupt */
905 void si_restore_core(si_t
*sih
, uint coreid
, uint intr_val
)
911 && ((coreid
== CC_CORE_ID
) || (coreid
== sih
->buscoretype
)))
914 si_setcoreidx(sih
, coreid
);
915 INTR_RESTORE(sii
, intr_val
);
918 u32
si_core_cflags(si_t
*sih
, u32 mask
, u32 val
)
920 if (sih
->socitype
== SOCI_AI
)
921 return ai_core_cflags(sih
, mask
, val
);
928 u32
si_core_sflags(si_t
*sih
, u32 mask
, u32 val
)
930 if (sih
->socitype
== SOCI_AI
)
931 return ai_core_sflags(sih
, mask
, val
);
938 bool si_iscoreup(si_t
*sih
)
940 if (sih
->socitype
== SOCI_AI
)
941 return ai_iscoreup(sih
);
944 return sb_iscoreup(sih
);
952 void si_write_wrapperreg(si_t
*sih
, u32 offset
, u32 val
)
954 /* only for 4319, no requirement for SOCI_SB */
955 if (sih
->socitype
== SOCI_AI
) {
956 ai_write_wrap_reg(sih
, offset
, val
);
960 uint
si_corereg(si_t
*sih
, uint coreidx
, uint regoff
, uint mask
, uint val
)
963 if (sih
->socitype
== SOCI_AI
)
964 return ai_corereg(sih
, coreidx
, regoff
, mask
, val
);
967 return sb_corereg(sih
, coreidx
, regoff
, mask
, val
);
975 void si_core_disable(si_t
*sih
, u32 bits
)
978 if (sih
->socitype
== SOCI_AI
)
979 ai_core_disable(sih
, bits
);
982 sb_core_disable(sih
, bits
);
986 void si_core_reset(si_t
*sih
, u32 bits
, u32 resetbits
)
988 if (sih
->socitype
== SOCI_AI
)
989 ai_core_reset(sih
, bits
, resetbits
);
992 sb_core_reset(sih
, bits
, resetbits
);
996 u32
si_alp_clock(si_t
*sih
)
998 if (PMUCTL_ENAB(sih
))
999 return si_pmu_alp_clock(sih
, si_osh(sih
));
1004 u32
si_ilp_clock(si_t
*sih
)
1006 if (PMUCTL_ENAB(sih
))
1007 return si_pmu_ilp_clock(sih
, si_osh(sih
));
1012 /* set chip watchdog reset timer to fire in 'ticks' */
1015 si_watchdog(si_t
*sih
, uint ticks
)
1017 if (PMUCTL_ENAB(sih
)) {
1019 if ((sih
->chip
== BCM4319_CHIP_ID
) && (sih
->chiprev
== 0) &&
1021 si_corereg(sih
, SI_CC_IDX
, offsetof(chipcregs_t
,
1022 clk_ctl_st
), ~0, 0x2);
1023 si_setcore(sih
, USB20D_CORE_ID
, 0);
1024 si_core_disable(sih
, 1);
1025 si_setcore(sih
, CC_CORE_ID
, 0);
1030 si_corereg(sih
, SI_CC_IDX
, offsetof(chipcregs_t
, pmuwatchdog
),
1034 si_corereg(sih
, SI_CC_IDX
, offsetof(chipcregs_t
, watchdog
),
1039 void si_watchdog(si_t
*sih
, uint ticks
)
1043 if (PMUCTL_ENAB(sih
)) {
1045 if ((sih
->chip
== BCM4319_CHIP_ID
) &&
1046 (sih
->chiprev
== 0) && (ticks
!= 0)) {
1047 si_corereg(sih
, SI_CC_IDX
,
1048 offsetof(chipcregs_t
, clk_ctl_st
), ~0, 0x2);
1049 si_setcore(sih
, USB20D_CORE_ID
, 0);
1050 si_core_disable(sih
, 1);
1051 si_setcore(sih
, CC_CORE_ID
, 0);
1054 nb
= (sih
->ccrev
< 26) ? 16 : ((sih
->ccrev
>= 37) ? 32 : 24);
1055 /* The mips compiler uses the sllv instruction,
1056 * so we specially handle the 32-bit case.
1061 maxt
= ((1 << nb
) - 1);
1065 else if (ticks
> maxt
)
1068 si_corereg(sih
, SI_CC_IDX
, offsetof(chipcregs_t
, pmuwatchdog
),
1071 /* make sure we come up in fast clock mode; or if clearing, clear clock */
1072 si_clkctl_cc(sih
, ticks
? CLK_FAST
: CLK_DYNAMIC
);
1073 maxt
= (1 << 28) - 1;
1077 si_corereg(sih
, SI_CC_IDX
, offsetof(chipcregs_t
, watchdog
), ~0,
1083 /* return the slow clock source - LPO, XTAL, or PCI */
1084 static uint
si_slowclk_src(si_info_t
*sii
)
1089 ASSERT(SI_FAST(sii
) || si_coreid(&sii
->pub
) == CC_CORE_ID
);
1091 if (sii
->pub
.ccrev
< 6) {
1092 if (sii
->pub
.bustype
== PCI_BUS
) {
1093 pci_read_config_dword(sii
->osh
->pdev
, PCI_GPIO_OUT
,
1095 if (val
& PCI_CFG_GPIO_SCS
)
1099 } else if (sii
->pub
.ccrev
< 10) {
1100 cc
= (chipcregs_t
*) si_setcoreidx(&sii
->pub
, sii
->curidx
);
1101 return R_REG(sii
->osh
, &cc
->slow_clk_ctl
) & SCC_SS_MASK
;
1102 } else /* Insta-clock */
1106 /* return the ILP (slowclock) min or max frequency */
1107 static uint
si_slowclk_freq(si_info_t
*sii
, bool max_freq
, chipcregs_t
*cc
)
1112 ASSERT(SI_FAST(sii
) || si_coreid(&sii
->pub
) == CC_CORE_ID
);
1114 /* shouldn't be here unless we've established the chip has dynamic clk control */
1115 ASSERT(R_REG(sii
->osh
, &cc
->capabilities
) & CC_CAP_PWR_CTL
);
1117 slowclk
= si_slowclk_src(sii
);
1118 if (sii
->pub
.ccrev
< 6) {
1119 if (slowclk
== SCC_SS_PCI
)
1120 return max_freq
? (PCIMAXFREQ
/ 64)
1121 : (PCIMINFREQ
/ 64);
1123 return max_freq
? (XTALMAXFREQ
/ 32)
1124 : (XTALMINFREQ
/ 32);
1125 } else if (sii
->pub
.ccrev
< 10) {
1127 (((R_REG(sii
->osh
, &cc
->slow_clk_ctl
) & SCC_CD_MASK
) >>
1129 if (slowclk
== SCC_SS_LPO
)
1130 return max_freq
? LPOMAXFREQ
: LPOMINFREQ
;
1131 else if (slowclk
== SCC_SS_XTAL
)
1132 return max_freq
? (XTALMAXFREQ
/ div
)
1133 : (XTALMINFREQ
/ div
);
1134 else if (slowclk
== SCC_SS_PCI
)
1135 return max_freq
? (PCIMAXFREQ
/ div
)
1136 : (PCIMINFREQ
/ div
);
1140 /* Chipc rev 10 is InstaClock */
1141 div
= R_REG(sii
->osh
, &cc
->system_clk_ctl
) >> SYCC_CD_SHIFT
;
1142 div
= 4 * (div
+ 1);
1143 return max_freq
? XTALMAXFREQ
: (XTALMINFREQ
/ div
);
1148 static void si_clkctl_setdelay(si_info_t
*sii
, void *chipcregs
)
1150 chipcregs_t
*cc
= (chipcregs_t
*) chipcregs
;
1151 uint slowmaxfreq
, pll_delay
, slowclk
;
1152 uint pll_on_delay
, fref_sel_delay
;
1154 pll_delay
= PLL_DELAY
;
1156 /* If the slow clock is not sourced by the xtal then add the xtal_on_delay
1157 * since the xtal will also be powered down by dynamic clk control logic.
1160 slowclk
= si_slowclk_src(sii
);
1161 if (slowclk
!= SCC_SS_XTAL
)
1162 pll_delay
+= XTAL_ON_DELAY
;
1164 /* Starting with 4318 it is ILP that is used for the delays */
1166 si_slowclk_freq(sii
, (sii
->pub
.ccrev
>= 10) ? false : true, cc
);
1168 pll_on_delay
= ((slowmaxfreq
* pll_delay
) + 999999) / 1000000;
1169 fref_sel_delay
= ((slowmaxfreq
* FREF_DELAY
) + 999999) / 1000000;
1171 W_REG(sii
->osh
, &cc
->pll_on_delay
, pll_on_delay
);
1172 W_REG(sii
->osh
, &cc
->fref_sel_delay
, fref_sel_delay
);
1175 /* initialize power control delay registers */
1176 void si_clkctl_init(si_t
*sih
)
1183 if (!CCCTL_ENAB(sih
))
1187 fast
= SI_FAST(sii
);
1189 origidx
= sii
->curidx
;
1190 cc
= (chipcregs_t
*) si_setcore(sih
, CC_CORE_ID
, 0);
1194 cc
= (chipcregs_t
*) CCREGS_FAST(sii
);
1200 /* set all Instaclk chip ILP to 1 MHz */
1201 if (sih
->ccrev
>= 10)
1202 SET_REG(sii
->osh
, &cc
->system_clk_ctl
, SYCC_CD_MASK
,
1203 (ILP_DIV_1MHZ
<< SYCC_CD_SHIFT
));
1205 si_clkctl_setdelay(sii
, (void *)cc
);
1208 si_setcoreidx(sih
, origidx
);
1211 /* return the value suitable for writing to the dot11 core FAST_PWRUP_DELAY register */
1212 u16
si_clkctl_fast_pwrup_delay(si_t
*sih
)
1223 if (PMUCTL_ENAB(sih
)) {
1224 INTR_OFF(sii
, intr_val
);
1225 fpdelay
= si_pmu_fast_pwrup_delay(sih
, sii
->osh
);
1226 INTR_RESTORE(sii
, intr_val
);
1230 if (!CCCTL_ENAB(sih
))
1233 fast
= SI_FAST(sii
);
1236 origidx
= sii
->curidx
;
1237 INTR_OFF(sii
, intr_val
);
1238 cc
= (chipcregs_t
*) si_setcore(sih
, CC_CORE_ID
, 0);
1242 cc
= (chipcregs_t
*) CCREGS_FAST(sii
);
1248 slowminfreq
= si_slowclk_freq(sii
, false, cc
);
1249 fpdelay
= (((R_REG(sii
->osh
, &cc
->pll_on_delay
) + 2) * 1000000) +
1250 (slowminfreq
- 1)) / slowminfreq
;
1254 si_setcoreidx(sih
, origidx
);
1255 INTR_RESTORE(sii
, intr_val
);
1260 /* turn primary xtal and/or pll off/on */
1261 int si_clkctl_xtal(si_t
*sih
, uint what
, bool on
)
1268 switch (sih
->bustype
) {
1273 #endif /* BCMSDIO */
1276 /* pcie core doesn't have any mapping to control the xtal pu */
1280 pci_read_config_dword(sii
->osh
->pdev
, PCI_GPIO_IN
, &in
);
1281 pci_read_config_dword(sii
->osh
->pdev
, PCI_GPIO_OUT
, &out
);
1282 pci_read_config_dword(sii
->osh
->pdev
, PCI_GPIO_OUTEN
, &outen
);
1285 * Avoid glitching the clock if GPRS is already using it.
1286 * We can't actually read the state of the PLLPD so we infer it
1287 * by the value of XTAL_PU which *is* readable via gpioin.
1289 if (on
&& (in
& PCI_CFG_GPIO_XTAL
))
1293 outen
|= PCI_CFG_GPIO_XTAL
;
1295 outen
|= PCI_CFG_GPIO_PLL
;
1298 /* turn primary xtal on */
1300 out
|= PCI_CFG_GPIO_XTAL
;
1302 out
|= PCI_CFG_GPIO_PLL
;
1303 pci_write_config_dword(sii
->osh
->pdev
,
1305 pci_write_config_dword(sii
->osh
->pdev
,
1306 PCI_GPIO_OUTEN
, outen
);
1307 udelay(XTAL_ON_DELAY
);
1312 out
&= ~PCI_CFG_GPIO_PLL
;
1313 pci_write_config_dword(sii
->osh
->pdev
,
1319 out
&= ~PCI_CFG_GPIO_XTAL
;
1321 out
|= PCI_CFG_GPIO_PLL
;
1322 pci_write_config_dword(sii
->osh
->pdev
,
1324 pci_write_config_dword(sii
->osh
->pdev
,
1325 PCI_GPIO_OUTEN
, outen
);
1336 * clock control policy function throught chipcommon
1338 * set dynamic clk control mode (forceslow, forcefast, dynamic)
1339 * returns true if we are forcing fast clock
1340 * this is a wrapper over the next internal function
1341 * to allow flexible policy settings for outside caller
1343 bool si_clkctl_cc(si_t
*sih
, uint mode
)
1349 /* chipcommon cores prior to rev6 don't support dynamic clock control */
1353 if (PCI_FORCEHT(sii
))
1354 return mode
== CLK_FAST
;
1356 return _si_clkctl_cc(sii
, mode
);
1359 /* clk control mechanism through chipcommon, no policy checking */
1360 static bool _si_clkctl_cc(si_info_t
*sii
, uint mode
)
1366 bool fast
= SI_FAST(sii
);
1368 /* chipcommon cores prior to rev6 don't support dynamic clock control */
1369 if (sii
->pub
.ccrev
< 6)
1372 /* Chips with ccrev 10 are EOL and they don't have SYCC_HR which we use below */
1373 ASSERT(sii
->pub
.ccrev
!= 10);
1376 INTR_OFF(sii
, intr_val
);
1377 origidx
= sii
->curidx
;
1379 if ((sii
->pub
.bustype
== SI_BUS
) &&
1380 si_setcore(&sii
->pub
, MIPS33_CORE_ID
, 0) &&
1381 (si_corerev(&sii
->pub
) <= 7) && (sii
->pub
.ccrev
>= 10))
1384 cc
= (chipcregs_t
*) si_setcore(&sii
->pub
, CC_CORE_ID
, 0);
1386 cc
= (chipcregs_t
*) CCREGS_FAST(sii
);
1392 if (!CCCTL_ENAB(&sii
->pub
) && (sii
->pub
.ccrev
< 20))
1396 case CLK_FAST
: /* FORCEHT, fast (pll) clock */
1397 if (sii
->pub
.ccrev
< 10) {
1398 /* don't forget to force xtal back on before we clear SCC_DYN_XTAL.. */
1399 si_clkctl_xtal(&sii
->pub
, XTAL
, ON
);
1400 SET_REG(sii
->osh
, &cc
->slow_clk_ctl
,
1401 (SCC_XC
| SCC_FS
| SCC_IP
), SCC_IP
);
1402 } else if (sii
->pub
.ccrev
< 20) {
1403 OR_REG(sii
->osh
, &cc
->system_clk_ctl
, SYCC_HR
);
1405 OR_REG(sii
->osh
, &cc
->clk_ctl_st
, CCS_FORCEHT
);
1408 /* wait for the PLL */
1409 if (PMUCTL_ENAB(&sii
->pub
)) {
1410 u32 htavail
= CCS_HTAVAIL
;
1411 SPINWAIT(((R_REG(sii
->osh
, &cc
->clk_ctl_st
) & htavail
)
1412 == 0), PMU_MAX_TRANSITION_DLY
);
1413 ASSERT(R_REG(sii
->osh
, &cc
->clk_ctl_st
) & htavail
);
1419 case CLK_DYNAMIC
: /* enable dynamic clock control */
1420 if (sii
->pub
.ccrev
< 10) {
1421 scc
= R_REG(sii
->osh
, &cc
->slow_clk_ctl
);
1422 scc
&= ~(SCC_FS
| SCC_IP
| SCC_XC
);
1423 if ((scc
& SCC_SS_MASK
) != SCC_SS_XTAL
)
1425 W_REG(sii
->osh
, &cc
->slow_clk_ctl
, scc
);
1427 /* for dynamic control, we have to release our xtal_pu "force on" */
1429 si_clkctl_xtal(&sii
->pub
, XTAL
, OFF
);
1430 } else if (sii
->pub
.ccrev
< 20) {
1432 AND_REG(sii
->osh
, &cc
->system_clk_ctl
, ~SYCC_HR
);
1434 AND_REG(sii
->osh
, &cc
->clk_ctl_st
, ~CCS_FORCEHT
);
1444 si_setcoreidx(&sii
->pub
, origidx
);
1445 INTR_RESTORE(sii
, intr_val
);
1447 return mode
== CLK_FAST
;
1450 /* Build device path. Support SI, PCI, and JTAG for now. */
1451 int si_devpath(si_t
*sih
, char *path
, int size
)
1455 ASSERT(path
!= NULL
);
1456 ASSERT(size
>= SI_DEVPATH_BUFSZ
);
1458 if (!path
|| size
<= 0)
1461 switch (sih
->bustype
) {
1464 slen
= snprintf(path
, (size_t) size
, "sb/%u/", si_coreidx(sih
));
1467 ASSERT((SI_INFO(sih
))->osh
!= NULL
);
1468 slen
= snprintf(path
, (size_t) size
, "pci/%u/%u/",
1469 OSL_PCI_BUS((SI_INFO(sih
))->osh
),
1470 OSL_PCI_SLOT((SI_INFO(sih
))->osh
));
1475 SI_ERROR(("si_devpath: device 0 assumed\n"));
1476 slen
= snprintf(path
, (size_t) size
, "sd/%u/", si_coreidx(sih
));
1485 if (slen
< 0 || slen
>= size
) {
1493 /* Get a variable, but only if it has a devpath prefix */
1494 char *si_getdevpathvar(si_t
*sih
, const char *name
)
1496 char varname
[SI_DEVPATH_BUFSZ
+ 32];
1498 si_devpathvar(sih
, varname
, sizeof(varname
), name
);
1500 return getvar(NULL
, varname
);
1503 /* Get a variable, but only if it has a devpath prefix */
1504 int si_getdevpathintvar(si_t
*sih
, const char *name
)
1506 #if defined(BCMBUSTYPE) && (BCMBUSTYPE == SI_BUS)
1507 return getintvar(NULL
, name
);
1509 char varname
[SI_DEVPATH_BUFSZ
+ 32];
1511 si_devpathvar(sih
, varname
, sizeof(varname
), name
);
1513 return getintvar(NULL
, varname
);
1517 char *si_getnvramflvar(si_t
*sih
, const char *name
)
1519 return getvar(NULL
, name
);
1522 /* Concatenate the dev path with a varname into the given 'var' buffer
1523 * and return the 'var' pointer.
1524 * Nothing is done to the arguments if len == 0 or var is NULL, var is still returned.
1525 * On overflow, the first char will be set to '\0'.
1527 static char *si_devpathvar(si_t
*sih
, char *var
, int len
, const char *name
)
1531 if (!var
|| len
<= 0)
1534 if (si_devpath(sih
, var
, len
) == 0) {
1535 path_len
= strlen(var
);
1537 if (strlen(name
) + 1 > (uint
) (len
- path_len
))
1540 strncpy(var
+ path_len
, name
, len
- path_len
- 1);
1546 /* return true if PCIE capability exists in the pci config space */
1547 static __used
bool si_ispcie(si_info_t
*sii
)
1551 if (sii
->pub
.bustype
!= PCI_BUS
)
1555 pcicore_find_pci_capability(sii
->osh
, PCI_CAP_PCIECAP_ID
, NULL
,
1564 /* initialize the sdio core */
1565 void si_sdio_init(si_t
*sih
)
1567 si_info_t
*sii
= SI_INFO(sih
);
1569 if (((sih
->buscoretype
== PCMCIA_CORE_ID
) && (sih
->buscorerev
>= 8)) ||
1570 (sih
->buscoretype
== SDIOD_CORE_ID
)) {
1572 sdpcmd_regs_t
*sdpregs
;
1574 /* get the current core index */
1576 ASSERT(idx
== si_findcoreidx(sih
, D11_CORE_ID
, 0));
1578 /* switch to sdio core */
1579 sdpregs
= (sdpcmd_regs_t
*) si_setcore(sih
, PCMCIA_CORE_ID
, 0);
1582 (sdpcmd_regs_t
*) si_setcore(sih
, SDIOD_CORE_ID
, 0);
1585 SI_MSG(("si_sdio_init: For PCMCIA/SDIO Corerev %d, enable ints from core %d " "through SD core %d (%p)\n", sih
->buscorerev
, idx
, sii
->curidx
, sdpregs
));
1587 /* enable backplane error and core interrupts */
1588 W_REG(sii
->osh
, &sdpregs
->hostintmask
, I_SBINT
);
1589 W_REG(sii
->osh
, &sdpregs
->sbintmask
,
1590 (I_SB_SERR
| I_SB_RESPERR
| (1 << idx
)));
1592 /* switch back to previous core */
1593 si_setcoreidx(sih
, idx
);
1596 /* enable interrupts */
1597 bcmsdh_intr_enable(sii
->sdh
);
1600 #endif /* BCMSDIO */
1602 bool si_pci_war16165(si_t
*sih
)
1608 return PCI(sii
) && (sih
->buscorerev
<= 10);
1611 void si_pci_up(si_t
*sih
)
1617 /* if not pci bus, we're done */
1618 if (sih
->bustype
!= PCI_BUS
)
1621 if (PCI_FORCEHT(sii
))
1622 _si_clkctl_cc(sii
, CLK_FAST
);
1625 pcicore_up(sii
->pch
, SI_PCIUP
);
1629 /* Unconfigure and/or apply various WARs when system is going to sleep mode */
1630 void si_pci_sleep(si_t
*sih
)
1636 pcicore_sleep(sii
->pch
);
1639 /* Unconfigure and/or apply various WARs when going down */
1640 void si_pci_down(si_t
*sih
)
1646 /* if not pci bus, we're done */
1647 if (sih
->bustype
!= PCI_BUS
)
1650 /* release FORCEHT since chip is going to "down" state */
1651 if (PCI_FORCEHT(sii
))
1652 _si_clkctl_cc(sii
, CLK_DYNAMIC
);
1654 pcicore_down(sii
->pch
, SI_PCIDOWN
);
1658 * Configure the pci core for pci client (NIC) action
1659 * coremask is the bitvec of cores by index to be enabled.
1661 void si_pci_setup(si_t
*sih
, uint coremask
)
1664 struct sbpciregs
*pciregs
= NULL
;
1670 if (sii
->pub
.bustype
!= PCI_BUS
)
1673 ASSERT(PCI(sii
) || PCIE(sii
));
1674 ASSERT(sii
->pub
.buscoreidx
!= BADIDX
);
1677 /* get current core index */
1680 /* we interrupt on this backplane flag number */
1681 siflag
= si_flag(sih
);
1683 /* switch over to pci core */
1684 pciregs
= (struct sbpciregs
*)si_setcoreidx(sih
, sii
->pub
.buscoreidx
);
1688 * Enable sb->pci interrupts. Assume
1689 * PCI rev 2.3 support was added in pci core rev 6 and things changed..
1691 if (PCIE(sii
) || (PCI(sii
) && ((sii
->pub
.buscorerev
) >= 6))) {
1692 /* pci config write to set this core bit in PCIIntMask */
1693 pci_read_config_dword(sii
->osh
->pdev
, PCI_INT_MASK
, &w
);
1694 w
|= (coremask
<< PCI_SBIM_SHIFT
);
1695 pci_write_config_dword(sii
->osh
->pdev
, PCI_INT_MASK
, w
);
1697 /* set sbintvec bit for our flag number */
1698 si_setint(sih
, siflag
);
1702 OR_REG(sii
->osh
, &pciregs
->sbtopci2
,
1703 (SBTOPCI_PREF
| SBTOPCI_BURST
));
1704 if (sii
->pub
.buscorerev
>= 11) {
1705 OR_REG(sii
->osh
, &pciregs
->sbtopci2
,
1706 SBTOPCI_RC_READMULTI
);
1707 w
= R_REG(sii
->osh
, &pciregs
->clkrun
);
1708 W_REG(sii
->osh
, &pciregs
->clkrun
,
1709 (w
| PCI_CLKRUN_DSBL
));
1710 w
= R_REG(sii
->osh
, &pciregs
->clkrun
);
1713 /* switch back to previous core */
1714 si_setcoreidx(sih
, idx
);
1719 * Fixup SROMless PCI device's configuration.
1720 * The current core may be changed upon return.
1722 int si_pci_fixcfg(si_t
*sih
)
1724 uint origidx
, pciidx
;
1725 struct sbpciregs
*pciregs
= NULL
;
1726 sbpcieregs_t
*pcieregs
= NULL
;
1728 u16 val16
, *reg16
= NULL
;
1730 si_info_t
*sii
= SI_INFO(sih
);
1732 ASSERT(sii
->pub
.bustype
== PCI_BUS
);
1734 /* Fixup PI in SROM shadow area to enable the correct PCI core access */
1735 /* save the current index */
1736 origidx
= si_coreidx(&sii
->pub
);
1738 /* check 'pi' is correct and fix it if not */
1739 if (sii
->pub
.buscoretype
== PCIE_CORE_ID
) {
1741 (sbpcieregs_t
*) si_setcore(&sii
->pub
, PCIE_CORE_ID
, 0);
1743 ASSERT(pcieregs
!= NULL
);
1744 reg16
= &pcieregs
->sprom
[SRSH_PI_OFFSET
];
1745 } else if (sii
->pub
.buscoretype
== PCI_CORE_ID
) {
1746 pciregs
= (struct sbpciregs
*)si_setcore(&sii
->pub
, PCI_CORE_ID
, 0);
1748 ASSERT(pciregs
!= NULL
);
1749 reg16
= &pciregs
->sprom
[SRSH_PI_OFFSET
];
1751 pciidx
= si_coreidx(&sii
->pub
);
1752 val16
= R_REG(sii
->osh
, reg16
);
1753 if (((val16
& SRSH_PI_MASK
) >> SRSH_PI_SHIFT
) != (u16
) pciidx
) {
1755 (u16
) (pciidx
<< SRSH_PI_SHIFT
) | (val16
&
1757 W_REG(sii
->osh
, reg16
, val16
);
1760 /* restore the original index */
1761 si_setcoreidx(&sii
->pub
, origidx
);
1763 pcicore_hwup(sii
->pch
);
1767 /* mask&set gpiocontrol bits */
1768 u32
si_gpiocontrol(si_t
*sih
, u32 mask
, u32 val
, u8 priority
)
1774 /* gpios could be shared on router platforms
1775 * ignore reservation if it's high priority (e.g., test apps)
1777 if ((priority
!= GPIO_HI_PRIORITY
) &&
1778 (sih
->bustype
== SI_BUS
) && (val
|| mask
)) {
1779 mask
= priority
? (si_gpioreservation
& mask
) :
1780 ((si_gpioreservation
| mask
) & ~(si_gpioreservation
));
1784 regoff
= offsetof(chipcregs_t
, gpiocontrol
);
1785 return si_corereg(sih
, SI_CC_IDX
, regoff
, mask
, val
);
1788 /* Return the size of the specified SOCRAM bank */
1790 socram_banksize(si_info_t
*sii
, sbsocramregs_t
*regs
, u8 index
,
1793 uint banksize
, bankinfo
;
1794 uint bankidx
= index
| (mem_type
<< SOCRAM_BANKIDX_MEMTYPE_SHIFT
);
1796 ASSERT(mem_type
<= SOCRAM_MEMTYPE_DEVRAM
);
1798 W_REG(sii
->osh
, ®s
->bankidx
, bankidx
);
1799 bankinfo
= R_REG(sii
->osh
, ®s
->bankinfo
);
1801 SOCRAM_BANKINFO_SZBASE
* ((bankinfo
& SOCRAM_BANKINFO_SZMASK
) + 1);
1805 /* Return the RAM size of the SOCRAM core */
1806 u32
si_socram_size(si_t
*sih
)
1812 sbsocramregs_t
*regs
;
1820 /* Block ints and save current core */
1821 INTR_OFF(sii
, intr_val
);
1822 origidx
= si_coreidx(sih
);
1824 /* Switch to SOCRAM core */
1825 regs
= si_setcore(sih
, SOCRAM_CORE_ID
, 0);
1829 /* Get info for determining size */
1830 wasup
= si_iscoreup(sih
);
1832 si_core_reset(sih
, 0, 0);
1833 corerev
= si_corerev(sih
);
1834 coreinfo
= R_REG(sii
->osh
, ®s
->coreinfo
);
1836 /* Calculate size from coreinfo based on rev */
1838 memsize
= 1 << (16 + (coreinfo
& SRCI_MS0_MASK
));
1839 else if (corerev
< 3) {
1840 memsize
= 1 << (SR_BSZ_BASE
+ (coreinfo
& SRCI_SRBSZ_MASK
));
1841 memsize
*= (coreinfo
& SRCI_SRNB_MASK
) >> SRCI_SRNB_SHIFT
;
1842 } else if ((corerev
<= 7) || (corerev
== 12)) {
1843 uint nb
= (coreinfo
& SRCI_SRNB_MASK
) >> SRCI_SRNB_SHIFT
;
1844 uint bsz
= (coreinfo
& SRCI_SRBSZ_MASK
);
1845 uint lss
= (coreinfo
& SRCI_LSS_MASK
) >> SRCI_LSS_SHIFT
;
1848 memsize
= nb
* (1 << (bsz
+ SR_BSZ_BASE
));
1850 memsize
+= (1 << ((lss
- 1) + SR_BSZ_BASE
));
1853 uint nb
= (coreinfo
& SRCI_SRNB_MASK
) >> SRCI_SRNB_SHIFT
;
1854 for (i
= 0; i
< nb
; i
++)
1856 socram_banksize(sii
, regs
, i
, SOCRAM_MEMTYPE_RAM
);
1859 /* Return to previous state and core */
1861 si_core_disable(sih
, 0);
1862 si_setcoreidx(sih
, origidx
);
1865 INTR_RESTORE(sii
, intr_val
);
1870 void si_chipcontrl_epa4331(si_t
*sih
, bool on
)
1878 origidx
= si_coreidx(sih
);
1880 cc
= (chipcregs_t
*) si_setcore(sih
, CC_CORE_ID
, 0);
1882 val
= R_REG(sii
->osh
, &cc
->chipcontrol
);
1885 if (sih
->chippkg
== 9 || sih
->chippkg
== 0xb) {
1886 /* Ext PA Controls for 4331 12x9 Package */
1887 W_REG(sii
->osh
, &cc
->chipcontrol
, val
|
1888 (CCTRL4331_EXTPA_EN
|
1889 CCTRL4331_EXTPA_ON_GPIO2_5
));
1891 /* Ext PA Controls for 4331 12x12 Package */
1892 W_REG(sii
->osh
, &cc
->chipcontrol
,
1893 val
| (CCTRL4331_EXTPA_EN
));
1896 val
&= ~(CCTRL4331_EXTPA_EN
| CCTRL4331_EXTPA_ON_GPIO2_5
);
1897 W_REG(sii
->osh
, &cc
->chipcontrol
, val
);
1900 si_setcoreidx(sih
, origidx
);
1903 /* Enable BT-COEX & Ex-PA for 4313 */
1904 void si_epa_4313war(si_t
*sih
)
1911 origidx
= si_coreidx(sih
);
1913 cc
= (chipcregs_t
*) si_setcore(sih
, CC_CORE_ID
, 0);
1916 W_REG(sii
->osh
, &cc
->gpiocontrol
,
1917 R_REG(sii
->osh
, &cc
->gpiocontrol
) | GPIO_CTRL_EPA_EN_MASK
);
1919 si_setcoreidx(sih
, origidx
);
1922 /* check if the device is removed */
1923 bool si_deviceremoved(si_t
*sih
)
1930 switch (sih
->bustype
) {
1932 ASSERT(sii
->osh
!= NULL
);
1933 pci_read_config_dword(sii
->osh
->pdev
, PCI_CFG_VID
, &w
);
1934 if ((w
& 0xFFFF) != VENDOR_BROADCOM
)
1941 bool si_is_sprom_available(si_t
*sih
)
1943 if (sih
->ccrev
>= 31) {
1949 if ((sih
->cccaps
& CC_CAP_SROM
) == 0)
1953 origidx
= sii
->curidx
;
1954 cc
= si_setcoreidx(sih
, SI_CC_IDX
);
1955 sromctrl
= R_REG(sii
->osh
, &cc
->sromcontrol
);
1956 si_setcoreidx(sih
, origidx
);
1957 return sromctrl
& SRC_PRESENT
;
1960 switch (sih
->chip
) {
1961 case BCM4329_CHIP_ID
:
1962 return (sih
->chipst
& CST4329_SPROM_SEL
) != 0;
1963 case BCM4319_CHIP_ID
:
1964 return (sih
->chipst
& CST4319_SPROM_SEL
) != 0;
1965 case BCM4336_CHIP_ID
:
1966 return (sih
->chipst
& CST4336_SPROM_PRESENT
) != 0;
1967 case BCM4330_CHIP_ID
:
1968 return (sih
->chipst
& CST4330_SPROM_PRESENT
) != 0;
1969 case BCM4313_CHIP_ID
:
1970 return (sih
->chipst
& CST4313_SPROM_PRESENT
) != 0;
1971 case BCM4331_CHIP_ID
:
1972 return (sih
->chipst
& CST4331_SPROM_PRESENT
) != 0;
1978 bool si_is_otp_disabled(si_t
*sih
)
1980 switch (sih
->chip
) {
1981 case BCM4329_CHIP_ID
:
1982 return (sih
->chipst
& CST4329_SPROM_OTP_SEL_MASK
) ==
1984 case BCM4319_CHIP_ID
:
1985 return (sih
->chipst
& CST4319_SPROM_OTP_SEL_MASK
) ==
1987 case BCM4336_CHIP_ID
:
1988 return (sih
->chipst
& CST4336_OTP_PRESENT
) == 0;
1989 case BCM4330_CHIP_ID
:
1990 return (sih
->chipst
& CST4330_OTP_PRESENT
) == 0;
1991 case BCM4313_CHIP_ID
:
1992 return (sih
->chipst
& CST4313_OTP_PRESENT
) == 0;
1993 /* These chips always have their OTP on */
1994 case BCM43224_CHIP_ID
:
1995 case BCM43225_CHIP_ID
:
1996 case BCM43421_CHIP_ID
:
1997 case BCM43235_CHIP_ID
:
1998 case BCM43236_CHIP_ID
:
1999 case BCM43238_CHIP_ID
:
2000 case BCM4331_CHIP_ID
:
2006 bool si_is_otp_powered(si_t
*sih
)
2008 if (PMUCTL_ENAB(sih
))
2009 return si_pmu_is_otp_powered(sih
, si_osh(sih
));
2013 void si_otp_power(si_t
*sih
, bool on
)
2015 if (PMUCTL_ENAB(sih
))
2016 si_pmu_otp_power(sih
, si_osh(sih
), on
);