blob: d1656c2f70afa43198066681f6a02ded26eab80b [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>
Hauke Mehrtens2101e532014-09-26 00:09:19 +020013#include <linux/of_address.h>
Rafał Miłecki8369ae32011-05-09 18:56:46 +020014
15MODULE_DESCRIPTION("Broadcom's specific AMBA driver");
16MODULE_LICENSE("GPL");
17
Hauke Mehrtens8f9ada42012-01-31 00:03:36 +010018/* contains the number the next bus should get. */
19static unsigned int bcma_bus_next_num = 0;
20
21/* bcma_buses_mutex locks the bcma_bus_next_num */
22static DEFINE_MUTEX(bcma_buses_mutex);
23
Rafał Miłecki8369ae32011-05-09 18:56:46 +020024static int bcma_bus_match(struct device *dev, struct device_driver *drv);
25static int bcma_device_probe(struct device *dev);
26static int bcma_device_remove(struct device *dev);
David Woodhouse886b66e2011-08-19 22:14:47 +020027static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020028
29static ssize_t manuf_show(struct device *dev, struct device_attribute *attr, char *buf)
30{
31 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
32 return sprintf(buf, "0x%03X\n", core->id.manuf);
33}
Greg Kroah-Hartmanfdcf4f82013-10-06 23:55:45 -070034static DEVICE_ATTR_RO(manuf);
35
Rafał Miłecki8369ae32011-05-09 18:56:46 +020036static ssize_t id_show(struct device *dev, struct device_attribute *attr, char *buf)
37{
38 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
39 return sprintf(buf, "0x%03X\n", core->id.id);
40}
Greg Kroah-Hartmanfdcf4f82013-10-06 23:55:45 -070041static DEVICE_ATTR_RO(id);
42
Rafał Miłecki8369ae32011-05-09 18:56:46 +020043static ssize_t rev_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%02X\n", core->id.rev);
47}
Greg Kroah-Hartmanfdcf4f82013-10-06 23:55:45 -070048static DEVICE_ATTR_RO(rev);
49
Rafał Miłecki8369ae32011-05-09 18:56:46 +020050static ssize_t class_show(struct device *dev, struct device_attribute *attr, char *buf)
51{
52 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
53 return sprintf(buf, "0x%X\n", core->id.class);
54}
Greg Kroah-Hartmanfdcf4f82013-10-06 23:55:45 -070055static DEVICE_ATTR_RO(class);
56
57static struct attribute *bcma_device_attrs[] = {
58 &dev_attr_manuf.attr,
59 &dev_attr_id.attr,
60 &dev_attr_rev.attr,
61 &dev_attr_class.attr,
62 NULL,
Rafał Miłecki8369ae32011-05-09 18:56:46 +020063};
Greg Kroah-Hartmanfdcf4f82013-10-06 23:55:45 -070064ATTRIBUTE_GROUPS(bcma_device);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020065
66static struct bus_type bcma_bus_type = {
67 .name = "bcma",
68 .match = bcma_bus_match,
69 .probe = bcma_device_probe,
70 .remove = bcma_device_remove,
David Woodhouse886b66e2011-08-19 22:14:47 +020071 .uevent = bcma_device_uevent,
Greg Kroah-Hartmanfdcf4f82013-10-06 23:55:45 -070072 .dev_groups = bcma_device_groups,
Rafał Miłecki8369ae32011-05-09 18:56:46 +020073};
74
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +020075static u16 bcma_cc_core_id(struct bcma_bus *bus)
76{
77 if (bus->chipinfo.id == BCMA_CHIP_ID_BCM4706)
78 return BCMA_CORE_4706_CHIPCOMMON;
79 return BCMA_CORE_CHIPCOMMON;
80}
81
Hauke Mehrtens929a03a2013-01-04 00:51:20 +010082struct bcma_device *bcma_find_core_unit(struct bcma_bus *bus, u16 coreid,
83 u8 unit)
Hauke Mehrtensdfae7142012-09-29 20:40:18 +020084{
85 struct bcma_device *core;
86
87 list_for_each_entry(core, &bus->cores, list) {
88 if (core->id.id == coreid && core->core_unit == unit)
89 return core;
90 }
91 return NULL;
92}
Hauke Mehrtensb2395b82014-01-05 01:10:43 +010093EXPORT_SYMBOL_GPL(bcma_find_core_unit);
Hauke Mehrtensdfae7142012-09-29 20:40:18 +020094
Rafał Miłecki88f9b652013-06-26 10:02:11 +020095bool bcma_wait_value(struct bcma_device *core, u16 reg, u32 mask, u32 value,
96 int timeout)
97{
98 unsigned long deadline = jiffies + timeout;
99 u32 val;
100
101 do {
102 val = bcma_read32(core, reg);
103 if ((val & mask) == value)
104 return true;
105 cpu_relax();
106 udelay(10);
107 } while (!time_after_eq(jiffies, deadline));
108
109 bcma_warn(core->bus, "Timeout waiting for register 0x%04X!\n", reg);
110
111 return false;
112}
113
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200114static void bcma_release_core_dev(struct device *dev)
115{
116 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
Hauke Mehrtensecd177c2011-07-23 01:20:08 +0200117 if (core->io_addr)
118 iounmap(core->io_addr);
119 if (core->io_wrap)
120 iounmap(core->io_wrap);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200121 kfree(core);
122}
123
Rafał Miłecki37a7f872014-09-05 00:18:49 +0200124static bool bcma_is_core_needed_early(u16 core_id)
125{
126 switch (core_id) {
127 case BCMA_CORE_NS_NAND:
128 case BCMA_CORE_NS_QSPI:
129 return true;
130 }
131
132 return false;
133}
134
Hauke Mehrtens2101e532014-09-26 00:09:19 +0200135#ifdef CONFIG_OF
136static struct device_node *bcma_of_find_child_device(struct platform_device *parent,
137 struct bcma_device *core)
138{
139 struct device_node *node;
140 u64 size;
141 const __be32 *reg;
142
143 if (!parent || !parent->dev.of_node)
144 return NULL;
145
146 for_each_child_of_node(parent->dev.of_node, node) {
147 reg = of_get_address(node, 0, &size, NULL);
148 if (!reg)
149 continue;
150 if (of_translate_address(node, reg) == core->addr)
151 return node;
152 }
153 return NULL;
154}
155
156static void bcma_of_fill_device(struct platform_device *parent,
157 struct bcma_device *core)
158{
159 struct device_node *node;
160
161 node = bcma_of_find_child_device(parent, core);
162 if (node)
163 core->dev.of_node = node;
164}
165#else
166static void bcma_of_fill_device(struct platform_device *parent,
167 struct bcma_device *core)
168{
169}
170#endif /* CONFIG_OF */
171
Rafał Miłecki6e094bd2014-09-05 00:18:48 +0200172static void bcma_register_core(struct bcma_bus *bus, struct bcma_device *core)
173{
174 int err;
175
176 core->dev.release = bcma_release_core_dev;
177 core->dev.bus = &bcma_bus_type;
178 dev_set_name(&core->dev, "bcma%d:%d", bus->num, core->core_index);
179
180 switch (bus->hosttype) {
181 case BCMA_HOSTTYPE_PCI:
182 core->dev.parent = &bus->host_pci->dev;
183 core->dma_dev = &bus->host_pci->dev;
184 core->irq = bus->host_pci->irq;
185 break;
186 case BCMA_HOSTTYPE_SOC:
187 core->dev.dma_mask = &core->dev.coherent_dma_mask;
Hauke Mehrtens2101e532014-09-26 00:09:19 +0200188 if (bus->host_pdev) {
189 core->dma_dev = &bus->host_pdev->dev;
190 core->dev.parent = &bus->host_pdev->dev;
191 bcma_of_fill_device(bus->host_pdev, core);
192 } else {
193 core->dma_dev = &core->dev;
194 }
Rafał Miłecki6e094bd2014-09-05 00:18:48 +0200195 break;
196 case BCMA_HOSTTYPE_SDIO:
197 break;
198 }
199
200 err = device_register(&core->dev);
201 if (err) {
202 bcma_err(bus, "Could not register dev for core 0x%03X\n",
203 core->id.id);
204 put_device(&core->dev);
205 return;
206 }
207 core->dev_registered = true;
208}
209
210static int bcma_register_devices(struct bcma_bus *bus)
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200211{
212 struct bcma_device *core;
Rafał Miłecki6e094bd2014-09-05 00:18:48 +0200213 int err;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200214
215 list_for_each_entry(core, &bus->cores, list) {
216 /* We support that cores ourself */
217 switch (core->id.id) {
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200218 case BCMA_CORE_4706_CHIPCOMMON:
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200219 case BCMA_CORE_CHIPCOMMON:
Hauke Mehrtens1716bcf2014-09-08 22:53:36 +0200220 case BCMA_CORE_NS_CHIPCOMMON_B:
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200221 case BCMA_CORE_PCI:
222 case BCMA_CORE_PCIE:
Rafał Miłeckif4738322014-07-05 01:10:41 +0200223 case BCMA_CORE_PCIE2:
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200224 case BCMA_CORE_MIPS_74K:
Rafał Miłeckie1ac4b42012-07-11 09:23:43 +0200225 case BCMA_CORE_4706_MAC_GBIT_COMMON:
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200226 continue;
227 }
228
Rafał Miłecki37a7f872014-09-05 00:18:49 +0200229 /* Early cores were already registered */
230 if (bcma_is_core_needed_early(core->id.id))
231 continue;
232
Rafał Miłecki10419d02013-02-19 19:41:42 +0100233 /* Only first GMAC core on BCM4706 is connected and working */
234 if (core->id.id == BCMA_CORE_4706_MAC_GBIT &&
235 core->core_unit > 0)
236 continue;
237
Rafał Miłecki6e094bd2014-09-05 00:18:48 +0200238 bcma_register_core(bus, core);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200239 }
240
Rafał Miłecki73e4dbe2013-01-25 11:37:26 +0100241#ifdef CONFIG_BCMA_DRIVER_MIPS
242 if (bus->drv_cc.pflash.present) {
243 err = platform_device_register(&bcma_pflash_dev);
244 if (err)
245 bcma_err(bus, "Error registering parallel flash\n");
246 }
247#endif
248
Rafał Miłeckid57ef3a2012-08-10 21:23:53 +0200249#ifdef CONFIG_BCMA_SFLASH
250 if (bus->drv_cc.sflash.present) {
251 err = platform_device_register(&bcma_sflash_dev);
252 if (err)
253 bcma_err(bus, "Error registering serial flash\n");
254 }
255#endif
256
Rafał Miłecki371a0042012-08-12 13:08:05 +0200257#ifdef CONFIG_BCMA_NFLASH
258 if (bus->drv_cc.nflash.present) {
259 err = platform_device_register(&bcma_nflash_dev);
260 if (err)
261 bcma_err(bus, "Error registering NAND flash\n");
262 }
263#endif
Hauke Mehrtenscf0936b2012-11-20 22:24:30 +0000264 err = bcma_gpio_init(&bus->drv_cc);
265 if (err == -ENOTSUPP)
266 bcma_debug(bus, "GPIO driver not activated\n");
267 else if (err)
268 bcma_err(bus, "Error registering GPIO driver: %i\n", err);
Rafał Miłecki371a0042012-08-12 13:08:05 +0200269
Hauke Mehrtensa4855f392012-12-05 18:46:02 +0100270 if (bus->hosttype == BCMA_HOSTTYPE_SOC) {
271 err = bcma_chipco_watchdog_register(&bus->drv_cc);
272 if (err)
273 bcma_err(bus, "Error registering watchdog driver\n");
274 }
275
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200276 return 0;
277}
278
279static void bcma_unregister_cores(struct bcma_bus *bus)
280{
Piotr Haber1fffa902012-10-11 14:05:15 +0200281 struct bcma_device *core, *tmp;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200282
Piotr Haber1fffa902012-10-11 14:05:15 +0200283 list_for_each_entry_safe(core, tmp, &bus->cores, list) {
284 list_del(&core->list);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200285 if (core->dev_registered)
286 device_unregister(&core->dev);
287 }
Hauke Mehrtensa4855f392012-12-05 18:46:02 +0100288 if (bus->hosttype == BCMA_HOSTTYPE_SOC)
289 platform_device_unregister(bus->drv_cc.watchdog);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200290}
291
Greg Kroah-Hartman0f58a012012-12-21 15:12:59 -0800292int bcma_bus_register(struct bcma_bus *bus)
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200293{
294 int err;
295 struct bcma_device *core;
296
Hauke Mehrtens8f9ada42012-01-31 00:03:36 +0100297 mutex_lock(&bcma_buses_mutex);
298 bus->num = bcma_bus_next_num++;
299 mutex_unlock(&bcma_buses_mutex);
300
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200301 /* Scan for devices (cores) */
302 err = bcma_bus_scan(bus);
303 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200304 bcma_err(bus, "Failed to scan: %d\n", err);
Hauke Mehrtens1cabf7d2013-07-15 13:15:07 +0200305 return err;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200306 }
307
Hauke Mehrtens30cfb022012-09-29 20:29:50 +0200308 /* Early init CC core */
309 core = bcma_find_core(bus, bcma_cc_core_id(bus));
310 if (core) {
311 bus->drv_cc.core = core;
312 bcma_core_chipcommon_early_init(&bus->drv_cc);
313 }
314
Rafał Miłecki37a7f872014-09-05 00:18:49 +0200315 /* Cores providing flash access go before SPROM init */
316 list_for_each_entry(core, &bus->cores, list) {
317 if (bcma_is_core_needed_early(core->id.id))
318 bcma_register_core(bus, core);
319 }
320
Hauke Mehrtens30cfb022012-09-29 20:29:50 +0200321 /* Try to get SPROM */
322 err = bcma_sprom_get(bus);
323 if (err == -ENOENT) {
324 bcma_err(bus, "No SPROM available\n");
325 } else if (err)
326 bcma_err(bus, "Failed to get SPROM: %d\n", err);
327
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200328 /* Init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200329 core = bcma_find_core(bus, bcma_cc_core_id(bus));
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200330 if (core) {
331 bus->drv_cc.core = core;
332 bcma_core_chipcommon_init(&bus->drv_cc);
333 }
334
Hauke Mehrtens1716bcf2014-09-08 22:53:36 +0200335 /* Init CC core */
336 core = bcma_find_core(bus, BCMA_CORE_NS_CHIPCOMMON_B);
337 if (core) {
338 bus->drv_cc_b.core = core;
339 bcma_core_chipcommon_b_init(&bus->drv_cc_b);
340 }
341
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200342 /* Init MIPS core */
343 core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
344 if (core) {
345 bus->drv_mips.core = core;
346 bcma_core_mips_init(&bus->drv_mips);
347 }
348
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200349 /* Init PCIE core */
Hauke Mehrtensdfae7142012-09-29 20:40:18 +0200350 core = bcma_find_core_unit(bus, BCMA_CORE_PCIE, 0);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200351 if (core) {
Hauke Mehrtensdfae7142012-09-29 20:40:18 +0200352 bus->drv_pci[0].core = core;
353 bcma_core_pci_init(&bus->drv_pci[0]);
354 }
355
356 /* Init PCIE core */
357 core = bcma_find_core_unit(bus, BCMA_CORE_PCIE, 1);
358 if (core) {
359 bus->drv_pci[1].core = core;
360 bcma_core_pci_init(&bus->drv_pci[1]);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200361 }
362
Rafał Miłeckif4738322014-07-05 01:10:41 +0200363 /* Init PCIe Gen 2 core */
364 core = bcma_find_core_unit(bus, BCMA_CORE_PCIE2, 0);
365 if (core) {
366 bus->drv_pcie2.core = core;
367 bcma_core_pcie2_init(&bus->drv_pcie2);
368 }
369
Rafał Miłeckie1ac4b42012-07-11 09:23:43 +0200370 /* Init GBIT MAC COMMON core */
371 core = bcma_find_core(bus, BCMA_CORE_4706_MAC_GBIT_COMMON);
372 if (core) {
373 bus->drv_gmac_cmn.core = core;
374 bcma_core_gmac_cmn_init(&bus->drv_gmac_cmn);
375 }
376
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200377 /* Register found cores */
Rafał Miłecki6e094bd2014-09-05 00:18:48 +0200378 bcma_register_devices(bus);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200379
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200380 bcma_info(bus, "Bus registered\n");
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200381
382 return 0;
383}
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200384
385void bcma_bus_unregister(struct bcma_bus *bus)
386{
Saul St. Johnee915922012-08-16 15:42:30 -0500387 struct bcma_device *cores[3];
Hauke Mehrtensc50ae942013-02-03 23:25:33 +0100388 int err;
389
390 err = bcma_gpio_unregister(&bus->drv_cc);
391 if (err == -EBUSY)
392 bcma_err(bus, "Some GPIOs are still in use.\n");
393 else if (err)
394 bcma_err(bus, "Can not unregister GPIO driver: %i\n", err);
Saul St. Johnee915922012-08-16 15:42:30 -0500395
Hauke Mehrtens1716bcf2014-09-08 22:53:36 +0200396 bcma_core_chipcommon_b_free(&bus->drv_cc_b);
397
Saul St. Johnee915922012-08-16 15:42:30 -0500398 cores[0] = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
399 cores[1] = bcma_find_core(bus, BCMA_CORE_PCIE);
400 cores[2] = bcma_find_core(bus, BCMA_CORE_4706_MAC_GBIT_COMMON);
401
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200402 bcma_unregister_cores(bus);
Saul St. Johnee915922012-08-16 15:42:30 -0500403
404 kfree(cores[2]);
405 kfree(cores[1]);
406 kfree(cores[0]);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200407}
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200408
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200409int __init bcma_bus_early_register(struct bcma_bus *bus,
410 struct bcma_device *core_cc,
411 struct bcma_device *core_mips)
412{
413 int err;
414 struct bcma_device *core;
415 struct bcma_device_id match;
416
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200417 match.manuf = BCMA_MANUF_BCM;
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200418 match.id = bcma_cc_core_id(bus);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200419 match.class = BCMA_CL_SIM;
420 match.rev = BCMA_ANY_REV;
421
422 /* Scan for chip common core */
423 err = bcma_bus_scan_early(bus, &match, core_cc);
424 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200425 bcma_err(bus, "Failed to scan for common core: %d\n", err);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200426 return -1;
427 }
428
429 match.manuf = BCMA_MANUF_MIPS;
430 match.id = BCMA_CORE_MIPS_74K;
431 match.class = BCMA_CL_SIM;
432 match.rev = BCMA_ANY_REV;
433
434 /* Scan for mips core */
435 err = bcma_bus_scan_early(bus, &match, core_mips);
436 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200437 bcma_err(bus, "Failed to scan for mips core: %d\n", err);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200438 return -1;
439 }
440
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200441 /* Early init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200442 core = bcma_find_core(bus, bcma_cc_core_id(bus));
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200443 if (core) {
444 bus->drv_cc.core = core;
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200445 bcma_core_chipcommon_early_init(&bus->drv_cc);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200446 }
447
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200448 /* Early init MIPS core */
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200449 core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
450 if (core) {
451 bus->drv_mips.core = core;
Hauke Mehrtens49655bb2012-09-29 20:29:49 +0200452 bcma_core_mips_early_init(&bus->drv_mips);
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200453 }
454
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200455 bcma_info(bus, "Early bus registered\n");
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200456
457 return 0;
458}
459
Rafał Miłecki775ab522011-12-09 22:16:07 +0100460#ifdef CONFIG_PM
Linus Torvalds685a4ef2012-01-13 23:58:40 +0100461int bcma_bus_suspend(struct bcma_bus *bus)
462{
Linus Torvalds7d5869e2012-01-13 23:58:41 +0100463 struct bcma_device *core;
464
465 list_for_each_entry(core, &bus->cores, list) {
466 struct device_driver *drv = core->dev.driver;
467 if (drv) {
468 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
469 if (adrv->suspend)
470 adrv->suspend(core);
471 }
472 }
Linus Torvalds685a4ef2012-01-13 23:58:40 +0100473 return 0;
474}
475
Rafał Miłecki775ab522011-12-09 22:16:07 +0100476int bcma_bus_resume(struct bcma_bus *bus)
477{
478 struct bcma_device *core;
479
480 /* Init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200481 if (bus->drv_cc.core) {
Rafał Miłecki775ab522011-12-09 22:16:07 +0100482 bus->drv_cc.setup_done = false;
483 bcma_core_chipcommon_init(&bus->drv_cc);
484 }
485
Linus Torvalds7d5869e2012-01-13 23:58:41 +0100486 list_for_each_entry(core, &bus->cores, list) {
487 struct device_driver *drv = core->dev.driver;
488 if (drv) {
489 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
490 if (adrv->resume)
491 adrv->resume(core);
492 }
493 }
494
Rafał Miłecki775ab522011-12-09 22:16:07 +0100495 return 0;
496}
497#endif
498
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200499int __bcma_driver_register(struct bcma_driver *drv, struct module *owner)
500{
501 drv->drv.name = drv->name;
502 drv->drv.bus = &bcma_bus_type;
503 drv->drv.owner = owner;
504
505 return driver_register(&drv->drv);
506}
507EXPORT_SYMBOL_GPL(__bcma_driver_register);
508
509void bcma_driver_unregister(struct bcma_driver *drv)
510{
511 driver_unregister(&drv->drv);
512}
513EXPORT_SYMBOL_GPL(bcma_driver_unregister);
514
515static int bcma_bus_match(struct device *dev, struct device_driver *drv)
516{
517 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
518 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
519 const struct bcma_device_id *cid = &core->id;
520 const struct bcma_device_id *did;
521
522 for (did = adrv->id_table; did->manuf || did->id || did->rev; did++) {
523 if ((did->manuf == cid->manuf || did->manuf == BCMA_ANY_MANUF) &&
524 (did->id == cid->id || did->id == BCMA_ANY_ID) &&
525 (did->rev == cid->rev || did->rev == BCMA_ANY_REV) &&
526 (did->class == cid->class || did->class == BCMA_ANY_CLASS))
527 return 1;
528 }
529 return 0;
530}
531
532static int bcma_device_probe(struct device *dev)
533{
534 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
535 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
536 drv);
537 int err = 0;
538
539 if (adrv->probe)
540 err = adrv->probe(core);
541
542 return err;
543}
544
545static int bcma_device_remove(struct device *dev)
546{
547 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
548 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
549 drv);
550
551 if (adrv->remove)
552 adrv->remove(core);
553
554 return 0;
555}
556
David Woodhouse886b66e2011-08-19 22:14:47 +0200557static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env)
558{
559 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
560
561 return add_uevent_var(env,
562 "MODALIAS=bcma:m%04Xid%04Xrev%02Xcl%02X",
563 core->id.manuf, core->id.id,
564 core->id.rev, core->id.class);
565}
566
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200567static int __init bcma_modinit(void)
568{
569 int err;
570
571 err = bus_register(&bcma_bus_type);
572 if (err)
573 return err;
574
Hauke Mehrtens2101e532014-09-26 00:09:19 +0200575 err = bcma_host_soc_register_driver();
576 if (err) {
577 pr_err("SoC host initialization failed\n");
578 err = 0;
579 }
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200580#ifdef CONFIG_BCMA_HOST_PCI
581 err = bcma_host_pci_init();
582 if (err) {
583 pr_err("PCI host initialization failed\n");
584 err = 0;
585 }
586#endif
587
588 return err;
589}
590fs_initcall(bcma_modinit);
591
592static void __exit bcma_modexit(void)
593{
594#ifdef CONFIG_BCMA_HOST_PCI
595 bcma_host_pci_exit();
596#endif
Hauke Mehrtens2101e532014-09-26 00:09:19 +0200597 bcma_host_soc_unregister_driver();
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200598 bus_unregister(&bcma_bus_type);
599}
600module_exit(bcma_modexit)