2 * Broadcom specific AMBA
5 * Licensed under the GNU/GPL. See COPYING for details.
9 #include "bcma_private.h"
11 #include <linux/bcma/bcma.h>
12 #include <linux/bcma/bcma_regs.h>
13 #include <linux/pci.h>
15 #include <linux/dma-mapping.h>
16 #include <linux/slab.h>
18 struct bcma_device_id_name
{
22 struct bcma_device_id_name bcma_device_names
[] = {
23 { BCMA_CORE_OOB_ROUTER
, "OOB Router" },
24 { BCMA_CORE_INVALID
, "Invalid" },
25 { BCMA_CORE_CHIPCOMMON
, "ChipCommon" },
26 { BCMA_CORE_ILINE20
, "ILine 20" },
27 { BCMA_CORE_SRAM
, "SRAM" },
28 { BCMA_CORE_SDRAM
, "SDRAM" },
29 { BCMA_CORE_PCI
, "PCI" },
30 { BCMA_CORE_MIPS
, "MIPS" },
31 { BCMA_CORE_ETHERNET
, "Fast Ethernet" },
32 { BCMA_CORE_V90
, "V90" },
33 { BCMA_CORE_USB11_HOSTDEV
, "USB 1.1 Hostdev" },
34 { BCMA_CORE_ADSL
, "ADSL" },
35 { BCMA_CORE_ILINE100
, "ILine 100" },
36 { BCMA_CORE_IPSEC
, "IPSEC" },
37 { BCMA_CORE_UTOPIA
, "UTOPIA" },
38 { BCMA_CORE_PCMCIA
, "PCMCIA" },
39 { BCMA_CORE_INTERNAL_MEM
, "Internal Memory" },
40 { BCMA_CORE_MEMC_SDRAM
, "MEMC SDRAM" },
41 { BCMA_CORE_OFDM
, "OFDM" },
42 { BCMA_CORE_EXTIF
, "EXTIF" },
43 { BCMA_CORE_80211
, "IEEE 802.11" },
44 { BCMA_CORE_PHY_A
, "PHY A" },
45 { BCMA_CORE_PHY_B
, "PHY B" },
46 { BCMA_CORE_PHY_G
, "PHY G" },
47 { BCMA_CORE_MIPS_3302
, "MIPS 3302" },
48 { BCMA_CORE_USB11_HOST
, "USB 1.1 Host" },
49 { BCMA_CORE_USB11_DEV
, "USB 1.1 Device" },
50 { BCMA_CORE_USB20_HOST
, "USB 2.0 Host" },
51 { BCMA_CORE_USB20_DEV
, "USB 2.0 Device" },
52 { BCMA_CORE_SDIO_HOST
, "SDIO Host" },
53 { BCMA_CORE_ROBOSWITCH
, "Roboswitch" },
54 { BCMA_CORE_PARA_ATA
, "PATA" },
55 { BCMA_CORE_SATA_XORDMA
, "SATA XOR-DMA" },
56 { BCMA_CORE_ETHERNET_GBIT
, "GBit Ethernet" },
57 { BCMA_CORE_PCIE
, "PCIe" },
58 { BCMA_CORE_PHY_N
, "PHY N" },
59 { BCMA_CORE_SRAM_CTL
, "SRAM Controller" },
60 { BCMA_CORE_MINI_MACPHY
, "Mini MACPHY" },
61 { BCMA_CORE_ARM_1176
, "ARM 1176" },
62 { BCMA_CORE_ARM_7TDMI
, "ARM 7TDMI" },
63 { BCMA_CORE_PHY_LP
, "PHY LP" },
64 { BCMA_CORE_PMU
, "PMU" },
65 { BCMA_CORE_PHY_SSN
, "PHY SSN" },
66 { BCMA_CORE_SDIO_DEV
, "SDIO Device" },
67 { BCMA_CORE_ARM_CM3
, "ARM CM3" },
68 { BCMA_CORE_PHY_HT
, "PHY HT" },
69 { BCMA_CORE_MIPS_74K
, "MIPS 74K" },
70 { BCMA_CORE_MAC_GBIT
, "GBit MAC" },
71 { BCMA_CORE_DDR12_MEM_CTL
, "DDR1/DDR2 Memory Controller" },
72 { BCMA_CORE_PCIE_RC
, "PCIe Root Complex" },
73 { BCMA_CORE_OCP_OCP_BRIDGE
, "OCP to OCP Bridge" },
74 { BCMA_CORE_SHARED_COMMON
, "Common Shared" },
75 { BCMA_CORE_OCP_AHB_BRIDGE
, "OCP to AHB Bridge" },
76 { BCMA_CORE_SPI_HOST
, "SPI Host" },
77 { BCMA_CORE_I2S
, "I2S" },
78 { BCMA_CORE_SDR_DDR1_MEM_CTL
, "SDR/DDR1 Memory Controller" },
79 { BCMA_CORE_SHIM
, "SHIM" },
80 { BCMA_CORE_DEFAULT
, "Default" },
82 const char *bcma_device_name(struct bcma_device_id
*id
)
86 if (id
->manuf
== BCMA_MANUF_BCM
) {
87 for (i
= 0; i
< ARRAY_SIZE(bcma_device_names
); i
++) {
88 if (bcma_device_names
[i
].id
== id
->id
)
89 return bcma_device_names
[i
].name
;
95 static u32
bcma_scan_read32(struct bcma_bus
*bus
, u8 current_coreidx
,
98 return readl(bus
->mmio
+ offset
);
101 static void bcma_scan_switch_core(struct bcma_bus
*bus
, u32 addr
)
103 if (bus
->hosttype
== BCMA_HOSTTYPE_PCI
)
104 pci_write_config_dword(bus
->host_pci
, BCMA_PCI_BAR0_WIN
,
108 static u32
bcma_erom_get_ent(struct bcma_bus
*bus
, u32
**eromptr
)
110 u32 ent
= readl(*eromptr
);
115 static void bcma_erom_push_ent(u32
**eromptr
)
120 static s32
bcma_erom_get_ci(struct bcma_bus
*bus
, u32
**eromptr
)
122 u32 ent
= bcma_erom_get_ent(bus
, eromptr
);
123 if (!(ent
& SCAN_ER_VALID
))
125 if ((ent
& SCAN_ER_TAG
) != SCAN_ER_TAG_CI
)
130 static bool bcma_erom_is_end(struct bcma_bus
*bus
, u32
**eromptr
)
132 u32 ent
= bcma_erom_get_ent(bus
, eromptr
);
133 bcma_erom_push_ent(eromptr
);
134 return (ent
== (SCAN_ER_TAG_END
| SCAN_ER_VALID
));
137 static bool bcma_erom_is_bridge(struct bcma_bus
*bus
, u32
**eromptr
)
139 u32 ent
= bcma_erom_get_ent(bus
, eromptr
);
140 bcma_erom_push_ent(eromptr
);
141 return (((ent
& SCAN_ER_VALID
)) &&
142 ((ent
& SCAN_ER_TAGX
) == SCAN_ER_TAG_ADDR
) &&
143 ((ent
& SCAN_ADDR_TYPE
) == SCAN_ADDR_TYPE_BRIDGE
));
146 static void bcma_erom_skip_component(struct bcma_bus
*bus
, u32
**eromptr
)
150 ent
= bcma_erom_get_ent(bus
, eromptr
);
151 if ((ent
& SCAN_ER_VALID
) &&
152 ((ent
& SCAN_ER_TAG
) == SCAN_ER_TAG_CI
))
154 if (ent
== (SCAN_ER_TAG_END
| SCAN_ER_VALID
))
157 bcma_erom_push_ent(eromptr
);
160 static s32
bcma_erom_get_mst_port(struct bcma_bus
*bus
, u32
**eromptr
)
162 u32 ent
= bcma_erom_get_ent(bus
, eromptr
);
163 if (!(ent
& SCAN_ER_VALID
))
165 if ((ent
& SCAN_ER_TAG
) != SCAN_ER_TAG_MP
)
170 static s32
bcma_erom_get_addr_desc(struct bcma_bus
*bus
, u32
**eromptr
,
173 u32 addrl
, addrh
, sizel
, sizeh
= 0;
176 u32 ent
= bcma_erom_get_ent(bus
, eromptr
);
177 if ((!(ent
& SCAN_ER_VALID
)) ||
178 ((ent
& SCAN_ER_TAGX
) != SCAN_ER_TAG_ADDR
) ||
179 ((ent
& SCAN_ADDR_TYPE
) != type
) ||
180 (((ent
& SCAN_ADDR_PORT
) >> SCAN_ADDR_PORT_SHIFT
) != port
)) {
181 bcma_erom_push_ent(eromptr
);
185 addrl
= ent
& SCAN_ADDR_ADDR
;
186 if (ent
& SCAN_ADDR_AG32
)
187 addrh
= bcma_erom_get_ent(bus
, eromptr
);
191 if ((ent
& SCAN_ADDR_SZ
) == SCAN_ADDR_SZ_SZD
) {
192 size
= bcma_erom_get_ent(bus
, eromptr
);
193 sizel
= size
& SCAN_SIZE_SZ
;
194 if (size
& SCAN_SIZE_SG32
)
195 sizeh
= bcma_erom_get_ent(bus
, eromptr
);
197 sizel
= SCAN_ADDR_SZ_BASE
<<
198 ((ent
& SCAN_ADDR_SZ
) >> SCAN_ADDR_SZ_SHIFT
);
203 int bcma_bus_scan(struct bcma_bus
*bus
)
206 u32 __iomem
*eromptr
, *eromend
;
209 u8 ports
[2], wrappers
[2];
216 INIT_LIST_HEAD(&bus
->cores
);
219 bcma_scan_switch_core(bus
, BCMA_ADDR_BASE
);
221 tmp
= bcma_scan_read32(bus
, 0, BCMA_CC_ID
);
222 bus
->chipinfo
.id
= (tmp
& BCMA_CC_ID_ID
) >> BCMA_CC_ID_ID_SHIFT
;
223 bus
->chipinfo
.rev
= (tmp
& BCMA_CC_ID_REV
) >> BCMA_CC_ID_REV_SHIFT
;
224 bus
->chipinfo
.pkg
= (tmp
& BCMA_CC_ID_PKG
) >> BCMA_CC_ID_PKG_SHIFT
;
226 erombase
= bcma_scan_read32(bus
, 0, BCMA_CC_EROM
);
228 eromend
= eromptr
+ BCMA_CORE_SIZE
/ sizeof(u32
);
230 bcma_scan_switch_core(bus
, erombase
);
232 while (eromptr
< eromend
) {
233 struct bcma_device
*core
= kzalloc(sizeof(*core
), GFP_KERNEL
);
236 INIT_LIST_HEAD(&core
->list
);
240 cia
= bcma_erom_get_ci(bus
, &eromptr
);
242 bcma_erom_push_ent(&eromptr
);
243 if (bcma_erom_is_end(bus
, &eromptr
))
248 cib
= bcma_erom_get_ci(bus
, &eromptr
);
255 core
->id
.class = (cia
& SCAN_CIA_CLASS
) >> SCAN_CIA_CLASS_SHIFT
;
256 core
->id
.id
= (cia
& SCAN_CIA_ID
) >> SCAN_CIA_ID_SHIFT
;
257 core
->id
.manuf
= (cia
& SCAN_CIA_MANUF
) >> SCAN_CIA_MANUF_SHIFT
;
258 ports
[0] = (cib
& SCAN_CIB_NMP
) >> SCAN_CIB_NMP_SHIFT
;
259 ports
[1] = (cib
& SCAN_CIB_NSP
) >> SCAN_CIB_NSP_SHIFT
;
260 wrappers
[0] = (cib
& SCAN_CIB_NMW
) >> SCAN_CIB_NMW_SHIFT
;
261 wrappers
[1] = (cib
& SCAN_CIB_NSW
) >> SCAN_CIB_NSW_SHIFT
;
262 core
->id
.rev
= (cib
& SCAN_CIB_REV
) >> SCAN_CIB_REV_SHIFT
;
264 if (((core
->id
.manuf
== BCMA_MANUF_ARM
) &&
265 (core
->id
.id
== 0xFFF)) ||
267 bcma_erom_skip_component(bus
, &eromptr
);
271 /* check if component is a core at all */
272 if (wrappers
[0] + wrappers
[1] == 0) {
273 /* we could save addrl of the router
274 if (cid == BCMA_CORE_OOB_ROUTER)
276 bcma_erom_skip_component(bus
, &eromptr
);
280 if (bcma_erom_is_bridge(bus
, &eromptr
)) {
281 bcma_erom_skip_component(bus
, &eromptr
);
285 /* get & parse master ports */
286 for (i
= 0; i
< ports
[0]; i
++) {
287 u32 mst_port_d
= bcma_erom_get_mst_port(bus
, &eromptr
);
288 if (mst_port_d
< 0) {
294 /* get & parse slave ports */
295 for (i
= 0; i
< ports
[1]; i
++) {
297 tmp
= bcma_erom_get_addr_desc(bus
, &eromptr
,
298 SCAN_ADDR_TYPE_SLAVE
, i
);
300 /* no more entries for port _i_ */
301 /* pr_debug("erom: slave port %d "
302 * "has %d descriptors\n", i, j); */
305 if (i
== 0 && j
== 0)
311 /* get & parse master wrappers */
312 for (i
= 0; i
< wrappers
[0]; i
++) {
314 tmp
= bcma_erom_get_addr_desc(bus
, &eromptr
,
315 SCAN_ADDR_TYPE_MWRAP
, i
);
317 /* no more entries for port _i_ */
318 /* pr_debug("erom: master wrapper %d "
319 * "has %d descriptors\n", i, j); */
322 if (i
== 0 && j
== 0)
328 /* get & parse slave wrappers */
329 for (i
= 0; i
< wrappers
[1]; i
++) {
330 u8 hack
= (ports
[1] == 1) ? 0 : 1;
332 tmp
= bcma_erom_get_addr_desc(bus
, &eromptr
,
333 SCAN_ADDR_TYPE_SWRAP
, i
+ hack
);
335 /* no more entries for port _i_ */
336 /* pr_debug("erom: master wrapper %d "
337 * has %d descriptors\n", i, j); */
340 if (wrappers
[0] == 0 && !i
&& !j
)
346 pr_info("Core %d found: %s "
347 "(manuf 0x%03X, id 0x%03X, rev 0x%02X, class 0x%X)\n",
348 bus
->nr_cores
, bcma_device_name(&core
->id
),
349 core
->id
.manuf
, core
->id
.id
, core
->id
.rev
,
352 core
->core_index
= bus
->nr_cores
++;
353 list_add(&core
->list
, &bus
->cores
);