blob: 95ba5756c67e221d1d0a27a6be7ea6e938b472c6 [file] [log] [blame]
Rafał Miłecki8369ae32011-05-09 18:56:46 +02001/*
2 * Broadcom specific AMBA
3 * Bus subsystem
4 *
5 * Licensed under the GNU/GPL. See COPYING for details.
6 */
7
8#include "bcma_private.h"
Paul Gortmaker200351c2011-07-01 16:06:37 -04009#include <linux/module.h>
Rafał Miłeckid57ef3a2012-08-10 21:23:53 +020010#include <linux/platform_device.h>
Rafał Miłecki8369ae32011-05-09 18:56:46 +020011#include <linux/bcma/bcma.h>
Geert Uytterhoeveneef72692011-06-26 10:19:44 +020012#include <linux/slab.h>
Rafał Miłecki8369ae32011-05-09 18:56:46 +020013
14MODULE_DESCRIPTION("Broadcom's specific AMBA driver");
15MODULE_LICENSE("GPL");
16
Hauke Mehrtens8f9ada42012-01-31 00:03:36 +010017/* contains the number the next bus should get. */
18static unsigned int bcma_bus_next_num = 0;
19
20/* bcma_buses_mutex locks the bcma_bus_next_num */
21static DEFINE_MUTEX(bcma_buses_mutex);
22
Rafał Miłecki8369ae32011-05-09 18:56:46 +020023static int bcma_bus_match(struct device *dev, struct device_driver *drv);
24static int bcma_device_probe(struct device *dev);
25static int bcma_device_remove(struct device *dev);
David Woodhouse886b66e2011-08-19 22:14:47 +020026static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020027
28static ssize_t manuf_show(struct device *dev, struct device_attribute *attr, char *buf)
29{
30 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
31 return sprintf(buf, "0x%03X\n", core->id.manuf);
32}
33static ssize_t id_show(struct device *dev, struct device_attribute *attr, char *buf)
34{
35 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
36 return sprintf(buf, "0x%03X\n", core->id.id);
37}
38static ssize_t rev_show(struct device *dev, struct device_attribute *attr, char *buf)
39{
40 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
41 return sprintf(buf, "0x%02X\n", core->id.rev);
42}
43static ssize_t class_show(struct device *dev, struct device_attribute *attr, char *buf)
44{
45 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
46 return sprintf(buf, "0x%X\n", core->id.class);
47}
48static struct device_attribute bcma_device_attrs[] = {
49 __ATTR_RO(manuf),
50 __ATTR_RO(id),
51 __ATTR_RO(rev),
52 __ATTR_RO(class),
53 __ATTR_NULL,
54};
55
56static struct bus_type bcma_bus_type = {
57 .name = "bcma",
58 .match = bcma_bus_match,
59 .probe = bcma_device_probe,
60 .remove = bcma_device_remove,
David Woodhouse886b66e2011-08-19 22:14:47 +020061 .uevent = bcma_device_uevent,
Rafał Miłecki8369ae32011-05-09 18:56:46 +020062 .dev_attrs = bcma_device_attrs,
63};
64
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +020065static u16 bcma_cc_core_id(struct bcma_bus *bus)
66{
67 if (bus->chipinfo.id == BCMA_CHIP_ID_BCM4706)
68 return BCMA_CORE_4706_CHIPCOMMON;
69 return BCMA_CORE_CHIPCOMMON;
70}
71
Hauke Mehrtens1c9351c2012-02-28 00:56:09 +010072struct bcma_device *bcma_find_core(struct bcma_bus *bus, u16 coreid)
Rafał Miłecki8369ae32011-05-09 18:56:46 +020073{
74 struct bcma_device *core;
75
76 list_for_each_entry(core, &bus->cores, list) {
77 if (core->id.id == coreid)
78 return core;
79 }
80 return NULL;
81}
Hauke Mehrtens1c9351c2012-02-28 00:56:09 +010082EXPORT_SYMBOL_GPL(bcma_find_core);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020083
Hauke Mehrtens929a03a2013-01-04 00:51:20 +010084struct bcma_device *bcma_find_core_unit(struct bcma_bus *bus, u16 coreid,
85 u8 unit)
Hauke Mehrtensdfae7142012-09-29 20:40:18 +020086{
87 struct bcma_device *core;
88
89 list_for_each_entry(core, &bus->cores, list) {
90 if (core->id.id == coreid && core->core_unit == unit)
91 return core;
92 }
93 return NULL;
94}
95
Rafał Miłecki8369ae32011-05-09 18:56:46 +020096static void bcma_release_core_dev(struct device *dev)
97{
98 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
Hauke Mehrtensecd177c2011-07-23 01:20:08 +020099 if (core->io_addr)
100 iounmap(core->io_addr);
101 if (core->io_wrap)
102 iounmap(core->io_wrap);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200103 kfree(core);
104}
105
106static int bcma_register_cores(struct bcma_bus *bus)
107{
108 struct bcma_device *core;
109 int err, dev_id = 0;
110
111 list_for_each_entry(core, &bus->cores, list) {
112 /* We support that cores ourself */
113 switch (core->id.id) {
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200114 case BCMA_CORE_4706_CHIPCOMMON:
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200115 case BCMA_CORE_CHIPCOMMON:
116 case BCMA_CORE_PCI:
117 case BCMA_CORE_PCIE:
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200118 case BCMA_CORE_MIPS_74K:
Rafał Miłeckie1ac4b42012-07-11 09:23:43 +0200119 case BCMA_CORE_4706_MAC_GBIT_COMMON:
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200120 continue;
121 }
122
123 core->dev.release = bcma_release_core_dev;
124 core->dev.bus = &bcma_bus_type;
Hauke Mehrtens8f9ada42012-01-31 00:03:36 +0100125 dev_set_name(&core->dev, "bcma%d:%d", bus->num, dev_id);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200126
127 switch (bus->hosttype) {
128 case BCMA_HOSTTYPE_PCI:
129 core->dev.parent = &bus->host_pci->dev;
Rafał Miłecki1bdcd092011-05-18 11:40:22 +0200130 core->dma_dev = &bus->host_pci->dev;
131 core->irq = bus->host_pci->irq;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200132 break;
Hauke Mehrtensecd177c2011-07-23 01:20:08 +0200133 case BCMA_HOSTTYPE_SOC:
134 core->dev.dma_mask = &core->dev.coherent_dma_mask;
135 core->dma_dev = &core->dev;
136 break;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200137 case BCMA_HOSTTYPE_SDIO:
138 break;
139 }
140
141 err = device_register(&core->dev);
142 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200143 bcma_err(bus,
144 "Could not register dev for core 0x%03X\n",
145 core->id.id);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200146 continue;
147 }
148 core->dev_registered = true;
149 dev_id++;
150 }
151
Rafał Miłecki73e4dbe42013-01-25 11:37:26 +0100152#ifdef CONFIG_BCMA_DRIVER_MIPS
153 if (bus->drv_cc.pflash.present) {
154 err = platform_device_register(&bcma_pflash_dev);
155 if (err)
156 bcma_err(bus, "Error registering parallel flash\n");
157 }
158#endif
159
Rafał Miłeckid57ef3a2012-08-10 21:23:53 +0200160#ifdef CONFIG_BCMA_SFLASH
161 if (bus->drv_cc.sflash.present) {
162 err = platform_device_register(&bcma_sflash_dev);
163 if (err)
164 bcma_err(bus, "Error registering serial flash\n");
165 }
166#endif
167
Rafał Miłecki371a0042012-08-12 13:08:05 +0200168#ifdef CONFIG_BCMA_NFLASH
169 if (bus->drv_cc.nflash.present) {
170 err = platform_device_register(&bcma_nflash_dev);
171 if (err)
172 bcma_err(bus, "Error registering NAND flash\n");
173 }
174#endif
Hauke Mehrtenscf0936b2012-11-20 22:24:30 +0000175 err = bcma_gpio_init(&bus->drv_cc);
176 if (err == -ENOTSUPP)
177 bcma_debug(bus, "GPIO driver not activated\n");
178 else if (err)
179 bcma_err(bus, "Error registering GPIO driver: %i\n", err);
Rafał Miłecki371a0042012-08-12 13:08:05 +0200180
Hauke Mehrtensa4855f392012-12-05 18:46:02 +0100181 if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
182 err = bcma_chipco_watchdog_register(&bus->drv_cc);
183 if (err)
184 bcma_err(bus, "Error registering watchdog driver\n");
185 }
186
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200187 return 0;
188}
189
190static void bcma_unregister_cores(struct bcma_bus *bus)
191{
Piotr Haber1fffa902012-10-11 14:05:15 +0200192 struct bcma_device *core, *tmp;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200193
Piotr Haber1fffa902012-10-11 14:05:15 +0200194 list_for_each_entry_safe(core, tmp, &bus->cores, list) {
195 list_del(&core->list);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200196 if (core->dev_registered)
197 device_unregister(&core->dev);
198 }
Hauke Mehrtensa4855f392012-12-05 18:46:02 +0100199 if (bus->hosttype == BCMA_HOSTTYPE_SOC)
200 platform_device_unregister(bus->drv_cc.watchdog);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200201}
202
Hauke Mehrtensd1a7a8e2012-01-31 00:03:34 +0100203int __devinit bcma_bus_register(struct bcma_bus *bus)
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200204{
205 int err;
206 struct bcma_device *core;
207
Hauke Mehrtens8f9ada42012-01-31 00:03:36 +0100208 mutex_lock(&bcma_buses_mutex);
209 bus->num = bcma_bus_next_num++;
210 mutex_unlock(&bcma_buses_mutex);
211
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200212 /* Scan for devices (cores) */
213 err = bcma_bus_scan(bus);
214 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200215 bcma_err(bus, "Failed to scan: %d\n", err);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200216 return -1;
217 }
218
Hauke Mehrtens30cfb022012-09-29 20:29:50 +0200219 /* Early init CC core */
220 core = bcma_find_core(bus, bcma_cc_core_id(bus));
221 if (core) {
222 bus->drv_cc.core = core;
223 bcma_core_chipcommon_early_init(&bus->drv_cc);
224 }
225
226 /* Try to get SPROM */
227 err = bcma_sprom_get(bus);
228 if (err == -ENOENT) {
229 bcma_err(bus, "No SPROM available\n");
230 } else if (err)
231 bcma_err(bus, "Failed to get SPROM: %d\n", err);
232
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200233 /* Init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200234 core = bcma_find_core(bus, bcma_cc_core_id(bus));
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200235 if (core) {
236 bus->drv_cc.core = core;
237 bcma_core_chipcommon_init(&bus->drv_cc);
238 }
239
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200240 /* Init MIPS core */
241 core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
242 if (core) {
243 bus->drv_mips.core = core;
244 bcma_core_mips_init(&bus->drv_mips);
245 }
246
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200247 /* Init PCIE core */
Hauke Mehrtensdfae7142012-09-29 20:40:18 +0200248 core = bcma_find_core_unit(bus, BCMA_CORE_PCIE, 0);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200249 if (core) {
Hauke Mehrtensdfae7142012-09-29 20:40:18 +0200250 bus->drv_pci[0].core = core;
251 bcma_core_pci_init(&bus->drv_pci[0]);
252 }
253
254 /* Init PCIE core */
255 core = bcma_find_core_unit(bus, BCMA_CORE_PCIE, 1);
256 if (core) {
257 bus->drv_pci[1].core = core;
258 bcma_core_pci_init(&bus->drv_pci[1]);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200259 }
260
Rafał Miłeckie1ac4b42012-07-11 09:23:43 +0200261 /* Init GBIT MAC COMMON core */
262 core = bcma_find_core(bus, BCMA_CORE_4706_MAC_GBIT_COMMON);
263 if (core) {
264 bus->drv_gmac_cmn.core = core;
265 bcma_core_gmac_cmn_init(&bus->drv_gmac_cmn);
266 }
267
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200268 /* Register found cores */
269 bcma_register_cores(bus);
270
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200271 bcma_info(bus, "Bus registered\n");
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200272
273 return 0;
274}
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200275
276void bcma_bus_unregister(struct bcma_bus *bus)
277{
Saul St. Johnee915922012-08-16 15:42:30 -0500278 struct bcma_device *cores[3];
279
280 cores[0] = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
281 cores[1] = bcma_find_core(bus, BCMA_CORE_PCIE);
282 cores[2] = bcma_find_core(bus, BCMA_CORE_4706_MAC_GBIT_COMMON);
283
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200284 bcma_unregister_cores(bus);
Saul St. Johnee915922012-08-16 15:42:30 -0500285
286 kfree(cores[2]);
287 kfree(cores[1]);
288 kfree(cores[0]);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200289}
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200290
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200291int __init bcma_bus_early_register(struct bcma_bus *bus,
292 struct bcma_device *core_cc,
293 struct bcma_device *core_mips)
294{
295 int err;
296 struct bcma_device *core;
297 struct bcma_device_id match;
298
299 bcma_init_bus(bus);
300
301 match.manuf = BCMA_MANUF_BCM;
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200302 match.id = bcma_cc_core_id(bus);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200303 match.class = BCMA_CL_SIM;
304 match.rev = BCMA_ANY_REV;
305
306 /* Scan for chip common core */
307 err = bcma_bus_scan_early(bus, &match, core_cc);
308 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200309 bcma_err(bus, "Failed to scan for common core: %d\n", err);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200310 return -1;
311 }
312
313 match.manuf = BCMA_MANUF_MIPS;
314 match.id = BCMA_CORE_MIPS_74K;
315 match.class = BCMA_CL_SIM;
316 match.rev = BCMA_ANY_REV;
317
318 /* Scan for mips core */
319 err = bcma_bus_scan_early(bus, &match, core_mips);
320 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200321 bcma_err(bus, "Failed to scan for mips core: %d\n", err);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200322 return -1;
323 }
324
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200325 /* Early init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200326 core = bcma_find_core(bus, bcma_cc_core_id(bus));
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200327 if (core) {
328 bus->drv_cc.core = core;
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200329 bcma_core_chipcommon_early_init(&bus->drv_cc);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200330 }
331
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200332 /* Early init MIPS core */
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200333 core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
334 if (core) {
335 bus->drv_mips.core = core;
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200336 bcma_core_mips_early_init(&bus->drv_mips);
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200337 }
338
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200339 bcma_info(bus, "Early bus registered\n");
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200340
341 return 0;
342}
343
Rafał Miłecki775ab522011-12-09 22:16:07 +0100344#ifdef CONFIG_PM
Linus Torvalds685a4ef2012-01-13 23:58:40 +0100345int bcma_bus_suspend(struct bcma_bus *bus)
346{
Linus Torvalds7d5869e2012-01-13 23:58:41 +0100347 struct bcma_device *core;
348
349 list_for_each_entry(core, &bus->cores, list) {
350 struct device_driver *drv = core->dev.driver;
351 if (drv) {
352 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
353 if (adrv->suspend)
354 adrv->suspend(core);
355 }
356 }
Linus Torvalds685a4ef2012-01-13 23:58:40 +0100357 return 0;
358}
359
Rafał Miłecki775ab522011-12-09 22:16:07 +0100360int bcma_bus_resume(struct bcma_bus *bus)
361{
362 struct bcma_device *core;
363
364 /* Init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200365 if (bus->drv_cc.core) {
Rafał Miłecki775ab522011-12-09 22:16:07 +0100366 bus->drv_cc.setup_done = false;
367 bcma_core_chipcommon_init(&bus->drv_cc);
368 }
369
Linus Torvalds7d5869e2012-01-13 23:58:41 +0100370 list_for_each_entry(core, &bus->cores, list) {
371 struct device_driver *drv = core->dev.driver;
372 if (drv) {
373 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
374 if (adrv->resume)
375 adrv->resume(core);
376 }
377 }
378
Rafał Miłecki775ab522011-12-09 22:16:07 +0100379 return 0;
380}
381#endif
382
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200383int __bcma_driver_register(struct bcma_driver *drv, struct module *owner)
384{
385 drv->drv.name = drv->name;
386 drv->drv.bus = &bcma_bus_type;
387 drv->drv.owner = owner;
388
389 return driver_register(&drv->drv);
390}
391EXPORT_SYMBOL_GPL(__bcma_driver_register);
392
393void bcma_driver_unregister(struct bcma_driver *drv)
394{
395 driver_unregister(&drv->drv);
396}
397EXPORT_SYMBOL_GPL(bcma_driver_unregister);
398
399static int bcma_bus_match(struct device *dev, struct device_driver *drv)
400{
401 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
402 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
403 const struct bcma_device_id *cid = &core->id;
404 const struct bcma_device_id *did;
405
406 for (did = adrv->id_table; did->manuf || did->id || did->rev; did++) {
407 if ((did->manuf == cid->manuf || did->manuf == BCMA_ANY_MANUF) &&
408 (did->id == cid->id || did->id == BCMA_ANY_ID) &&
409 (did->rev == cid->rev || did->rev == BCMA_ANY_REV) &&
410 (did->class == cid->class || did->class == BCMA_ANY_CLASS))
411 return 1;
412 }
413 return 0;
414}
415
416static int bcma_device_probe(struct device *dev)
417{
418 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
419 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
420 drv);
421 int err = 0;
422
423 if (adrv->probe)
424 err = adrv->probe(core);
425
426 return err;
427}
428
429static int bcma_device_remove(struct device *dev)
430{
431 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
432 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
433 drv);
434
435 if (adrv->remove)
436 adrv->remove(core);
437
438 return 0;
439}
440
David Woodhouse886b66e2011-08-19 22:14:47 +0200441static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env)
442{
443 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
444
445 return add_uevent_var(env,
446 "MODALIAS=bcma:m%04Xid%04Xrev%02Xcl%02X",
447 core->id.manuf, core->id.id,
448 core->id.rev, core->id.class);
449}
450
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200451static int __init bcma_modinit(void)
452{
453 int err;
454
455 err = bus_register(&bcma_bus_type);
456 if (err)
457 return err;
458
459#ifdef CONFIG_BCMA_HOST_PCI
460 err = bcma_host_pci_init();
461 if (err) {
462 pr_err("PCI host initialization failed\n");
463 err = 0;
464 }
465#endif
466
467 return err;
468}
469fs_initcall(bcma_modinit);
470
471static void __exit bcma_modexit(void)
472{
473#ifdef CONFIG_BCMA_HOST_PCI
474 bcma_host_pci_exit();
475#endif
476 bus_unregister(&bcma_bus_type);
477}
478module_exit(bcma_modexit)