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/mtd/physmap.h>
18 #include <linux/platform_device.h>
19 #include <linux/serial.h>
20 #include <linux/serial_core.h>
21 #include <linux/serial_reg.h>
22 #include <linux/time.h>
25 BCMA_BOOT_DEV_UNK
= 0,
27 BCMA_BOOT_DEV_PARALLEL
,
32 static const char * const part_probes
[] = { "bcm47xxpart", NULL
};
34 static struct physmap_flash_data bcma_pflash_data
= {
35 .part_probe_types
= part_probes
,
38 static struct resource bcma_pflash_resource
= {
39 .name
= "bcma_pflash",
40 .flags
= IORESOURCE_MEM
,
43 struct platform_device bcma_pflash_dev
= {
44 .name
= "physmap-flash",
46 .platform_data
= &bcma_pflash_data
,
48 .resource
= &bcma_pflash_resource
,
52 /* The 47162a0 hangs when reading MIPS DMP registers registers */
53 static inline bool bcma_core_mips_bcm47162a0_quirk(struct bcma_device
*dev
)
55 return dev
->bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM47162
&&
56 dev
->bus
->chipinfo
.rev
== 0 && dev
->id
.id
== BCMA_CORE_MIPS_74K
;
59 /* The 5357b0 hangs when reading USB20H DMP registers */
60 static inline bool bcma_core_mips_bcm5357b0_quirk(struct bcma_device
*dev
)
62 return (dev
->bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM5357
||
63 dev
->bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4749
) &&
64 dev
->bus
->chipinfo
.pkg
== 11 &&
65 dev
->id
.id
== BCMA_CORE_USB20_HOST
;
68 static inline u32
mips_read32(struct bcma_drv_mips
*mcore
,
71 return bcma_read32(mcore
->core
, offset
);
74 static inline void mips_write32(struct bcma_drv_mips
*mcore
,
78 bcma_write32(mcore
->core
, offset
, value
);
81 static const u32 ipsflag_irq_mask
[] = {
83 BCMA_MIPS_IPSFLAG_IRQ1
,
84 BCMA_MIPS_IPSFLAG_IRQ2
,
85 BCMA_MIPS_IPSFLAG_IRQ3
,
86 BCMA_MIPS_IPSFLAG_IRQ4
,
89 static const u32 ipsflag_irq_shift
[] = {
91 BCMA_MIPS_IPSFLAG_IRQ1_SHIFT
,
92 BCMA_MIPS_IPSFLAG_IRQ2_SHIFT
,
93 BCMA_MIPS_IPSFLAG_IRQ3_SHIFT
,
94 BCMA_MIPS_IPSFLAG_IRQ4_SHIFT
,
97 static u32
bcma_core_mips_irqflag(struct bcma_device
*dev
)
101 if (bcma_core_mips_bcm47162a0_quirk(dev
))
102 return dev
->core_index
;
103 if (bcma_core_mips_bcm5357b0_quirk(dev
))
104 return dev
->core_index
;
105 flag
= bcma_aread32(dev
, BCMA_MIPS_OOBSELOUTA30
);
113 /* Get the MIPS IRQ assignment for a specified device.
114 * If unassigned, 0 is returned.
115 * If disabled, 5 is returned.
116 * If not supported, 6 is returned.
118 static unsigned int bcma_core_mips_irq(struct bcma_device
*dev
)
120 struct bcma_device
*mdev
= dev
->bus
->drv_mips
.core
;
124 irqflag
= bcma_core_mips_irqflag(dev
);
128 for (irq
= 0; irq
<= 4; irq
++)
129 if (bcma_read32(mdev
, BCMA_MIPS_MIPS74K_INTMASK(irq
)) &
136 unsigned int bcma_core_irq(struct bcma_device
*dev
)
138 unsigned int mips_irq
= bcma_core_mips_irq(dev
);
139 return mips_irq
<= 4 ? mips_irq
+ 2 : 0;
141 EXPORT_SYMBOL(bcma_core_irq
);
143 static void bcma_core_mips_set_irq(struct bcma_device
*dev
, unsigned int irq
)
145 unsigned int oldirq
= bcma_core_mips_irq(dev
);
146 struct bcma_bus
*bus
= dev
->bus
;
147 struct bcma_device
*mdev
= bus
->drv_mips
.core
;
150 irqflag
= bcma_core_mips_irqflag(dev
);
155 /* clear the old irq */
157 bcma_write32(mdev
, BCMA_MIPS_MIPS74K_INTMASK(0),
158 bcma_read32(mdev
, BCMA_MIPS_MIPS74K_INTMASK(0)) &
160 else if (oldirq
!= 5)
161 bcma_write32(mdev
, BCMA_MIPS_MIPS74K_INTMASK(oldirq
), 0);
163 /* assign the new one */
165 bcma_write32(mdev
, BCMA_MIPS_MIPS74K_INTMASK(0),
166 bcma_read32(mdev
, BCMA_MIPS_MIPS74K_INTMASK(0)) |
169 u32 irqinitmask
= bcma_read32(mdev
,
170 BCMA_MIPS_MIPS74K_INTMASK(irq
));
172 struct bcma_device
*core
;
174 /* backplane irq line is in use, find out who uses
175 * it and set user to irq 0
177 list_for_each_entry(core
, &bus
->cores
, list
) {
178 if ((1 << bcma_core_mips_irqflag(core
)) ==
180 bcma_core_mips_set_irq(core
, 0);
185 bcma_write32(mdev
, BCMA_MIPS_MIPS74K_INTMASK(irq
),
189 bcma_debug(bus
, "set_irq: core 0x%04x, irq %d => %d\n",
190 dev
->id
.id
, oldirq
<= 4 ? oldirq
+ 2 : 0, irq
+ 2);
193 static void bcma_core_mips_set_irq_name(struct bcma_bus
*bus
, unsigned int irq
,
196 struct bcma_device
*core
;
198 core
= bcma_find_core_unit(bus
, coreid
, unit
);
201 "Can not find core (id: 0x%x, unit %i) for IRQ configuration.\n",
206 bcma_core_mips_set_irq(core
, irq
);
209 static void bcma_core_mips_print_irq(struct bcma_device
*dev
, unsigned int irq
)
212 static const char *irq_name
[] = {"2(S)", "3", "4", "5", "6", "D", "I"};
213 printk(KERN_DEBUG KBUILD_MODNAME
": core 0x%04x, irq :", dev
->id
.id
);
214 for (i
= 0; i
<= 6; i
++)
215 printk(" %s%s", irq_name
[i
], i
== irq
? "*" : " ");
219 static void bcma_core_mips_dump_irq(struct bcma_bus
*bus
)
221 struct bcma_device
*core
;
223 list_for_each_entry(core
, &bus
->cores
, list
) {
224 bcma_core_mips_print_irq(core
, bcma_core_mips_irq(core
));
228 u32
bcma_cpu_clock(struct bcma_drv_mips
*mcore
)
230 struct bcma_bus
*bus
= mcore
->core
->bus
;
232 if (bus
->drv_cc
.capabilities
& BCMA_CC_CAP_PMU
)
233 return bcma_pmu_get_cpu_clock(&bus
->drv_cc
);
235 bcma_err(bus
, "No PMU available, need this to get the cpu clock\n");
238 EXPORT_SYMBOL(bcma_cpu_clock
);
240 static enum bcma_boot_dev
bcma_boot_dev(struct bcma_bus
*bus
)
242 struct bcma_drv_cc
*cc
= &bus
->drv_cc
;
243 u8 cc_rev
= cc
->core
->id
.rev
;
246 struct bcma_device
*core
;
248 core
= bcma_find_core(bus
, BCMA_CORE_NS_ROM
);
250 switch (bcma_aread32(core
, BCMA_IOST
) &
251 BCMA_NS_ROM_IOST_BOOT_DEV_MASK
) {
252 case BCMA_NS_ROM_IOST_BOOT_DEV_NOR
:
253 return BCMA_BOOT_DEV_SERIAL
;
254 case BCMA_NS_ROM_IOST_BOOT_DEV_NAND
:
255 return BCMA_BOOT_DEV_NAND
;
256 case BCMA_NS_ROM_IOST_BOOT_DEV_ROM
:
258 return BCMA_BOOT_DEV_ROM
;
263 if (cc
->status
& BCMA_CC_CHIPST_5357_NAND_BOOT
)
264 return BCMA_BOOT_DEV_NAND
;
265 else if (cc
->status
& BIT(5))
266 return BCMA_BOOT_DEV_ROM
;
269 if ((cc
->capabilities
& BCMA_CC_CAP_FLASHT
) ==
271 return BCMA_BOOT_DEV_PARALLEL
;
273 return BCMA_BOOT_DEV_SERIAL
;
276 return BCMA_BOOT_DEV_SERIAL
;
279 static void bcma_core_mips_flash_detect(struct bcma_drv_mips
*mcore
)
281 struct bcma_bus
*bus
= mcore
->core
->bus
;
282 struct bcma_drv_cc
*cc
= &bus
->drv_cc
;
283 struct bcma_pflash
*pflash
= &cc
->pflash
;
284 enum bcma_boot_dev boot_dev
;
286 switch (cc
->capabilities
& BCMA_CC_CAP_FLASHT
) {
287 case BCMA_CC_FLASHT_STSER
:
288 case BCMA_CC_FLASHT_ATSER
:
289 bcma_debug(bus
, "Found serial flash\n");
290 bcma_sflash_init(cc
);
292 case BCMA_CC_FLASHT_PARA
:
293 bcma_debug(bus
, "Found parallel flash\n");
294 pflash
->present
= true;
295 pflash
->window
= BCMA_SOC_FLASH2
;
296 pflash
->window_size
= BCMA_SOC_FLASH2_SZ
;
298 if ((bcma_read32(cc
->core
, BCMA_CC_FLASH_CFG
) &
299 BCMA_CC_FLASH_CFG_DS
) == 0)
300 pflash
->buswidth
= 1;
302 pflash
->buswidth
= 2;
304 bcma_pflash_data
.width
= pflash
->buswidth
;
305 bcma_pflash_resource
.start
= pflash
->window
;
306 bcma_pflash_resource
.end
= pflash
->window
+ pflash
->window_size
;
310 bcma_err(bus
, "Flash type not supported\n");
313 if (cc
->core
->id
.rev
== 38 ||
314 bus
->chipinfo
.id
== BCMA_CHIP_ID_BCM4706
) {
315 if (cc
->capabilities
& BCMA_CC_CAP_NFLASH
) {
316 bcma_debug(bus
, "Found NAND flash\n");
317 bcma_nflash_init(cc
);
321 /* Determine flash type this SoC boots from */
322 boot_dev
= bcma_boot_dev(bus
);
324 case BCMA_BOOT_DEV_PARALLEL
:
325 case BCMA_BOOT_DEV_SERIAL
:
326 /* TODO: Init NVRAM using BCMA_SOC_FLASH2 window */
328 case BCMA_BOOT_DEV_NAND
:
329 /* TODO: Init NVRAM using BCMA_SOC_FLASH1 window */
336 void bcma_core_mips_early_init(struct bcma_drv_mips
*mcore
)
338 struct bcma_bus
*bus
= mcore
->core
->bus
;
340 if (mcore
->early_setup_done
)
343 bcma_chipco_serial_init(&bus
->drv_cc
);
344 bcma_core_mips_flash_detect(mcore
);
346 mcore
->early_setup_done
= true;
349 static void bcma_fix_i2s_irqflag(struct bcma_bus
*bus
)
351 struct bcma_device
*cpu
, *pcie
, *i2s
;
353 /* Fixup the interrupts in 4716/4748 for i2s core (2010 Broadcom SDK)
354 * (IRQ flags > 7 are ignored when setting the interrupt masks)
356 if (bus
->chipinfo
.id
!= BCMA_CHIP_ID_BCM4716
&&
357 bus
->chipinfo
.id
!= BCMA_CHIP_ID_BCM4748
)
360 cpu
= bcma_find_core(bus
, BCMA_CORE_MIPS_74K
);
361 pcie
= bcma_find_core(bus
, BCMA_CORE_PCIE
);
362 i2s
= bcma_find_core(bus
, BCMA_CORE_I2S
);
363 if (cpu
&& pcie
&& i2s
&&
364 bcma_aread32(cpu
, BCMA_MIPS_OOBSELINA74
) == 0x08060504 &&
365 bcma_aread32(pcie
, BCMA_MIPS_OOBSELINA74
) == 0x08060504 &&
366 bcma_aread32(i2s
, BCMA_MIPS_OOBSELOUTA30
) == 0x88) {
367 bcma_awrite32(cpu
, BCMA_MIPS_OOBSELINA74
, 0x07060504);
368 bcma_awrite32(pcie
, BCMA_MIPS_OOBSELINA74
, 0x07060504);
369 bcma_awrite32(i2s
, BCMA_MIPS_OOBSELOUTA30
, 0x87);
371 "Moved i2s interrupt to oob line 7 instead of 8\n");
375 void bcma_core_mips_init(struct bcma_drv_mips
*mcore
)
377 struct bcma_bus
*bus
;
378 struct bcma_device
*core
;
379 bus
= mcore
->core
->bus
;
381 if (mcore
->setup_done
)
384 bcma_debug(bus
, "Initializing MIPS core...\n");
386 bcma_core_mips_early_init(mcore
);
388 bcma_fix_i2s_irqflag(bus
);
390 switch (bus
->chipinfo
.id
) {
391 case BCMA_CHIP_ID_BCM4716
:
392 case BCMA_CHIP_ID_BCM4748
:
393 bcma_core_mips_set_irq_name(bus
, 1, BCMA_CORE_80211
, 0);
394 bcma_core_mips_set_irq_name(bus
, 2, BCMA_CORE_MAC_GBIT
, 0);
395 bcma_core_mips_set_irq_name(bus
, 3, BCMA_CORE_USB20_HOST
, 0);
396 bcma_core_mips_set_irq_name(bus
, 4, BCMA_CORE_PCIE
, 0);
397 bcma_core_mips_set_irq_name(bus
, 0, BCMA_CORE_CHIPCOMMON
, 0);
398 bcma_core_mips_set_irq_name(bus
, 0, BCMA_CORE_I2S
, 0);
400 case BCMA_CHIP_ID_BCM5356
:
401 case BCMA_CHIP_ID_BCM47162
:
402 case BCMA_CHIP_ID_BCM53572
:
403 bcma_core_mips_set_irq_name(bus
, 1, BCMA_CORE_80211
, 0);
404 bcma_core_mips_set_irq_name(bus
, 2, BCMA_CORE_MAC_GBIT
, 0);
405 bcma_core_mips_set_irq_name(bus
, 0, BCMA_CORE_CHIPCOMMON
, 0);
407 case BCMA_CHIP_ID_BCM5357
:
408 case BCMA_CHIP_ID_BCM4749
:
409 bcma_core_mips_set_irq_name(bus
, 1, BCMA_CORE_80211
, 0);
410 bcma_core_mips_set_irq_name(bus
, 2, BCMA_CORE_MAC_GBIT
, 0);
411 bcma_core_mips_set_irq_name(bus
, 3, BCMA_CORE_USB20_HOST
, 0);
412 bcma_core_mips_set_irq_name(bus
, 0, BCMA_CORE_CHIPCOMMON
, 0);
413 bcma_core_mips_set_irq_name(bus
, 0, BCMA_CORE_I2S
, 0);
415 case BCMA_CHIP_ID_BCM4706
:
416 bcma_core_mips_set_irq_name(bus
, 1, BCMA_CORE_PCIE
, 0);
417 bcma_core_mips_set_irq_name(bus
, 2, BCMA_CORE_4706_MAC_GBIT
,
419 bcma_core_mips_set_irq_name(bus
, 3, BCMA_CORE_PCIE
, 1);
420 bcma_core_mips_set_irq_name(bus
, 4, BCMA_CORE_USB20_HOST
, 0);
421 bcma_core_mips_set_irq_name(bus
, 0, BCMA_CORE_4706_CHIPCOMMON
,
425 list_for_each_entry(core
, &bus
->cores
, list
) {
426 core
->irq
= bcma_core_irq(core
);
429 "Unknown device (0x%x) found, can not configure IRQs\n",
432 bcma_debug(bus
, "IRQ reconfiguration done\n");
433 bcma_core_mips_dump_irq(bus
);
435 mcore
->setup_done
= true;