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 void bcma_chipco_serial_init(struct bcma_drv_cc
*cc
);
20 static inline u32
bcma_cc_write32_masked(struct bcma_drv_cc
*cc
, u16 offset
,
24 value
|= bcma_cc_read32(cc
, offset
) & ~mask
;
25 bcma_cc_write32(cc
, offset
, value
);
30 u32
bcma_chipco_get_alp_clock(struct bcma_drv_cc
*cc
)
32 if (cc
->capabilities
& BCMA_CC_CAP_PMU
)
33 return bcma_pmu_get_alp_clock(cc
);
37 EXPORT_SYMBOL_GPL(bcma_chipco_get_alp_clock
);
39 static u32
bcma_chipco_watchdog_get_max_timer(struct bcma_drv_cc
*cc
)
41 struct bcma_bus
*bus
= cc
->core
->bus
;
44 if (cc
->capabilities
& BCMA_CC_CAP_PMU
) {
45 if (bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
)
47 else if (cc
->core
->id
.rev
< 26)
50 nb
= (cc
->core
->id
.rev
>= 37) ? 32 : 24;
60 static u32
bcma_chipco_watchdog_timer_set_wdt(struct bcm47xx_wdt
*wdt
,
63 struct bcma_drv_cc
*cc
= bcm47xx_wdt_get_drvdata(wdt
);
65 return bcma_chipco_watchdog_timer_set(cc
, ticks
);
68 static u32
bcma_chipco_watchdog_timer_set_ms_wdt(struct bcm47xx_wdt
*wdt
,
71 struct bcma_drv_cc
*cc
= bcm47xx_wdt_get_drvdata(wdt
);
74 ticks
= bcma_chipco_watchdog_timer_set(cc
, cc
->ticks_per_ms
* ms
);
75 return ticks
/ cc
->ticks_per_ms
;
78 static int bcma_chipco_watchdog_ticks_per_ms(struct bcma_drv_cc
*cc
)
80 struct bcma_bus
*bus
= cc
->core
->bus
;
82 if (cc
->capabilities
& BCMA_CC_CAP_PMU
) {
83 if (bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
)
84 /* 4706 CC and PMU watchdogs are clocked at 1/4 of ALP
87 return bcma_chipco_get_alp_clock(cc
) / 4000;
89 /* based on 32KHz ILP clock */
92 return bcma_chipco_get_alp_clock(cc
) / 1000;
96 int bcma_chipco_watchdog_register(struct bcma_drv_cc
*cc
)
98 struct bcm47xx_wdt wdt
= {};
99 struct platform_device
*pdev
;
101 wdt
.driver_data
= cc
;
102 wdt
.timer_set
= bcma_chipco_watchdog_timer_set_wdt
;
103 wdt
.timer_set_ms
= bcma_chipco_watchdog_timer_set_ms_wdt
;
105 bcma_chipco_watchdog_get_max_timer(cc
) / cc
->ticks_per_ms
;
107 pdev
= platform_device_register_data(NULL
, "bcm47xx-wdt",
108 cc
->core
->bus
->num
, &wdt
,
111 return PTR_ERR(pdev
);
118 static void bcma_core_chipcommon_flash_detect(struct bcma_drv_cc
*cc
)
120 struct bcma_bus
*bus
= cc
->core
->bus
;
122 switch (cc
->capabilities
& BCMA_CC_CAP_FLASHT
) {
123 case BCMA_CC_FLASHT_STSER
:
124 case BCMA_CC_FLASHT_ATSER
:
125 bcma_debug(bus
, "Found serial flash\n");
126 bcma_sflash_init(cc
);
128 case BCMA_CC_FLASHT_PARA
:
129 bcma_debug(bus
, "Found parallel flash\n");
130 bcma_pflash_init(cc
);
133 bcma_err(bus
, "Flash type not supported\n");
136 if (cc
->core
->id
.rev
== 38 ||
137 bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
) {
138 if (cc
->capabilities
& BCMA_CC_CAP_NFLASH
) {
139 bcma_debug(bus
, "Found NAND flash\n");
140 bcma_nflash_init(cc
);
145 void bcma_core_chipcommon_early_init(struct bcma_drv_cc
*cc
)
147 struct bcma_bus
*bus
= cc
->core
->bus
;
149 if (cc
->early_setup_done
)
152 spin_lock_init(&cc
->gpio_lock
);
154 if (cc
->core
->id
.rev
>= 11)
155 cc
->status
= bcma_cc_read32(cc
, BCMA_CC_CHIPSTAT
);
156 cc
->capabilities
= bcma_cc_read32(cc
, BCMA_CC_CAP
);
157 if (cc
->core
->id
.rev
>= 35)
158 cc
->capabilities_ext
= bcma_cc_read32(cc
, BCMA_CC_CAP_EXT
);
160 if (cc
->capabilities
& BCMA_CC_CAP_PMU
)
161 bcma_pmu_early_init(cc
);
163 if (IS_BUILTIN(CONFIG_BCM47XX
) && bus
->hosttype
== BCMA_HOSTTYPE_SOC
)
164 bcma_chipco_serial_init(cc
);
166 if (bus
->hosttype
== BCMA_HOSTTYPE_SOC
)
167 bcma_core_chipcommon_flash_detect(cc
);
169 cc
->early_setup_done
= true;
172 void bcma_core_chipcommon_init(struct bcma_drv_cc
*cc
)
180 bcma_core_chipcommon_early_init(cc
);
182 if (cc
->core
->id
.rev
>= 20) {
183 u32 pullup
= 0, pulldown
= 0;
185 if (cc
->core
->bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM43142
) {
190 bcma_cc_write32(cc
, BCMA_CC_GPIOPULLUP
, pullup
);
191 bcma_cc_write32(cc
, BCMA_CC_GPIOPULLDOWN
, pulldown
);
194 if (cc
->capabilities
& BCMA_CC_CAP_PMU
)
196 if (cc
->capabilities
& BCMA_CC_CAP_PCTL
)
197 bcma_err(cc
->core
->bus
, "Power control not implemented!\n");
199 if (cc
->core
->id
.rev
>= 16) {
200 if (cc
->core
->bus
->sprom
.leddc_on_time
&&
201 cc
->core
->bus
->sprom
.leddc_off_time
) {
202 leddc_on
= cc
->core
->bus
->sprom
.leddc_on_time
;
203 leddc_off
= cc
->core
->bus
->sprom
.leddc_off_time
;
205 bcma_cc_write32(cc
, BCMA_CC_GPIOTIMER
,
206 ((leddc_on
<< BCMA_CC_GPIOTIMER_ONTIME_SHIFT
) |
207 (leddc_off
<< BCMA_CC_GPIOTIMER_OFFTIME_SHIFT
)));
209 cc
->ticks_per_ms
= bcma_chipco_watchdog_ticks_per_ms(cc
);
211 cc
->setup_done
= true;
214 /* Set chip watchdog reset timer to fire in 'ticks' backplane cycles */
215 u32
bcma_chipco_watchdog_timer_set(struct bcma_drv_cc
*cc
, u32 ticks
)
219 maxt
= bcma_chipco_watchdog_get_max_timer(cc
);
220 if (cc
->capabilities
& BCMA_CC_CAP_PMU
) {
223 else if (ticks
> maxt
)
225 bcma_pmu_write32(cc
, BCMA_CC_PMU_WATCHDOG
, ticks
);
227 struct bcma_bus
*bus
= cc
->core
->bus
;
229 if (bus
->chipinfo
.id
!= BCMA_CHIP_ID_BCM4707
&&
230 bus
->chipinfo
.id
!= BCMA_CHIP_ID_BCM47094
&&
231 bus
->chipinfo
.id
!= BCMA_CHIP_ID_BCM53018
)
232 bcma_core_set_clockmode(cc
->core
,
233 ticks
? BCMA_CLKMODE_FAST
: BCMA_CLKMODE_DYNAMIC
);
238 bcma_cc_write32(cc
, BCMA_CC_WATCHDOG
, ticks
);
243 void bcma_chipco_irq_mask(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
245 bcma_cc_write32_masked(cc
, BCMA_CC_IRQMASK
, mask
, value
);
248 u32
bcma_chipco_irq_status(struct bcma_drv_cc
*cc
, u32 mask
)
250 return bcma_cc_read32(cc
, BCMA_CC_IRQSTAT
) & mask
;
253 u32
bcma_chipco_gpio_in(struct bcma_drv_cc
*cc
, u32 mask
)
255 return bcma_cc_read32(cc
, BCMA_CC_GPIOIN
) & mask
;
258 u32
bcma_chipco_gpio_out(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
263 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
264 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOOUT
, mask
, value
);
265 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
269 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_out
);
271 u32
bcma_chipco_gpio_outen(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
276 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
277 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOOUTEN
, mask
, value
);
278 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
282 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_outen
);
285 * If the bit is set to 0, chipcommon controlls this GPIO,
286 * if the bit is set to 1, it is used by some part of the chip and not our code.
288 u32
bcma_chipco_gpio_control(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
293 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
294 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOCTL
, mask
, value
);
295 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
299 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_control
);
301 u32
bcma_chipco_gpio_intmask(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
306 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
307 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOIRQ
, mask
, value
);
308 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
313 u32
bcma_chipco_gpio_polarity(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
318 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
319 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPOL
, mask
, value
);
320 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
325 u32
bcma_chipco_gpio_pullup(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
330 if (cc
->core
->id
.rev
< 20)
333 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
334 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPULLUP
, mask
, value
);
335 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
340 u32
bcma_chipco_gpio_pulldown(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
345 if (cc
->core
->id
.rev
< 20)
348 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
349 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPULLDOWN
, mask
, value
);
350 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
355 static void bcma_chipco_serial_init(struct bcma_drv_cc
*cc
)
357 #if IS_BUILTIN(CONFIG_BCM47XX)
361 unsigned int ccrev
= cc
->core
->id
.rev
;
362 struct bcma_serial_port
*ports
= cc
->serial_ports
;
364 if (ccrev
>= 11 && ccrev
!= 15) {
365 baud_base
= bcma_chipco_get_alp_clock(cc
);
367 /* Turn off UART clock before switching clocksource. */
368 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
369 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
370 & ~BCMA_CC_CORECTL_UARTCLKEN
);
372 /* Set the override bit so we don't divide it */
373 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
374 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
375 | BCMA_CC_CORECTL_UARTCLK0
);
377 /* Re-enable the UART clock. */
378 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
379 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
380 | BCMA_CC_CORECTL_UARTCLKEN
);
383 bcma_err(cc
->core
->bus
, "serial not supported on this device ccrev: 0x%x\n",
388 irq
= bcma_core_irq(cc
->core
, 0);
390 /* Determine the registers of the UARTs */
391 cc
->nr_serial_ports
= (cc
->capabilities
& BCMA_CC_CAP_NRUART
);
392 for (i
= 0; i
< cc
->nr_serial_ports
; i
++) {
393 ports
[i
].regs
= cc
->core
->io_addr
+ BCMA_CC_UART0_DATA
+
396 ports
[i
].baud_base
= baud_base
;
397 ports
[i
].reg_shift
= 0;
399 #endif /* CONFIG_BCM47XX */