2 * Broadcom specific AMBA
3 * ChipCommon core driver
5 * Copyright 2005, Broadcom Corporation
6 * Copyright 2006, 2007, Michael Buesch <m@bues.ch>
8 * Licensed under the GNU/GPL. See COPYING for details.
11 #include "bcma_private.h"
12 #include <linux/bcma/bcma.h>
14 static inline u32
bcma_cc_write32_masked(struct bcma_drv_cc
*cc
, u16 offset
,
18 value
|= bcma_cc_read32(cc
, offset
) & ~mask
;
19 bcma_cc_write32(cc
, offset
, value
);
24 void bcma_core_chipcommon_init(struct bcma_drv_cc
*cc
)
32 if (cc
->core
->id
.rev
>= 11)
33 cc
->status
= bcma_cc_read32(cc
, BCMA_CC_CHIPSTAT
);
34 cc
->capabilities
= bcma_cc_read32(cc
, BCMA_CC_CAP
);
35 if (cc
->core
->id
.rev
>= 35)
36 cc
->capabilities_ext
= bcma_cc_read32(cc
, BCMA_CC_CAP_EXT
);
38 if (cc
->core
->id
.rev
>= 20) {
39 bcma_cc_write32(cc
, BCMA_CC_GPIOPULLUP
, 0);
40 bcma_cc_write32(cc
, BCMA_CC_GPIOPULLDOWN
, 0);
43 if (cc
->capabilities
& BCMA_CC_CAP_PMU
)
45 if (cc
->capabilities
& BCMA_CC_CAP_PCTL
)
46 pr_err("Power control not implemented!\n");
48 if (cc
->core
->id
.rev
>= 16) {
49 if (cc
->core
->bus
->sprom
.leddc_on_time
&&
50 cc
->core
->bus
->sprom
.leddc_off_time
) {
51 leddc_on
= cc
->core
->bus
->sprom
.leddc_on_time
;
52 leddc_off
= cc
->core
->bus
->sprom
.leddc_off_time
;
54 bcma_cc_write32(cc
, BCMA_CC_GPIOTIMER
,
55 ((leddc_on
<< BCMA_CC_GPIOTIMER_ONTIME_SHIFT
) |
56 (leddc_off
<< BCMA_CC_GPIOTIMER_OFFTIME_SHIFT
)));
59 cc
->setup_done
= true;
62 /* Set chip watchdog reset timer to fire in 'ticks' backplane cycles */
63 void bcma_chipco_watchdog_timer_set(struct bcma_drv_cc
*cc
, u32 ticks
)
66 bcma_cc_write32(cc
, BCMA_CC_WATCHDOG
, ticks
);
69 void bcma_chipco_irq_mask(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
71 bcma_cc_write32_masked(cc
, BCMA_CC_IRQMASK
, mask
, value
);
74 u32
bcma_chipco_irq_status(struct bcma_drv_cc
*cc
, u32 mask
)
76 return bcma_cc_read32(cc
, BCMA_CC_IRQSTAT
) & mask
;
79 u32
bcma_chipco_gpio_in(struct bcma_drv_cc
*cc
, u32 mask
)
81 return bcma_cc_read32(cc
, BCMA_CC_GPIOIN
) & mask
;
84 u32
bcma_chipco_gpio_out(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
86 return bcma_cc_write32_masked(cc
, BCMA_CC_GPIOOUT
, mask
, value
);
89 u32
bcma_chipco_gpio_outen(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
91 return bcma_cc_write32_masked(cc
, BCMA_CC_GPIOOUTEN
, mask
, value
);
94 u32
bcma_chipco_gpio_control(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
96 return bcma_cc_write32_masked(cc
, BCMA_CC_GPIOCTL
, mask
, value
);
98 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_control
);
100 u32
bcma_chipco_gpio_intmask(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
102 return bcma_cc_write32_masked(cc
, BCMA_CC_GPIOIRQ
, mask
, value
);
105 u32
bcma_chipco_gpio_polarity(struct bcma_drv_cc
*cc
, u32 mask
, u32 value
)
107 return bcma_cc_write32_masked(cc
, BCMA_CC_GPIOPOL
, mask
, value
);
110 #ifdef CONFIG_BCMA_DRIVER_MIPS
111 void bcma_chipco_serial_init(struct bcma_drv_cc
*cc
)
116 unsigned int ccrev
= cc
->core
->id
.rev
;
117 struct bcma_serial_port
*ports
= cc
->serial_ports
;
119 if (ccrev
>= 11 && ccrev
!= 15) {
120 /* Fixed ALP clock */
121 baud_base
= bcma_pmu_alp_clock(cc
);
123 /* Turn off UART clock before switching clocksource. */
124 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
125 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
126 & ~BCMA_CC_CORECTL_UARTCLKEN
);
128 /* Set the override bit so we don't divide it */
129 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
130 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
131 | BCMA_CC_CORECTL_UARTCLK0
);
133 /* Re-enable the UART clock. */
134 bcma_cc_write32(cc
, BCMA_CC_CORECTL
,
135 bcma_cc_read32(cc
, BCMA_CC_CORECTL
)
136 | BCMA_CC_CORECTL_UARTCLKEN
);
139 pr_err("serial not supported on this device ccrev: 0x%x\n",
144 irq
= bcma_core_mips_irq(cc
->core
);
146 /* Determine the registers of the UARTs */
147 cc
->nr_serial_ports
= (cc
->capabilities
& BCMA_CC_CAP_NRUART
);
148 for (i
= 0; i
< cc
->nr_serial_ports
; i
++) {
149 ports
[i
].regs
= cc
->core
->io_addr
+ BCMA_CC_UART0_DATA
+
152 ports
[i
].baud_base
= baud_base
;
153 ports
[i
].reg_shift
= 0;
156 #endif /* CONFIG_BCMA_DRIVER_MIPS */