aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/bcma/bcma_private.h8
-rw-r--r--drivers/bcma/driver_chipcommon.c48
-rw-r--r--drivers/bcma/driver_chipcommon_pmu.c26
-rw-r--r--drivers/bcma/driver_mips.c1
-rw-r--r--include/linux/bcma/bcma_driver_chipcommon.h14
5 files changed, 97 insertions, 0 deletions
diff --git a/drivers/bcma/bcma_private.h b/drivers/bcma/bcma_private.h
index b97633d0d237..22d3052e1906 100644
--- a/drivers/bcma/bcma_private.h
+++ b/drivers/bcma/bcma_private.h
@@ -29,6 +29,14 @@ void bcma_init_bus(struct bcma_bus *bus);
29/* sprom.c */ 29/* sprom.c */
30int bcma_sprom_get(struct bcma_bus *bus); 30int bcma_sprom_get(struct bcma_bus *bus);
31 31
32/* driver_chipcommon.c */
33#ifdef CONFIG_BCMA_DRIVER_MIPS
34void bcma_chipco_serial_init(struct bcma_drv_cc *cc);
35#endif /* CONFIG_BCMA_DRIVER_MIPS */
36
37/* driver_chipcommon_pmu.c */
38u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc);
39
32#ifdef CONFIG_BCMA_HOST_PCI 40#ifdef CONFIG_BCMA_HOST_PCI
33/* host_pci.c */ 41/* host_pci.c */
34extern int __init bcma_host_pci_init(void); 42extern int __init bcma_host_pci_init(void);
diff --git a/drivers/bcma/driver_chipcommon.c b/drivers/bcma/driver_chipcommon.c
index acca327db3de..47cce9d69630 100644
--- a/drivers/bcma/driver_chipcommon.c
+++ b/drivers/bcma/driver_chipcommon.c
@@ -106,3 +106,51 @@ u32 bcma_chipco_gpio_polarity(struct bcma_drv_cc *cc, u32 mask, u32 value)
106{ 106{
107 return bcma_cc_write32_masked(cc, BCMA_CC_GPIOPOL, mask, value); 107 return bcma_cc_write32_masked(cc, BCMA_CC_GPIOPOL, mask, value);
108} 108}
109
110#ifdef CONFIG_BCMA_DRIVER_MIPS
111void bcma_chipco_serial_init(struct bcma_drv_cc *cc)
112{
113 unsigned int irq;
114 u32 baud_base;
115 u32 i;
116 unsigned int ccrev = cc->core->id.rev;
117 struct bcma_serial_port *ports = cc->serial_ports;
118
119 if (ccrev >= 11 && ccrev != 15) {
120 /* Fixed ALP clock */
121 baud_base = bcma_pmu_alp_clock(cc);
122 if (ccrev >= 21) {
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);
127 }
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);
132 if (ccrev >= 21) {
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);
137 }
138 } else {
139 pr_err("serial not supported on this device ccrev: 0x%x\n",
140 ccrev);
141 return;
142 }
143
144 irq = bcma_core_mips_irq(cc->core);
145
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 +
150 (i * 256);
151 ports[i].irq = irq;
152 ports[i].baud_base = baud_base;
153 ports[i].reg_shift = 0;
154 }
155}
156#endif /* CONFIG_BCMA_DRIVER_MIPS */
diff --git a/drivers/bcma/driver_chipcommon_pmu.c b/drivers/bcma/driver_chipcommon_pmu.c
index fcc63db0ce75..354caeea6397 100644
--- a/drivers/bcma/driver_chipcommon_pmu.c
+++ b/drivers/bcma/driver_chipcommon_pmu.c
@@ -136,3 +136,29 @@ void bcma_pmu_init(struct bcma_drv_cc *cc)
136 bcma_pmu_swreg_init(cc); 136 bcma_pmu_swreg_init(cc);
137 bcma_pmu_workarounds(cc); 137 bcma_pmu_workarounds(cc);
138} 138}
139
140u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc)
141{
142 struct bcma_bus *bus = cc->core->bus;
143
144 switch (bus->chipinfo.id) {
145 case 0x4716:
146 case 0x4748:
147 case 47162:
148 case 0x4313:
149 case 0x5357:
150 case 0x4749:
151 case 53572:
152 /* always 20Mhz */
153 return 20000 * 1000;
154 case 0x5356:
155 case 0x5300:
156 /* always 25Mhz */
157 return 25000 * 1000;
158 default:
159 pr_warn("No ALP clock specified for %04X device, "
160 "pmu rev. %d, using default %d Hz\n",
161 bus->chipinfo.id, cc->pmu.rev, BCMA_CC_PMU_ALP_CLOCK);
162 }
163 return BCMA_CC_PMU_ALP_CLOCK;
164}
diff --git a/drivers/bcma/driver_mips.c b/drivers/bcma/driver_mips.c
index 4b60c9f95839..b17233cb75c6 100644
--- a/drivers/bcma/driver_mips.c
+++ b/drivers/bcma/driver_mips.c
@@ -238,6 +238,7 @@ void bcma_core_mips_init(struct bcma_drv_mips *mcore)
238 if (mcore->setup_done) 238 if (mcore->setup_done)
239 return; 239 return;
240 240
241 bcma_chipco_serial_init(&bus->drv_cc);
241 bcma_core_mips_flash_detect(mcore); 242 bcma_core_mips_flash_detect(mcore);
242 mcore->setup_done = true; 243 mcore->setup_done = true;
243} 244}
diff --git a/include/linux/bcma/bcma_driver_chipcommon.h b/include/linux/bcma/bcma_driver_chipcommon.h
index 03cde8d22e5f..b9a930eb44cd 100644
--- a/include/linux/bcma/bcma_driver_chipcommon.h
+++ b/include/linux/bcma/bcma_driver_chipcommon.h
@@ -241,6 +241,9 @@
241#define BCMA_CC_SPROM 0x0800 /* SPROM beginning */ 241#define BCMA_CC_SPROM 0x0800 /* SPROM beginning */
242#define BCMA_CC_SPROM_PCIE6 0x0830 /* SPROM beginning on PCIe rev >= 6 */ 242#define BCMA_CC_SPROM_PCIE6 0x0830 /* SPROM beginning on PCIe rev >= 6 */
243 243
244/* ALP clock on pre-PMU chips */
245#define BCMA_CC_PMU_ALP_CLOCK 20000000
246
244/* Data for the PMU, if available. 247/* Data for the PMU, if available.
245 * Check availability with ((struct bcma_chipcommon)->capabilities & BCMA_CC_CAP_PMU) 248 * Check availability with ((struct bcma_chipcommon)->capabilities & BCMA_CC_CAP_PMU)
246 */ 249 */
@@ -255,6 +258,14 @@ struct bcma_pflash {
255 u32 window; 258 u32 window;
256 u32 window_size; 259 u32 window_size;
257}; 260};
261
262struct bcma_serial_port {
263 void *regs;
264 unsigned long clockspeed;
265 unsigned int irq;
266 unsigned int baud_base;
267 unsigned int reg_shift;
268};
258#endif /* CONFIG_BCMA_DRIVER_MIPS */ 269#endif /* CONFIG_BCMA_DRIVER_MIPS */
259 270
260struct bcma_drv_cc { 271struct bcma_drv_cc {
@@ -268,6 +279,9 @@ struct bcma_drv_cc {
268 struct bcma_chipcommon_pmu pmu; 279 struct bcma_chipcommon_pmu pmu;
269#ifdef CONFIG_BCMA_DRIVER_MIPS 280#ifdef CONFIG_BCMA_DRIVER_MIPS
270 struct bcma_pflash pflash; 281 struct bcma_pflash pflash;
282
283 int nr_serial_ports;
284 struct bcma_serial_port serial_ports[4];
271#endif /* CONFIG_BCMA_DRIVER_MIPS */ 285#endif /* CONFIG_BCMA_DRIVER_MIPS */
272}; 286};
273 287