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 u32
bcma_chipco_watchdog_get_max_timer(struct bcma_drv_cc
*cc
)
39 struct bcma_bus
*bus
= cc
->core
->bus
;
42 if (cc
->capabilities
& BCMA_CC_CAP_PMU
) {
43 if (bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
)
45 else if (cc
->core
->id
.rev
< 26)
48 nb
= (cc
->core
->id
.rev
>= 37) ? 32 : 24;
58 static u32
bcma_chipco_watchdog_timer_set_wdt(struct bcm47xx_wdt
*wdt
,
61 struct bcma_drv_cc
*cc
= bcm47xx_wdt_get_drvdata(wdt
);
63 return bcma_chipco_watchdog_timer_set(cc
, ticks
);
66 static u32
bcma_chipco_watchdog_timer_set_ms_wdt(struct bcm47xx_wdt
*wdt
,
69 struct bcma_drv_cc
*cc
= bcm47xx_wdt_get_drvdata(wdt
);
72 ticks
= bcma_chipco_watchdog_timer_set(cc
, cc
->ticks_per_ms
* ms
);
73 return ticks
/ cc
->ticks_per_ms
;
76 static int bcma_chipco_watchdog_ticks_per_ms(struct bcma_drv_cc
*cc
)
78 struct bcma_bus
*bus
= cc
->core
->bus
;
80 if (cc
->capabilities
& BCMA_CC_CAP_PMU
) {
81 if (bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
)
82 /* 4706 CC and PMU watchdogs are clocked at 1/4 of ALP clock */
83 return bcma_chipco_get_alp_clock(cc
) / 4000;
85 /* based on 32KHz ILP clock */
88 return bcma_chipco_get_alp_clock(cc
) / 1000;
92 int bcma_chipco_watchdog_register(struct bcma_drv_cc
*cc
)
94 struct bcm47xx_wdt wdt
= {};
95 struct platform_device
*pdev
;
98 wdt
.timer_set
= bcma_chipco_watchdog_timer_set_wdt
;
99 wdt
.timer_set_ms
= bcma_chipco_watchdog_timer_set_ms_wdt
;
100 wdt
.max_timer_ms
= bcma_chipco_watchdog_get_max_timer(cc
) / cc
->ticks_per_ms
;
102 pdev
= platform_device_register_data(NULL
, "bcm47xx-wdt",
103 cc
->core
->bus
->num
, &wdt
,
106 return PTR_ERR(pdev
);
113 void bcma_core_chipcommon_early_init(struct bcma_drv_cc
*cc
)
115 if (cc
->early_setup_done
)
118 spin_lock_init(&cc
->gpio_lock
);
120 if (cc
->core
->id
.rev
>= 11)
121 cc
->status
= bcma_cc_read32(cc
, BCMA_CC_CHIPSTAT
);
122 cc
->capabilities
= bcma_cc_read32(cc
, BCMA_CC_CAP
);
123 if (cc
->core
->id
.rev
>= 35)
124 cc
->capabilities_ext
= bcma_cc_read32(cc
, BCMA_CC_CAP_EXT
);
126 if (cc
->capabilities
& BCMA_CC_CAP_PMU
)
127 bcma_pmu_early_init(cc
);
129 cc
->early_setup_done
= true;
132 void bcma_core_chipcommon_init(struct bcma_drv_cc
*cc
)
140 bcma_core_chipcommon_early_init(cc
);
142 if (cc
->core
->id
.rev
>= 20) {
143 u32 pullup
= 0, pulldown
= 0;
145 if (cc
->core
->bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM43142
) {
150 bcma_cc_write32(cc
, BCMA_CC_GPIOPULLUP
, pullup
);
151 bcma_cc_write32(cc
, BCMA_CC_GPIOPULLDOWN
, pulldown
);
154 if (cc
->capabilities
& BCMA_CC_CAP_PMU
)
156 if (cc
->capabilities
& BCMA_CC_CAP_PCTL
)
157 bcma_err(cc
->core
->bus
, "Power control not implemented!\n");
159 if (cc
->core
->id
.rev
>= 16) {
160 if (cc
->core
->bus
->sprom
.leddc_on_time
&&
161 cc
->core
->bus
->sprom
.leddc_off_time
) {
162 leddc_on
= cc
->core
->bus
->sprom
.leddc_on_time
;
163 leddc_off
= cc
->core
->bus
->sprom
.leddc_off_time
;
165 bcma_cc_write32(cc
, BCMA_CC_GPIOTIMER
,
166 ((leddc_on
<< BCMA_CC_GPIOTIMER_ONTIME_SHIFT
) |
167 (leddc_off
<< BCMA_CC_GPIOTIMER_OFFTIME_SHIFT
)));
169 cc
->ticks_per_ms
= bcma_chipco_watchdog_ticks_per_ms(cc
);
171 cc
->setup_done
= true;
174 /* Set chip watchdog reset timer to fire in 'ticks' backplane cycles */
175 u32
bcma_chipco_watchdog_timer_set(struct bcma_drv_cc
*cc
, u32 ticks
)
178 enum bcma_clkmode clkmode
;
180 maxt
= bcma_chipco_watchdog_get_max_timer(cc
);
181 if (cc
->capabilities
& BCMA_CC_CAP_PMU
) {
184 else if (ticks
> maxt
)
186 bcma_cc_write32(cc
, BCMA_CC_PMU_WATCHDOG
, ticks
);
188 clkmode
= ticks
? BCMA_CLKMODE_FAST
: BCMA_CLKMODE_DYNAMIC
;
189 bcma_core_set_clockmode(cc
->core
, clkmode
);
193 bcma_cc_write32(cc
, BCMA_CC_WATCHDOG
, ticks
);
198 void bcma_chipco_irq_mask(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
200 bcma_cc_write32_masked(cc
, BCMA_CC_IRQMASK
, mask
, value
);
203 u32
bcma_chipco_irq_status(struct bcma_drv_cc
*cc
, u32 mask
)
205 return bcma_cc_read32(cc
, BCMA_CC_IRQSTAT
) & mask
;
208 u32
bcma_chipco_gpio_in(struct bcma_drv_cc
*cc
, u32 mask
)
210 return bcma_cc_read32(cc
, BCMA_CC_GPIOIN
) & mask
;
213 u32
bcma_chipco_gpio_out(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
218 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
219 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOOUT
, mask
, value
);
220 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
224 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_out
);
226 u32
bcma_chipco_gpio_outen(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
231 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
232 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOOUTEN
, mask
, value
);
233 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
237 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_outen
);
240 * If the bit is set to 0, chipcommon controlls this GPIO,
241 * if the bit is set to 1, it is used by some part of the chip and not our code.
243 u32
bcma_chipco_gpio_control(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
248 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
249 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOCTL
, mask
, value
);
250 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
254 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_control
);
256 u32
bcma_chipco_gpio_intmask(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
261 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
262 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOIRQ
, mask
, value
);
263 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
268 u32
bcma_chipco_gpio_polarity(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
273 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
274 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPOL
, mask
, value
);
275 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
280 u32
bcma_chipco_gpio_pullup(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
285 if (cc
->core
->id
.rev
< 20)
288 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
289 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPULLUP
, mask
, value
);
290 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
295 u32
bcma_chipco_gpio_pulldown(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
300 if (cc
->core
->id
.rev
< 20)
303 spin_lock_irqsave(&cc
->gpio_lock
, flags
);
304 res
= bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPULLDOWN
, mask
, value
);
305 spin_unlock_irqrestore(&cc
->gpio_lock
, flags
);
310 #ifdef CONFIG_BCMA_DRIVER_MIPS
311 void bcma_chipco_serial_init(struct bcma_drv_cc
*cc
)
316 unsigned int ccrev
= cc
->core
->id
.rev
;
317 struct bcma_serial_port
*ports
= cc
->serial_ports
;
319 if (ccrev
>= 11 && ccrev
!= 15) {
320 baud_base
= bcma_chipco_get_alp_clock(cc
);
322 /* Turn off UART clock before switching clocksource. */
323 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
324 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
325 & ~BCMA_CC_CORECTL_UARTCLKEN
);
327 /* Set the override bit so we don't divide it */
328 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
329 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
330 | BCMA_CC_CORECTL_UARTCLK0
);
332 /* Re-enable the UART clock. */
333 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
334 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
335 | BCMA_CC_CORECTL_UARTCLKEN
);
338 bcma_err(cc
->core
->bus
, "serial not supported on this device ccrev: 0x%x\n", ccrev
);
342 irq
= bcma_core_irq(cc
->core
);
344 /* Determine the registers of the UARTs */
345 cc
->nr_serial_ports
= (cc
->capabilities
& BCMA_CC_CAP_NRUART
);
346 for (i
= 0; i
< cc
->nr_serial_ports
; i
++) {
347 ports
[i
].regs
= cc
->core
->io_addr
+ BCMA_CC_UART0_DATA
+
350 ports
[i
].baud_base
= baud_base
;
351 ports
[i
].reg_shift
= 0;
354 #endif /* CONFIG_BCMA_DRIVER_MIPS */