2 * Broadcom specific AMBA
3 * ChipCommon core driver
5 * Copyright 2005, Broadcom Corporation
6 * Copyright 2006, 2007, Michael Buesch <m@bues.ch>
7 * Copyright 2012, Hauke Mehrtens <hauke@hauke-m.de>
9 * Licensed under the GNU/GPL. See COPYING for details.
12 #include "bcma_private.h"
13 #include <linux/bcm47xx_wdt.h>
14 #include <linux/export.h>
15 #include <linux/platform_device.h>
16 #include <linux/bcma/bcma.h>
18 static inline u32
bcma_cc_write32_masked(struct bcma_drv_cc
*cc
, u16 offset
,
22 value
|= bcma_cc_read32(cc
, offset
) & ~mask
;
23 bcma_cc_write32(cc
, offset
, value
);
28 u32
bcma_chipco_get_alp_clock(struct bcma_drv_cc
*cc
)
30 if (cc
->capabilities
& BCMA_CC_CAP_PMU
)
31 return bcma_pmu_get_alp_clock(cc
);
35 EXPORT_SYMBOL_GPL(bcma_chipco_get_alp_clock
);
37 static bool bcma_core_cc_has_pmu_watchdog(struct bcma_drv_cc
*cc
)
39 struct bcma_bus
*bus
= cc
->core
->bus
;
41 if (cc
->capabilities
& BCMA_CC_CAP_PMU
) {
42 if (bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM53573
) {
43 WARN(bus
->chipinfo
.rev
<= 1, "No watchdog available\n");
44 /* 53573B0 and 53573B1 have bugged PMU watchdog. It can
45 * be enabled but timer can't be bumped. Use CC one
56 static u32
bcma_chipco_watchdog_get_max_timer(struct bcma_drv_cc
*cc
)
58 struct bcma_bus
*bus
= cc
->core
->bus
;
61 if (bcma_core_cc_has_pmu_watchdog(cc
)) {
62 if (bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
)
64 else if (cc
->core
->id
.rev
< 26)
67 nb
= (cc
->core
->id
.rev
>= 37) ? 32 : 24;
77 static u32
bcma_chipco_watchdog_timer_set_wdt(struct bcm47xx_wdt
*wdt
,
80 struct bcma_drv_cc
*cc
= bcm47xx_wdt_get_drvdata(wdt
);
82 return bcma_chipco_watchdog_timer_set(cc
, ticks
);
85 static u32
bcma_chipco_watchdog_timer_set_ms_wdt(struct bcm47xx_wdt
*wdt
,
88 struct bcma_drv_cc
*cc
= bcm47xx_wdt_get_drvdata(wdt
);
91 ticks
= bcma_chipco_watchdog_timer_set(cc
, cc
->ticks_per_ms
* ms
);
92 return ticks
/ cc
->ticks_per_ms
;
95 static int bcma_chipco_watchdog_ticks_per_ms(struct bcma_drv_cc
*cc
)
97 struct bcma_bus
*bus
= cc
->core
->bus
;
99 if (cc
->capabilities
& BCMA_CC_CAP_PMU
) {
100 if (bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
)
101 /* 4706 CC and PMU watchdogs are clocked at 1/4 of ALP
104 return bcma_chipco_get_alp_clock(cc
) / 4000;
106 /* based on 32KHz ILP clock */
109 return bcma_chipco_get_alp_clock(cc
) / 1000;
113 int bcma_chipco_watchdog_register(struct bcma_drv_cc
*cc
)
115 struct bcma_bus
*bus
= cc
->core
->bus
;
116 struct bcm47xx_wdt wdt
= {};
117 struct platform_device
*pdev
;
119 if (bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM53573
&&
120 bus
->chipinfo
.rev
<= 1) {
121 pr_debug("No watchdog on 53573A0 / 53573A1\n");
125 wdt
.driver_data
= cc
;
126 wdt
.timer_set
= bcma_chipco_watchdog_timer_set_wdt
;
127 wdt
.timer_set_ms
= bcma_chipco_watchdog_timer_set_ms_wdt
;
129 bcma_chipco_watchdog_get_max_timer(cc
) / cc
->ticks_per_ms
;
131 pdev
= platform_device_register_data(NULL
, "bcm47xx-wdt",
135 return PTR_ERR(pdev
);
142 static void bcma_core_chipcommon_flash_detect(struct bcma_drv_cc
*cc
)
144 struct bcma_bus
*bus
= cc
->core
->bus
;
146 switch (cc
->capabilities
& BCMA_CC_CAP_FLASHT
) {
147 case BCMA_CC_FLASHT_STSER
:
148 case BCMA_CC_FLASHT_ATSER
:
149 bcma_debug(bus
, "Found serial flash\n");
150 bcma_sflash_init(cc
);
152 case BCMA_CC_FLASHT_PARA
:
153 bcma_debug(bus
, "Found parallel flash\n");
154 bcma_pflash_init(cc
);
157 bcma_err(bus
, "Flash type not supported\n");
160 if (cc
->core
->id
.rev
== 38 ||
161 bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
) {
162 if (cc
->capabilities
& BCMA_CC_CAP_NFLASH
) {
163 bcma_debug(bus
, "Found NAND flash\n");
164 bcma_nflash_init(cc
);
169 void bcma_core_chipcommon_early_init(struct bcma_drv_cc
*cc
)
171 struct bcma_bus
*bus
= cc
->core
->bus
;
173 if (cc
->early_setup_done
)
176 spin_lock_init(&cc
->gpio_lock
);
178 if (cc
->core
->id
.rev
>= 11)
179 cc
->status
= bcma_cc_read32(cc
, BCMA_CC_CHIPSTAT
);
180 cc
->capabilities
= bcma_cc_read32(cc
, BCMA_CC_CAP
);
181 if (cc
->core
->id
.rev
>= 35)
182 cc
->capabilities_ext
= bcma_cc_read32(cc
, BCMA_CC_CAP_EXT
);
184 if (cc
->capabilities
& BCMA_CC_CAP_PMU
)
185 bcma_pmu_early_init(cc
);
187 if (bus
->hosttype
== BCMA_HOSTTYPE_SOC
)
188 bcma_core_chipcommon_flash_detect(cc
);
190 cc
->early_setup_done
= true;
193 void bcma_core_chipcommon_init(struct bcma_drv_cc
*cc
)
201 bcma_core_chipcommon_early_init(cc
);
203 if (cc
->core
->id
.rev
>= 20) {
204 u32 pullup
= 0, pulldown
= 0;
206 if (cc
->core
->bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM43142
) {
211 bcma_cc_write32(cc
, BCMA_CC_GPIOPULLUP
, pullup
);
212 bcma_cc_write32(cc
, BCMA_CC_GPIOPULLDOWN
, pulldown
);
215 if (cc
->capabilities
& BCMA_CC_CAP_PMU
)
217 if (cc
->capabilities
& BCMA_CC_CAP_PCTL
)
218 bcma_err(cc
->core
->bus
, "Power control not implemented!\n");
220 if (cc
->core
->id
.rev
>= 16) {
221 if (cc
->core
->bus
->sprom
.leddc_on_time
&&
222 cc
->core
->bus
->sprom
.leddc_off_time
) {
223 leddc_on
= cc
->core
->bus
->sprom
.leddc_on_time
;
224 leddc_off
= cc
->core
->bus
->sprom
.leddc_off_time
;
226 bcma_cc_write32(cc
, BCMA_CC_GPIOTIMER
,
227 ((leddc_on
<< BCMA_CC_GPIOTIMER_ONTIME_SHIFT
) |
228 (leddc_off
<< BCMA_CC_GPIOTIMER_OFFTIME_SHIFT
)));
230 cc
->ticks_per_ms
= bcma_chipco_watchdog_ticks_per_ms(cc
);
232 cc
->setup_done
= true;
235 /* Set chip watchdog reset timer to fire in 'ticks' backplane cycles */
236 u32
bcma_chipco_watchdog_timer_set(struct bcma_drv_cc
*cc
, u32 ticks
)
240 maxt
= bcma_chipco_watchdog_get_max_timer(cc
);
241 if (bcma_core_cc_has_pmu_watchdog(cc
)) {
244 else if (ticks
> maxt
)
246 bcma_pmu_write32(cc
, BCMA_CC_PMU_WATCHDOG
, ticks
);
248 struct bcma_bus
*bus
= cc
->core
->bus
;
250 if (bus
->chipinfo
.id
!= BCMA_CHIP_ID_BCM4707
&&
251 bus
->chipinfo
.id
!= BCMA_CHIP_ID_BCM47094
&&
252 bus
->chipinfo
.id
!= BCMA_CHIP_ID_BCM53018
)
253 bcma_core_set_clockmode(cc
->core
,
254 ticks
? BCMA_CLKMODE_FAST
: BCMA_CLKMODE_DYNAMIC
);
259 bcma_cc_write32(cc
, BCMA_CC_WATCHDOG
, ticks
);
264 void bcma_chipco_irq_mask(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
266 bcma_cc_write32_masked(cc
, BCMA_CC_IRQMASK
, mask
, value
);
269 u32
bcma_chipco_irq_status(struct bcma_drv_cc
*cc
, u32 mask
)
271 return bcma_cc_read32(cc
, BCMA_CC_IRQSTAT
) & mask
;
274 u32
bcma_chipco_gpio_in(struct bcma_drv_cc
*cc
, u32 mask
)
276 return bcma_cc_read32(cc
, BCMA_CC_GPIOIN
) & mask
;
279 u32
bcma_chipco_gpio_out(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
284 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
285 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOOUT
, mask
, value
);
286 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
290 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_out
);
292 u32
bcma_chipco_gpio_outen(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
297 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
298 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOOUTEN
, mask
, value
);
299 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
303 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_outen
);
306 * If the bit is set to 0, chipcommon controlls this GPIO,
307 * if the bit is set to 1, it is used by some part of the chip and not our code.
309 u32
bcma_chipco_gpio_control(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
314 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
315 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOCTL
, mask
, value
);
316 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
320 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_control
);
322 u32
bcma_chipco_gpio_intmask(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
327 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
328 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOIRQ
, mask
, value
);
329 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
334 u32
bcma_chipco_gpio_polarity(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
339 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
340 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPOL
, mask
, value
);
341 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
346 u32
bcma_chipco_gpio_pullup(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
351 if (cc
->core
->id
.rev
< 20)
354 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
355 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPULLUP
, mask
, value
);
356 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
361 u32
bcma_chipco_gpio_pulldown(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
366 if (cc
->core
->id
.rev
< 20)
369 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
370 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPULLDOWN
, mask
, value
);
371 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
376 #ifdef CONFIG_BCMA_DRIVER_MIPS
377 void bcma_chipco_serial_init(struct bcma_drv_cc
*cc
)
382 unsigned int ccrev
= cc
->core
->id
.rev
;
383 struct bcma_serial_port
*ports
= cc
->serial_ports
;
385 if (ccrev
>= 11 && ccrev
!= 15) {
386 baud_base
= bcma_chipco_get_alp_clock(cc
);
388 /* Turn off UART clock before switching clocksource. */
389 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
390 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
391 & ~BCMA_CC_CORECTL_UARTCLKEN
);
393 /* Set the override bit so we don't divide it */
394 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
395 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
396 | BCMA_CC_CORECTL_UARTCLK0
);
398 /* Re-enable the UART clock. */
399 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
400 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
401 | BCMA_CC_CORECTL_UARTCLKEN
);
404 bcma_err(cc
->core
->bus
, "serial not supported on this device ccrev: 0x%x\n",
409 irq
= bcma_core_irq(cc
->core
, 0);
411 /* Determine the registers of the UARTs */
412 cc
->nr_serial_ports
= (cc
->capabilities
& BCMA_CC_CAP_NRUART
);
413 for (i
= 0; i
< cc
->nr_serial_ports
; i
++) {
414 ports
[i
].regs
= cc
->core
->io_addr
+ BCMA_CC_UART0_DATA
+
417 ports
[i
].baud_base
= baud_base
;
418 ports
[i
].reg_shift
= 0;
421 #endif /* CONFIG_BCMA_DRIVER_MIPS */