blob: f72f52b4b1dde78311ff4872f57eaf8d838ad456 [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
Rafał Miłecki10419d02013-02-19 19:41:42 +0100123 /* Only first GMAC core on BCM4706 is connected and working */
124 if (core->id.id == BCMA_CORE_4706_MAC_GBIT &&
125 core->core_unit > 0)
126 continue;
127
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200128 core->dev.release = bcma_release_core_dev;
129 core->dev.bus = &bcma_bus_type;
Hauke Mehrtens8f9ada42012-01-31 00:03:36 +0100130 dev_set_name(&core->dev, "bcma%d:%d", bus->num, dev_id);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200131
132 switch (bus->hosttype) {
133 case BCMA_HOSTTYPE_PCI:
134 core->dev.parent = &bus->host_pci->dev;
Rafał Miłecki1bdcd092011-05-18 11:40:22 +0200135 core->dma_dev = &bus->host_pci->dev;
136 core->irq = bus->host_pci->irq;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200137 break;
Hauke Mehrtensecd177c2011-07-23 01:20:08 +0200138 case BCMA_HOSTTYPE_SOC:
139 core->dev.dma_mask = &core->dev.coherent_dma_mask;
140 core->dma_dev = &core->dev;
141 break;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200142 case BCMA_HOSTTYPE_SDIO:
143 break;
144 }
145
146 err = device_register(&core->dev);
147 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200148 bcma_err(bus,
149 "Could not register dev for core 0x%03X\n",
150 core->id.id);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200151 continue;
152 }
153 core->dev_registered = true;
154 dev_id++;
155 }
156
Rafał Miłecki73e4dbe2013-01-25 11:37:26 +0100157#ifdef CONFIG_BCMA_DRIVER_MIPS
158 if (bus->drv_cc.pflash.present) {
159 err = platform_device_register(&bcma_pflash_dev);
160 if (err)
161 bcma_err(bus, "Error registering parallel flash\n");
162 }
163#endif
164
Rafał Miłeckid57ef3a2012-08-10 21:23:53 +0200165#ifdef CONFIG_BCMA_SFLASH
166 if (bus->drv_cc.sflash.present) {
167 err = platform_device_register(&bcma_sflash_dev);
168 if (err)
169 bcma_err(bus, "Error registering serial flash\n");
170 }
171#endif
172
Rafał Miłecki371a0042012-08-12 13:08:05 +0200173#ifdef CONFIG_BCMA_NFLASH
174 if (bus->drv_cc.nflash.present) {
175 err = platform_device_register(&bcma_nflash_dev);
176 if (err)
177 bcma_err(bus, "Error registering NAND flash\n");
178 }
179#endif
Hauke Mehrtenscf0936b2012-11-20 22:24:30 +0000180 err = bcma_gpio_init(&bus->drv_cc);
181 if (err == -ENOTSUPP)
182 bcma_debug(bus, "GPIO driver not activated\n");
183 else if (err)
184 bcma_err(bus, "Error registering GPIO driver: %i\n", err);
Rafał Miłecki371a0042012-08-12 13:08:05 +0200185
Hauke Mehrtensa4855f392012-12-05 18:46:02 +0100186 if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
187 err = bcma_chipco_watchdog_register(&bus->drv_cc);
188 if (err)
189 bcma_err(bus, "Error registering watchdog driver\n");
190 }
191
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200192 return 0;
193}
194
195static void bcma_unregister_cores(struct bcma_bus *bus)
196{
Piotr Haber1fffa902012-10-11 14:05:15 +0200197 struct bcma_device *core, *tmp;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200198
Piotr Haber1fffa902012-10-11 14:05:15 +0200199 list_for_each_entry_safe(core, tmp, &bus->cores, list) {
200 list_del(&core->list);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200201 if (core->dev_registered)
202 device_unregister(&core->dev);
203 }
Hauke Mehrtensa4855f392012-12-05 18:46:02 +0100204 if (bus->hosttype == BCMA_HOSTTYPE_SOC)
205 platform_device_unregister(bus->drv_cc.watchdog);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200206}
207
Greg Kroah-Hartman0f58a012012-12-21 15:12:59 -0800208int bcma_bus_register(struct bcma_bus *bus)
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200209{
210 int err;
211 struct bcma_device *core;
212
Hauke Mehrtens8f9ada42012-01-31 00:03:36 +0100213 mutex_lock(&bcma_buses_mutex);
214 bus->num = bcma_bus_next_num++;
215 mutex_unlock(&bcma_buses_mutex);
216
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200217 /* Scan for devices (cores) */
218 err = bcma_bus_scan(bus);
219 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200220 bcma_err(bus, "Failed to scan: %d\n", err);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200221 return -1;
222 }
223
Hauke Mehrtens30cfb022012-09-29 20:29:50 +0200224 /* Early init CC core */
225 core = bcma_find_core(bus, bcma_cc_core_id(bus));
226 if (core) {
227 bus->drv_cc.core = core;
228 bcma_core_chipcommon_early_init(&bus->drv_cc);
229 }
230
231 /* Try to get SPROM */
232 err = bcma_sprom_get(bus);
233 if (err == -ENOENT) {
234 bcma_err(bus, "No SPROM available\n");
235 } else if (err)
236 bcma_err(bus, "Failed to get SPROM: %d\n", err);
237
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200238 /* Init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200239 core = bcma_find_core(bus, bcma_cc_core_id(bus));
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200240 if (core) {
241 bus->drv_cc.core = core;
242 bcma_core_chipcommon_init(&bus->drv_cc);
243 }
244
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200245 /* Init MIPS core */
246 core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
247 if (core) {
248 bus->drv_mips.core = core;
249 bcma_core_mips_init(&bus->drv_mips);
250 }
251
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200252 /* Init PCIE core */
Hauke Mehrtensdfae7142012-09-29 20:40:18 +0200253 core = bcma_find_core_unit(bus, BCMA_CORE_PCIE, 0);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200254 if (core) {
Hauke Mehrtensdfae7142012-09-29 20:40:18 +0200255 bus->drv_pci[0].core = core;
256 bcma_core_pci_init(&bus->drv_pci[0]);
257 }
258
259 /* Init PCIE core */
260 core = bcma_find_core_unit(bus, BCMA_CORE_PCIE, 1);
261 if (core) {
262 bus->drv_pci[1].core = core;
263 bcma_core_pci_init(&bus->drv_pci[1]);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200264 }
265
Rafał Miłeckie1ac4b42012-07-11 09:23:43 +0200266 /* Init GBIT MAC COMMON core */
267 core = bcma_find_core(bus, BCMA_CORE_4706_MAC_GBIT_COMMON);
268 if (core) {
269 bus->drv_gmac_cmn.core = core;
270 bcma_core_gmac_cmn_init(&bus->drv_gmac_cmn);
271 }
272
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200273 /* Register found cores */
274 bcma_register_cores(bus);
275
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200276 bcma_info(bus, "Bus registered\n");
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200277
278 return 0;
279}
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200280
281void bcma_bus_unregister(struct bcma_bus *bus)
282{
Saul St. Johnee915922012-08-16 15:42:30 -0500283 struct bcma_device *cores[3];
Hauke Mehrtensc50ae942013-02-03 23:25:33 +0100284 int err;
285
286 err = bcma_gpio_unregister(&bus->drv_cc);
287 if (err == -EBUSY)
288 bcma_err(bus, "Some GPIOs are still in use.\n");
289 else if (err)
290 bcma_err(bus, "Can not unregister GPIO driver: %i\n", err);
Saul St. Johnee915922012-08-16 15:42:30 -0500291
292 cores[0] = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
293 cores[1] = bcma_find_core(bus, BCMA_CORE_PCIE);
294 cores[2] = bcma_find_core(bus, BCMA_CORE_4706_MAC_GBIT_COMMON);
295
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200296 bcma_unregister_cores(bus);
Saul St. Johnee915922012-08-16 15:42:30 -0500297
298 kfree(cores[2]);
299 kfree(cores[1]);
300 kfree(cores[0]);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200301}
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200302
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200303int __init bcma_bus_early_register(struct bcma_bus *bus,
304 struct bcma_device *core_cc,
305 struct bcma_device *core_mips)
306{
307 int err;
308 struct bcma_device *core;
309 struct bcma_device_id match;
310
311 bcma_init_bus(bus);
312
313 match.manuf = BCMA_MANUF_BCM;
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200314 match.id = bcma_cc_core_id(bus);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200315 match.class = BCMA_CL_SIM;
316 match.rev = BCMA_ANY_REV;
317
318 /* Scan for chip common core */
319 err = bcma_bus_scan_early(bus, &match, core_cc);
320 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200321 bcma_err(bus, "Failed to scan for common core: %d\n", err);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200322 return -1;
323 }
324
325 match.manuf = BCMA_MANUF_MIPS;
326 match.id = BCMA_CORE_MIPS_74K;
327 match.class = BCMA_CL_SIM;
328 match.rev = BCMA_ANY_REV;
329
330 /* Scan for mips core */
331 err = bcma_bus_scan_early(bus, &match, core_mips);
332 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200333 bcma_err(bus, "Failed to scan for mips core: %d\n", err);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200334 return -1;
335 }
336
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200337 /* Early init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200338 core = bcma_find_core(bus, bcma_cc_core_id(bus));
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200339 if (core) {
340 bus->drv_cc.core = core;
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200341 bcma_core_chipcommon_early_init(&bus->drv_cc);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200342 }
343
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200344 /* Early init MIPS core */
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200345 core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
346 if (core) {
347 bus->drv_mips.core = core;
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200348 bcma_core_mips_early_init(&bus->drv_mips);
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200349 }
350
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200351 bcma_info(bus, "Early bus registered\n");
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200352
353 return 0;
354}
355
Rafał Miłecki775ab522011-12-09 22:16:07 +0100356#ifdef CONFIG_PM
Linus Torvalds685a4ef2012-01-13 23:58:40 +0100357int bcma_bus_suspend(struct bcma_bus *bus)
358{
Linus Torvalds7d5869e2012-01-13 23:58:41 +0100359 struct bcma_device *core;
360
361 list_for_each_entry(core, &bus->cores, list) {
362 struct device_driver *drv = core->dev.driver;
363 if (drv) {
364 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
365 if (adrv->suspend)
366 adrv->suspend(core);
367 }
368 }
Linus Torvalds685a4ef2012-01-13 23:58:40 +0100369 return 0;
370}
371
Rafał Miłecki775ab522011-12-09 22:16:07 +0100372int bcma_bus_resume(struct bcma_bus *bus)
373{
374 struct bcma_device *core;
375
376 /* Init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200377 if (bus->drv_cc.core) {
Rafał Miłecki775ab522011-12-09 22:16:07 +0100378 bus->drv_cc.setup_done = false;
379 bcma_core_chipcommon_init(&bus->drv_cc);
380 }
381
Linus Torvalds7d5869e2012-01-13 23:58:41 +0100382 list_for_each_entry(core, &bus->cores, list) {
383 struct device_driver *drv = core->dev.driver;
384 if (drv) {
385 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
386 if (adrv->resume)
387 adrv->resume(core);
388 }
389 }
390
Rafał Miłecki775ab522011-12-09 22:16:07 +0100391 return 0;
392}
393#endif
394
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200395int __bcma_driver_register(struct bcma_driver *drv, struct module *owner)
396{
397 drv->drv.name = drv->name;
398 drv->drv.bus = &bcma_bus_type;
399 drv->drv.owner = owner;
400
401 return driver_register(&drv->drv);
402}
403EXPORT_SYMBOL_GPL(__bcma_driver_register);
404
405void bcma_driver_unregister(struct bcma_driver *drv)
406{
407 driver_unregister(&drv->drv);
408}
409EXPORT_SYMBOL_GPL(bcma_driver_unregister);
410
411static int bcma_bus_match(struct device *dev, struct device_driver *drv)
412{
413 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
414 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
415 const struct bcma_device_id *cid = &core->id;
416 const struct bcma_device_id *did;
417
418 for (did = adrv->id_table; did->manuf || did->id || did->rev; did++) {
419 if ((did->manuf == cid->manuf || did->manuf == BCMA_ANY_MANUF) &&
420 (did->id == cid->id || did->id == BCMA_ANY_ID) &&
421 (did->rev == cid->rev || did->rev == BCMA_ANY_REV) &&
422 (did->class == cid->class || did->class == BCMA_ANY_CLASS))
423 return 1;
424 }
425 return 0;
426}
427
428static int bcma_device_probe(struct device *dev)
429{
430 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
431 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
432 drv);
433 int err = 0;
434
435 if (adrv->probe)
436 err = adrv->probe(core);
437
438 return err;
439}
440
441static int bcma_device_remove(struct device *dev)
442{
443 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
444 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
445 drv);
446
447 if (adrv->remove)
448 adrv->remove(core);
449
450 return 0;
451}
452
David Woodhouse886b66e2011-08-19 22:14:47 +0200453static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env)
454{
455 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
456
457 return add_uevent_var(env,
458 "MODALIAS=bcma:m%04Xid%04Xrev%02Xcl%02X",
459 core->id.manuf, core->id.id,
460 core->id.rev, core->id.class);
461}
462
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200463static int __init bcma_modinit(void)
464{
465 int err;
466
467 err = bus_register(&bcma_bus_type);
468 if (err)
469 return err;
470
471#ifdef CONFIG_BCMA_HOST_PCI
472 err = bcma_host_pci_init();
473 if (err) {
474 pr_err("PCI host initialization failed\n");
475 err = 0;
476 }
477#endif
478
479 return err;
480}
481fs_initcall(bcma_modinit);
482
483static void __exit bcma_modexit(void)
484{
485#ifdef CONFIG_BCMA_HOST_PCI
486 bcma_host_pci_exit();
487#endif
488 bus_unregister(&bcma_bus_type);
489}
490module_exit(bcma_modexit)