2 * Broadcom specific AMBA
3 * Broadcom MIPS32 74K core driver
5 * Copyright 2009, Broadcom Corporation
6 * Copyright 2006, 2007, Michael Buesch <mb@bu3sch.de>
7 * Copyright 2010, Bernhard Loos <bernhardloos@googlemail.com>
8 * Copyright 2011, Hauke Mehrtens <hauke@hauke-m.de>
10 * Licensed under the GNU/GPL. See COPYING for details.
13 #include "bcma_private.h"
15 #include <linux/bcma/bcma.h>
17 #include <linux/serial.h>
18 #include <linux/serial_core.h>
19 #include <linux/serial_reg.h>
20 #include <linux/time.h>
22 #include <linux/bcm47xx_nvram.h>
26 BCMA_BOOT_DEV_UNK = 0,
28 BCMA_BOOT_DEV_PARALLEL,
33 /* The 47162a0 hangs when reading MIPS DMP registers registers */
34 static inline bool bcma_core_mips_bcm47162a0_quirk(struct bcma_device *dev)
36 return dev->bus->chipinfo.id == BCMA_CHIP_ID_BCM47162 &&
37 dev->bus->chipinfo.rev == 0 && dev->id.id == BCMA_CORE_MIPS_74K;
40 /* The 5357b0 hangs when reading USB20H DMP registers */
41 static inline bool bcma_core_mips_bcm5357b0_quirk(struct bcma_device *dev)
43 return (dev->bus->chipinfo.id == BCMA_CHIP_ID_BCM5357 ||
44 dev->bus->chipinfo.id == BCMA_CHIP_ID_BCM4749) &&
45 dev->bus->chipinfo.pkg == 11 &&
46 dev->id.id == BCMA_CORE_USB20_HOST;
49 static inline u32 mips_read32(struct bcma_drv_mips *mcore,
52 return bcma_read32(mcore->core, offset);
55 static u32 bcma_core_mips_irqflag(struct bcma_device *dev)
59 if (bcma_core_mips_bcm47162a0_quirk(dev))
60 return dev->core_index;
61 if (bcma_core_mips_bcm5357b0_quirk(dev))
62 return dev->core_index;
63 flag = bcma_aread32(dev, BCMA_MIPS_OOBSELOUTA30);
71 /* Get the MIPS IRQ assignment for a specified device.
72 * If unassigned, 0 is returned.
73 * If disabled, 5 is returned.
74 * If not supported, 6 is returned.
76 unsigned int bcma_core_mips_irq(struct bcma_device *dev)
78 struct bcma_device *mdev = dev->bus->drv_mips.core;
82 irqflag = bcma_core_mips_irqflag(dev);
86 for (irq = 0; irq <= 4; irq++)
87 if (bcma_read32(mdev, BCMA_MIPS_MIPS74K_INTMASK(irq)) &
94 static void bcma_core_mips_set_irq(struct bcma_device *dev, unsigned int irq)
96 unsigned int oldirq = bcma_core_mips_irq(dev);
97 struct bcma_bus *bus = dev->bus;
98 struct bcma_device *mdev = bus->drv_mips.core;
101 irqflag = bcma_core_mips_irqflag(dev);
106 /* clear the old irq */
108 bcma_write32(mdev, BCMA_MIPS_MIPS74K_INTMASK(0),
109 bcma_read32(mdev, BCMA_MIPS_MIPS74K_INTMASK(0)) &
111 else if (oldirq != 5)
112 bcma_write32(mdev, BCMA_MIPS_MIPS74K_INTMASK(oldirq), 0);
114 /* assign the new one */
116 bcma_write32(mdev, BCMA_MIPS_MIPS74K_INTMASK(0),
117 bcma_read32(mdev, BCMA_MIPS_MIPS74K_INTMASK(0)) |
120 u32 irqinitmask = bcma_read32(mdev,
121 BCMA_MIPS_MIPS74K_INTMASK(irq));
123 struct bcma_device *core;
125 /* backplane irq line is in use, find out who uses
126 * it and set user to irq 0
128 list_for_each_entry(core, &bus->cores, list) {
129 if ((1 << bcma_core_mips_irqflag(core)) ==
131 bcma_core_mips_set_irq(core, 0);
136 bcma_write32(mdev, BCMA_MIPS_MIPS74K_INTMASK(irq),
140 bcma_debug(bus, "set_irq: core 0x%04x, irq %d => %d\n",
141 dev->id.id, oldirq <= 4 ? oldirq + 2 : 0, irq + 2);
144 static void bcma_core_mips_set_irq_name(struct bcma_bus *bus, unsigned int irq,
147 struct bcma_device *core;
149 core = bcma_find_core_unit(bus, coreid, unit);
152 "Can not find core (id: 0x%x, unit %i) for IRQ configuration.\n",
157 bcma_core_mips_set_irq(core, irq);
160 static void bcma_core_mips_print_irq(struct bcma_device *dev, unsigned int irq)
163 static const char *irq_name[] = {"2(S)", "3", "4", "5", "6", "D", "I"};
165 char *ints = interrupts;
167 for (i = 0; i < ARRAY_SIZE(irq_name); i++)
168 ints += sprintf(ints, " %s%c",
169 irq_name[i], i == irq ? '*' : ' ');
171 bcma_debug(dev->bus, "core 0x%04x, irq:%s\n", dev->id.id, interrupts);
174 static void bcma_core_mips_dump_irq(struct bcma_bus *bus)
176 struct bcma_device *core;
178 list_for_each_entry(core, &bus->cores, list) {
179 bcma_core_mips_print_irq(core, bcma_core_mips_irq(core));
183 u32 bcma_cpu_clock(struct bcma_drv_mips *mcore)
185 struct bcma_bus *bus = mcore->core->bus;
187 if (bus->drv_cc.capabilities & BCMA_CC_CAP_PMU)
188 return bcma_pmu_get_cpu_clock(&bus->drv_cc);
190 bcma_err(bus, "No PMU available, need this to get the cpu clock\n");
193 EXPORT_SYMBOL(bcma_cpu_clock);
195 static enum bcma_boot_dev bcma_boot_dev(struct bcma_bus *bus)
197 struct bcma_drv_cc *cc = &bus->drv_cc;
198 u8 cc_rev = cc->core->id.rev;
201 struct bcma_device *core;
203 core = bcma_find_core(bus, BCMA_CORE_NS_ROM);
205 switch (bcma_aread32(core, BCMA_IOST) &
206 BCMA_NS_ROM_IOST_BOOT_DEV_MASK) {
207 case BCMA_NS_ROM_IOST_BOOT_DEV_NOR:
208 return BCMA_BOOT_DEV_SERIAL;
209 case BCMA_NS_ROM_IOST_BOOT_DEV_NAND:
210 return BCMA_BOOT_DEV_NAND;
211 case BCMA_NS_ROM_IOST_BOOT_DEV_ROM:
213 return BCMA_BOOT_DEV_ROM;
218 if (cc->status & BCMA_CC_CHIPST_5357_NAND_BOOT)
219 return BCMA_BOOT_DEV_NAND;
220 else if (cc->status & BIT(5))
221 return BCMA_BOOT_DEV_ROM;
224 if ((cc->capabilities & BCMA_CC_CAP_FLASHT) ==
226 return BCMA_BOOT_DEV_PARALLEL;
228 return BCMA_BOOT_DEV_SERIAL;
231 return BCMA_BOOT_DEV_SERIAL;
234 static void bcma_core_mips_nvram_init(struct bcma_drv_mips *mcore)
236 struct bcma_bus *bus = mcore->core->bus;
237 enum bcma_boot_dev boot_dev;
239 /* Determine flash type this SoC boots from */
240 boot_dev = bcma_boot_dev(bus);
242 case BCMA_BOOT_DEV_PARALLEL:
243 case BCMA_BOOT_DEV_SERIAL:
244 #ifdef CONFIG_BCM47XX
245 bcm47xx_nvram_init_from_mem(BCMA_SOC_FLASH2,
249 case BCMA_BOOT_DEV_NAND:
250 #ifdef CONFIG_BCM47XX
251 bcm47xx_nvram_init_from_mem(BCMA_SOC_FLASH1,
260 void bcma_core_mips_early_init(struct bcma_drv_mips *mcore)
262 struct bcma_bus *bus = mcore->core->bus;
264 if (mcore->early_setup_done)
267 bcma_chipco_serial_init(&bus->drv_cc);
268 bcma_core_mips_nvram_init(mcore);
270 mcore->early_setup_done = true;
273 static void bcma_fix_i2s_irqflag(struct bcma_bus *bus)
275 struct bcma_device *cpu, *pcie, *i2s;
277 /* Fixup the interrupts in 4716/4748 for i2s core (2010 Broadcom SDK)
278 * (IRQ flags > 7 are ignored when setting the interrupt masks)
280 if (bus->chipinfo.id != BCMA_CHIP_ID_BCM4716 &&
281 bus->chipinfo.id != BCMA_CHIP_ID_BCM4748)
284 cpu = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
285 pcie = bcma_find_core(bus, BCMA_CORE_PCIE);
286 i2s = bcma_find_core(bus, BCMA_CORE_I2S);
287 if (cpu && pcie && i2s &&
288 bcma_aread32(cpu, BCMA_MIPS_OOBSELINA74) == 0x08060504 &&
289 bcma_aread32(pcie, BCMA_MIPS_OOBSELINA74) == 0x08060504 &&
290 bcma_aread32(i2s, BCMA_MIPS_OOBSELOUTA30) == 0x88) {
291 bcma_awrite32(cpu, BCMA_MIPS_OOBSELINA74, 0x07060504);
292 bcma_awrite32(pcie, BCMA_MIPS_OOBSELINA74, 0x07060504);
293 bcma_awrite32(i2s, BCMA_MIPS_OOBSELOUTA30, 0x87);
295 "Moved i2s interrupt to oob line 7 instead of 8\n");
299 void bcma_core_mips_init(struct bcma_drv_mips *mcore)
301 struct bcma_bus *bus;
302 struct bcma_device *core;
303 bus = mcore->core->bus;
305 if (mcore->setup_done)
308 bcma_debug(bus, "Initializing MIPS core...\n");
310 bcma_core_mips_early_init(mcore);
312 bcma_fix_i2s_irqflag(bus);
314 switch (bus->chipinfo.id) {
315 case BCMA_CHIP_ID_BCM4716:
316 case BCMA_CHIP_ID_BCM4748:
317 bcma_core_mips_set_irq_name(bus, 1, BCMA_CORE_80211, 0);
318 bcma_core_mips_set_irq_name(bus, 2, BCMA_CORE_MAC_GBIT, 0);
319 bcma_core_mips_set_irq_name(bus, 3, BCMA_CORE_USB20_HOST, 0);
320 bcma_core_mips_set_irq_name(bus, 4, BCMA_CORE_PCIE, 0);
321 bcma_core_mips_set_irq_name(bus, 0, BCMA_CORE_CHIPCOMMON, 0);
322 bcma_core_mips_set_irq_name(bus, 0, BCMA_CORE_I2S, 0);
324 case BCMA_CHIP_ID_BCM5356:
325 case BCMA_CHIP_ID_BCM47162:
326 case BCMA_CHIP_ID_BCM53572:
327 bcma_core_mips_set_irq_name(bus, 1, BCMA_CORE_80211, 0);
328 bcma_core_mips_set_irq_name(bus, 2, BCMA_CORE_MAC_GBIT, 0);
329 bcma_core_mips_set_irq_name(bus, 0, BCMA_CORE_CHIPCOMMON, 0);
331 case BCMA_CHIP_ID_BCM5357:
332 case BCMA_CHIP_ID_BCM4749:
333 bcma_core_mips_set_irq_name(bus, 1, BCMA_CORE_80211, 0);
334 bcma_core_mips_set_irq_name(bus, 2, BCMA_CORE_MAC_GBIT, 0);
335 bcma_core_mips_set_irq_name(bus, 3, BCMA_CORE_USB20_HOST, 0);
336 bcma_core_mips_set_irq_name(bus, 0, BCMA_CORE_CHIPCOMMON, 0);
337 bcma_core_mips_set_irq_name(bus, 0, BCMA_CORE_I2S, 0);
339 case BCMA_CHIP_ID_BCM4706:
340 bcma_core_mips_set_irq_name(bus, 1, BCMA_CORE_PCIE, 0);
341 bcma_core_mips_set_irq_name(bus, 2, BCMA_CORE_4706_MAC_GBIT,
343 bcma_core_mips_set_irq_name(bus, 3, BCMA_CORE_PCIE, 1);
344 bcma_core_mips_set_irq_name(bus, 4, BCMA_CORE_USB20_HOST, 0);
345 bcma_core_mips_set_irq_name(bus, 0, BCMA_CORE_4706_CHIPCOMMON,
349 list_for_each_entry(core, &bus->cores, list) {
350 core->irq = bcma_core_irq(core, 0);
353 "Unknown device (0x%x) found, can not configure IRQs\n",
356 bcma_debug(bus, "IRQ reconfiguration done\n");
357 bcma_core_mips_dump_irq(bus);
359 mcore->setup_done = true;