scan.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. /*
  2. * Broadcom specific AMBA
  3. * Bus scanning
  4. *
  5. * Licensed under the GNU/GPL. See COPYING for details.
  6. */
  7. #include "scan.h"
  8. #include "bcma_private.h"
  9. #include <linux/bcma/bcma.h>
  10. #include <linux/bcma/bcma_regs.h>
  11. #include <linux/pci.h>
  12. #include <linux/io.h>
  13. #include <linux/dma-mapping.h>
  14. #include <linux/slab.h>
  15. struct bcma_device_id_name {
  16. u16 id;
  17. const char *name;
  18. };
  19. struct bcma_device_id_name bcma_device_names[] = {
  20. { BCMA_CORE_OOB_ROUTER, "OOB Router" },
  21. { BCMA_CORE_INVALID, "Invalid" },
  22. { BCMA_CORE_CHIPCOMMON, "ChipCommon" },
  23. { BCMA_CORE_ILINE20, "ILine 20" },
  24. { BCMA_CORE_SRAM, "SRAM" },
  25. { BCMA_CORE_SDRAM, "SDRAM" },
  26. { BCMA_CORE_PCI, "PCI" },
  27. { BCMA_CORE_MIPS, "MIPS" },
  28. { BCMA_CORE_ETHERNET, "Fast Ethernet" },
  29. { BCMA_CORE_V90, "V90" },
  30. { BCMA_CORE_USB11_HOSTDEV, "USB 1.1 Hostdev" },
  31. { BCMA_CORE_ADSL, "ADSL" },
  32. { BCMA_CORE_ILINE100, "ILine 100" },
  33. { BCMA_CORE_IPSEC, "IPSEC" },
  34. { BCMA_CORE_UTOPIA, "UTOPIA" },
  35. { BCMA_CORE_PCMCIA, "PCMCIA" },
  36. { BCMA_CORE_INTERNAL_MEM, "Internal Memory" },
  37. { BCMA_CORE_MEMC_SDRAM, "MEMC SDRAM" },
  38. { BCMA_CORE_OFDM, "OFDM" },
  39. { BCMA_CORE_EXTIF, "EXTIF" },
  40. { BCMA_CORE_80211, "IEEE 802.11" },
  41. { BCMA_CORE_PHY_A, "PHY A" },
  42. { BCMA_CORE_PHY_B, "PHY B" },
  43. { BCMA_CORE_PHY_G, "PHY G" },
  44. { BCMA_CORE_MIPS_3302, "MIPS 3302" },
  45. { BCMA_CORE_USB11_HOST, "USB 1.1 Host" },
  46. { BCMA_CORE_USB11_DEV, "USB 1.1 Device" },
  47. { BCMA_CORE_USB20_HOST, "USB 2.0 Host" },
  48. { BCMA_CORE_USB20_DEV, "USB 2.0 Device" },
  49. { BCMA_CORE_SDIO_HOST, "SDIO Host" },
  50. { BCMA_CORE_ROBOSWITCH, "Roboswitch" },
  51. { BCMA_CORE_PARA_ATA, "PATA" },
  52. { BCMA_CORE_SATA_XORDMA, "SATA XOR-DMA" },
  53. { BCMA_CORE_ETHERNET_GBIT, "GBit Ethernet" },
  54. { BCMA_CORE_PCIE, "PCIe" },
  55. { BCMA_CORE_PHY_N, "PHY N" },
  56. { BCMA_CORE_SRAM_CTL, "SRAM Controller" },
  57. { BCMA_CORE_MINI_MACPHY, "Mini MACPHY" },
  58. { BCMA_CORE_ARM_1176, "ARM 1176" },
  59. { BCMA_CORE_ARM_7TDMI, "ARM 7TDMI" },
  60. { BCMA_CORE_PHY_LP, "PHY LP" },
  61. { BCMA_CORE_PMU, "PMU" },
  62. { BCMA_CORE_PHY_SSN, "PHY SSN" },
  63. { BCMA_CORE_SDIO_DEV, "SDIO Device" },
  64. { BCMA_CORE_ARM_CM3, "ARM CM3" },
  65. { BCMA_CORE_PHY_HT, "PHY HT" },
  66. { BCMA_CORE_MIPS_74K, "MIPS 74K" },
  67. { BCMA_CORE_MAC_GBIT, "GBit MAC" },
  68. { BCMA_CORE_DDR12_MEM_CTL, "DDR1/DDR2 Memory Controller" },
  69. { BCMA_CORE_PCIE_RC, "PCIe Root Complex" },
  70. { BCMA_CORE_OCP_OCP_BRIDGE, "OCP to OCP Bridge" },
  71. { BCMA_CORE_SHARED_COMMON, "Common Shared" },
  72. { BCMA_CORE_OCP_AHB_BRIDGE, "OCP to AHB Bridge" },
  73. { BCMA_CORE_SPI_HOST, "SPI Host" },
  74. { BCMA_CORE_I2S, "I2S" },
  75. { BCMA_CORE_SDR_DDR1_MEM_CTL, "SDR/DDR1 Memory Controller" },
  76. { BCMA_CORE_SHIM, "SHIM" },
  77. { BCMA_CORE_DEFAULT, "Default" },
  78. };
  79. const char *bcma_device_name(struct bcma_device_id *id)
  80. {
  81. int i;
  82. if (id->manuf == BCMA_MANUF_BCM) {
  83. for (i = 0; i < ARRAY_SIZE(bcma_device_names); i++) {
  84. if (bcma_device_names[i].id == id->id)
  85. return bcma_device_names[i].name;
  86. }
  87. }
  88. return "UNKNOWN";
  89. }
  90. static u32 bcma_scan_read32(struct bcma_bus *bus, u8 current_coreidx,
  91. u16 offset)
  92. {
  93. return readl(bus->mmio + offset);
  94. }
  95. static void bcma_scan_switch_core(struct bcma_bus *bus, u32 addr)
  96. {
  97. if (bus->hosttype == BCMA_HOSTTYPE_PCI)
  98. pci_write_config_dword(bus->host_pci, BCMA_PCI_BAR0_WIN,
  99. addr);
  100. }
  101. static u32 bcma_erom_get_ent(struct bcma_bus *bus, u32 **eromptr)
  102. {
  103. u32 ent = readl(*eromptr);
  104. (*eromptr)++;
  105. return ent;
  106. }
  107. static void bcma_erom_push_ent(u32 **eromptr)
  108. {
  109. (*eromptr)--;
  110. }
  111. static s32 bcma_erom_get_ci(struct bcma_bus *bus, u32 **eromptr)
  112. {
  113. u32 ent = bcma_erom_get_ent(bus, eromptr);
  114. if (!(ent & SCAN_ER_VALID))
  115. return -ENOENT;
  116. if ((ent & SCAN_ER_TAG) != SCAN_ER_TAG_CI)
  117. return -ENOENT;
  118. return ent;
  119. }
  120. static bool bcma_erom_is_end(struct bcma_bus *bus, u32 **eromptr)
  121. {
  122. u32 ent = bcma_erom_get_ent(bus, eromptr);
  123. bcma_erom_push_ent(eromptr);
  124. return (ent == (SCAN_ER_TAG_END | SCAN_ER_VALID));
  125. }
  126. static bool bcma_erom_is_bridge(struct bcma_bus *bus, u32 **eromptr)
  127. {
  128. u32 ent = bcma_erom_get_ent(bus, eromptr);
  129. bcma_erom_push_ent(eromptr);
  130. return (((ent & SCAN_ER_VALID)) &&
  131. ((ent & SCAN_ER_TAGX) == SCAN_ER_TAG_ADDR) &&
  132. ((ent & SCAN_ADDR_TYPE) == SCAN_ADDR_TYPE_BRIDGE));
  133. }
  134. static void bcma_erom_skip_component(struct bcma_bus *bus, u32 **eromptr)
  135. {
  136. u32 ent;
  137. while (1) {
  138. ent = bcma_erom_get_ent(bus, eromptr);
  139. if ((ent & SCAN_ER_VALID) &&
  140. ((ent & SCAN_ER_TAG) == SCAN_ER_TAG_CI))
  141. break;
  142. if (ent == (SCAN_ER_TAG_END | SCAN_ER_VALID))
  143. break;
  144. }
  145. bcma_erom_push_ent(eromptr);
  146. }
  147. static s32 bcma_erom_get_mst_port(struct bcma_bus *bus, u32 **eromptr)
  148. {
  149. u32 ent = bcma_erom_get_ent(bus, eromptr);
  150. if (!(ent & SCAN_ER_VALID))
  151. return -ENOENT;
  152. if ((ent & SCAN_ER_TAG) != SCAN_ER_TAG_MP)
  153. return -ENOENT;
  154. return ent;
  155. }
  156. static s32 bcma_erom_get_addr_desc(struct bcma_bus *bus, u32 **eromptr,
  157. u32 type, u8 port)
  158. {
  159. u32 addrl, addrh, sizel, sizeh = 0;
  160. u32 size;
  161. u32 ent = bcma_erom_get_ent(bus, eromptr);
  162. if ((!(ent & SCAN_ER_VALID)) ||
  163. ((ent & SCAN_ER_TAGX) != SCAN_ER_TAG_ADDR) ||
  164. ((ent & SCAN_ADDR_TYPE) != type) ||
  165. (((ent & SCAN_ADDR_PORT) >> SCAN_ADDR_PORT_SHIFT) != port)) {
  166. bcma_erom_push_ent(eromptr);
  167. return -EINVAL;
  168. }
  169. addrl = ent & SCAN_ADDR_ADDR;
  170. if (ent & SCAN_ADDR_AG32)
  171. addrh = bcma_erom_get_ent(bus, eromptr);
  172. else
  173. addrh = 0;
  174. if ((ent & SCAN_ADDR_SZ) == SCAN_ADDR_SZ_SZD) {
  175. size = bcma_erom_get_ent(bus, eromptr);
  176. sizel = size & SCAN_SIZE_SZ;
  177. if (size & SCAN_SIZE_SG32)
  178. sizeh = bcma_erom_get_ent(bus, eromptr);
  179. } else
  180. sizel = SCAN_ADDR_SZ_BASE <<
  181. ((ent & SCAN_ADDR_SZ) >> SCAN_ADDR_SZ_SHIFT);
  182. return addrl;
  183. }
  184. static struct bcma_device *bcma_find_core_by_index(struct bcma_bus *bus,
  185. u16 index)
  186. {
  187. struct bcma_device *core;
  188. list_for_each_entry(core, &bus->cores, list) {
  189. if (core->core_index == index)
  190. return core;
  191. }
  192. return NULL;
  193. }
  194. static struct bcma_device *bcma_find_core_reverse(struct bcma_bus *bus, u16 coreid)
  195. {
  196. struct bcma_device *core;
  197. list_for_each_entry_reverse(core, &bus->cores, list) {
  198. if (core->id.id == coreid)
  199. return core;
  200. }
  201. return NULL;
  202. }
  203. static int bcma_get_next_core(struct bcma_bus *bus, u32 __iomem **eromptr,
  204. struct bcma_device_id *match, int core_num,
  205. struct bcma_device *core)
  206. {
  207. s32 tmp;
  208. u8 i, j;
  209. s32 cia, cib;
  210. u8 ports[2], wrappers[2];
  211. /* get CIs */
  212. cia = bcma_erom_get_ci(bus, eromptr);
  213. if (cia < 0) {
  214. bcma_erom_push_ent(eromptr);
  215. if (bcma_erom_is_end(bus, eromptr))
  216. return -ESPIPE;
  217. return -EILSEQ;
  218. }
  219. cib = bcma_erom_get_ci(bus, eromptr);
  220. if (cib < 0)
  221. return -EILSEQ;
  222. /* parse CIs */
  223. core->id.class = (cia & SCAN_CIA_CLASS) >> SCAN_CIA_CLASS_SHIFT;
  224. core->id.id = (cia & SCAN_CIA_ID) >> SCAN_CIA_ID_SHIFT;
  225. core->id.manuf = (cia & SCAN_CIA_MANUF) >> SCAN_CIA_MANUF_SHIFT;
  226. ports[0] = (cib & SCAN_CIB_NMP) >> SCAN_CIB_NMP_SHIFT;
  227. ports[1] = (cib & SCAN_CIB_NSP) >> SCAN_CIB_NSP_SHIFT;
  228. wrappers[0] = (cib & SCAN_CIB_NMW) >> SCAN_CIB_NMW_SHIFT;
  229. wrappers[1] = (cib & SCAN_CIB_NSW) >> SCAN_CIB_NSW_SHIFT;
  230. core->id.rev = (cib & SCAN_CIB_REV) >> SCAN_CIB_REV_SHIFT;
  231. if (((core->id.manuf == BCMA_MANUF_ARM) &&
  232. (core->id.id == 0xFFF)) ||
  233. (ports[1] == 0)) {
  234. bcma_erom_skip_component(bus, eromptr);
  235. return -ENXIO;
  236. }
  237. /* check if component is a core at all */
  238. if (wrappers[0] + wrappers[1] == 0) {
  239. /* we could save addrl of the router
  240. if (cid == BCMA_CORE_OOB_ROUTER)
  241. */
  242. bcma_erom_skip_component(bus, eromptr);
  243. return -ENXIO;
  244. }
  245. if (bcma_erom_is_bridge(bus, eromptr)) {
  246. bcma_erom_skip_component(bus, eromptr);
  247. return -ENXIO;
  248. }
  249. if (bcma_find_core_by_index(bus, core_num)) {
  250. bcma_erom_skip_component(bus, eromptr);
  251. return -ENODEV;
  252. }
  253. if (match && ((match->manuf != BCMA_ANY_MANUF &&
  254. match->manuf != core->id.manuf) ||
  255. (match->id != BCMA_ANY_ID && match->id != core->id.id) ||
  256. (match->rev != BCMA_ANY_REV && match->rev != core->id.rev) ||
  257. (match->class != BCMA_ANY_CLASS && match->class != core->id.class)
  258. )) {
  259. bcma_erom_skip_component(bus, eromptr);
  260. return -ENODEV;
  261. }
  262. /* get & parse master ports */
  263. for (i = 0; i < ports[0]; i++) {
  264. s32 mst_port_d = bcma_erom_get_mst_port(bus, eromptr);
  265. if (mst_port_d < 0)
  266. return -EILSEQ;
  267. }
  268. /* get & parse slave ports */
  269. for (i = 0; i < ports[1]; i++) {
  270. for (j = 0; ; j++) {
  271. tmp = bcma_erom_get_addr_desc(bus, eromptr,
  272. SCAN_ADDR_TYPE_SLAVE, i);
  273. if (tmp < 0) {
  274. /* no more entries for port _i_ */
  275. /* pr_debug("erom: slave port %d "
  276. * "has %d descriptors\n", i, j); */
  277. break;
  278. } else {
  279. if (i == 0 && j == 0)
  280. core->addr = tmp;
  281. }
  282. }
  283. }
  284. /* get & parse master wrappers */
  285. for (i = 0; i < wrappers[0]; i++) {
  286. for (j = 0; ; j++) {
  287. tmp = bcma_erom_get_addr_desc(bus, eromptr,
  288. SCAN_ADDR_TYPE_MWRAP, i);
  289. if (tmp < 0) {
  290. /* no more entries for port _i_ */
  291. /* pr_debug("erom: master wrapper %d "
  292. * "has %d descriptors\n", i, j); */
  293. break;
  294. } else {
  295. if (i == 0 && j == 0)
  296. core->wrap = tmp;
  297. }
  298. }
  299. }
  300. /* get & parse slave wrappers */
  301. for (i = 0; i < wrappers[1]; i++) {
  302. u8 hack = (ports[1] == 1) ? 0 : 1;
  303. for (j = 0; ; j++) {
  304. tmp = bcma_erom_get_addr_desc(bus, eromptr,
  305. SCAN_ADDR_TYPE_SWRAP, i + hack);
  306. if (tmp < 0) {
  307. /* no more entries for port _i_ */
  308. /* pr_debug("erom: master wrapper %d "
  309. * has %d descriptors\n", i, j); */
  310. break;
  311. } else {
  312. if (wrappers[0] == 0 && !i && !j)
  313. core->wrap = tmp;
  314. }
  315. }
  316. }
  317. if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
  318. core->io_addr = ioremap_nocache(core->addr, BCMA_CORE_SIZE);
  319. if (!core->io_addr)
  320. return -ENOMEM;
  321. core->io_wrap = ioremap_nocache(core->wrap, BCMA_CORE_SIZE);
  322. if (!core->io_wrap) {
  323. iounmap(core->io_addr);
  324. return -ENOMEM;
  325. }
  326. }
  327. return 0;
  328. }
  329. void bcma_init_bus(struct bcma_bus *bus)
  330. {
  331. s32 tmp;
  332. struct bcma_chipinfo *chipinfo = &(bus->chipinfo);
  333. if (bus->init_done)
  334. return;
  335. INIT_LIST_HEAD(&bus->cores);
  336. bus->nr_cores = 0;
  337. bcma_scan_switch_core(bus, BCMA_ADDR_BASE);
  338. tmp = bcma_scan_read32(bus, 0, BCMA_CC_ID);
  339. chipinfo->id = (tmp & BCMA_CC_ID_ID) >> BCMA_CC_ID_ID_SHIFT;
  340. chipinfo->rev = (tmp & BCMA_CC_ID_REV) >> BCMA_CC_ID_REV_SHIFT;
  341. chipinfo->pkg = (tmp & BCMA_CC_ID_PKG) >> BCMA_CC_ID_PKG_SHIFT;
  342. pr_info("Found chip with id 0x%04X, rev 0x%02X and package 0x%02X\n",
  343. chipinfo->id, chipinfo->rev, chipinfo->pkg);
  344. bus->init_done = true;
  345. }
  346. int bcma_bus_scan(struct bcma_bus *bus)
  347. {
  348. u32 erombase;
  349. u32 __iomem *eromptr, *eromend;
  350. int err, core_num = 0;
  351. bcma_init_bus(bus);
  352. erombase = bcma_scan_read32(bus, 0, BCMA_CC_EROM);
  353. if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
  354. eromptr = ioremap_nocache(erombase, BCMA_CORE_SIZE);
  355. if (!eromptr)
  356. return -ENOMEM;
  357. } else {
  358. eromptr = bus->mmio;
  359. }
  360. eromend = eromptr + BCMA_CORE_SIZE / sizeof(u32);
  361. bcma_scan_switch_core(bus, erombase);
  362. while (eromptr < eromend) {
  363. struct bcma_device *other_core;
  364. struct bcma_device *core = kzalloc(sizeof(*core), GFP_KERNEL);
  365. if (!core)
  366. return -ENOMEM;
  367. INIT_LIST_HEAD(&core->list);
  368. core->bus = bus;
  369. err = bcma_get_next_core(bus, &eromptr, NULL, core_num, core);
  370. if (err < 0) {
  371. kfree(core);
  372. if (err == -ENODEV) {
  373. core_num++;
  374. continue;
  375. } else if (err == -ENXIO) {
  376. continue;
  377. } else if (err == -ESPIPE) {
  378. break;
  379. }
  380. return err;
  381. }
  382. core->core_index = core_num++;
  383. bus->nr_cores++;
  384. other_core = bcma_find_core_reverse(bus, core->id.id);
  385. core->core_unit = (other_core == NULL) ? 0 : other_core->core_unit + 1;
  386. pr_info("Core %d found: %s "
  387. "(manuf 0x%03X, id 0x%03X, rev 0x%02X, class 0x%X)\n",
  388. core->core_index, bcma_device_name(&core->id),
  389. core->id.manuf, core->id.id, core->id.rev,
  390. core->id.class);
  391. list_add(&core->list, &bus->cores);
  392. }
  393. if (bus->hosttype == BCMA_HOSTTYPE_SOC)
  394. iounmap(eromptr);
  395. return 0;
  396. }
  397. int __init bcma_bus_scan_early(struct bcma_bus *bus,
  398. struct bcma_device_id *match,
  399. struct bcma_device *core)
  400. {
  401. u32 erombase;
  402. u32 __iomem *eromptr, *eromend;
  403. int err = -ENODEV;
  404. int core_num = 0;
  405. erombase = bcma_scan_read32(bus, 0, BCMA_CC_EROM);
  406. if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
  407. eromptr = ioremap_nocache(erombase, BCMA_CORE_SIZE);
  408. if (!eromptr)
  409. return -ENOMEM;
  410. } else {
  411. eromptr = bus->mmio;
  412. }
  413. eromend = eromptr + BCMA_CORE_SIZE / sizeof(u32);
  414. bcma_scan_switch_core(bus, erombase);
  415. while (eromptr < eromend) {
  416. memset(core, 0, sizeof(*core));
  417. INIT_LIST_HEAD(&core->list);
  418. core->bus = bus;
  419. err = bcma_get_next_core(bus, &eromptr, match, core_num, core);
  420. if (err == -ENODEV) {
  421. core_num++;
  422. continue;
  423. } else if (err == -ENXIO)
  424. continue;
  425. else if (err == -ESPIPE)
  426. break;
  427. else if (err < 0)
  428. return err;
  429. core->core_index = core_num++;
  430. bus->nr_cores++;
  431. pr_info("Core %d found: %s "
  432. "(manuf 0x%03X, id 0x%03X, rev 0x%02X, class 0x%X)\n",
  433. core->core_index, bcma_device_name(&core->id),
  434. core->id.manuf, core->id.id, core->id.rev,
  435. core->id.class);
  436. list_add(&core->list, &bus->cores);
  437. err = 0;
  438. break;
  439. }
  440. if (bus->hosttype == BCMA_HOSTTYPE_SOC)
  441. iounmap(eromptr);
  442. return err;
  443. }