2 * Broadcom specific AMBA
5 * Licensed under the GNU/GPL. See COPYING for details.
8 #include "bcma_private.h"
9 #include <linux/bcma/bcma.h>
10 #include <linux/slab.h>
12 MODULE_DESCRIPTION("Broadcom's specific AMBA driver");
13 MODULE_LICENSE("GPL");
15 static int bcma_bus_match(struct device
*dev
, struct device_driver
*drv
);
16 static int bcma_device_probe(struct device
*dev
);
17 static int bcma_device_remove(struct device
*dev
);
19 static ssize_t
manuf_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
21 struct bcma_device
*core
= container_of(dev
, struct bcma_device
, dev
);
22 return sprintf(buf
, "0x%03X\n", core
->id
.manuf
);
24 static ssize_t
id_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
26 struct bcma_device
*core
= container_of(dev
, struct bcma_device
, dev
);
27 return sprintf(buf
, "0x%03X\n", core
->id
.id
);
29 static ssize_t
rev_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
31 struct bcma_device
*core
= container_of(dev
, struct bcma_device
, dev
);
32 return sprintf(buf
, "0x%02X\n", core
->id
.rev
);
34 static ssize_t
class_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
36 struct bcma_device
*core
= container_of(dev
, struct bcma_device
, dev
);
37 return sprintf(buf
, "0x%X\n", core
->id
.class);
39 static struct device_attribute bcma_device_attrs
[] = {
47 static struct bus_type bcma_bus_type
= {
49 .match
= bcma_bus_match
,
50 .probe
= bcma_device_probe
,
51 .remove
= bcma_device_remove
,
52 .dev_attrs
= bcma_device_attrs
,
55 static struct bcma_device
*bcma_find_core(struct bcma_bus
*bus
, u16 coreid
)
57 struct bcma_device
*core
;
59 list_for_each_entry(core
, &bus
->cores
, list
) {
60 if (core
->id
.id
== coreid
)
66 static void bcma_release_core_dev(struct device
*dev
)
68 struct bcma_device
*core
= container_of(dev
, struct bcma_device
, dev
);
72 static int bcma_register_cores(struct bcma_bus
*bus
)
74 struct bcma_device
*core
;
77 list_for_each_entry(core
, &bus
->cores
, list
) {
78 /* We support that cores ourself */
79 switch (core
->id
.id
) {
80 case BCMA_CORE_CHIPCOMMON
:
86 core
->dev
.release
= bcma_release_core_dev
;
87 core
->dev
.bus
= &bcma_bus_type
;
88 dev_set_name(&core
->dev
, "bcma%d:%d", 0/*bus->num*/, dev_id
);
90 switch (bus
->hosttype
) {
91 case BCMA_HOSTTYPE_PCI
:
92 core
->dev
.parent
= &bus
->host_pci
->dev
;
93 core
->dma_dev
= &bus
->host_pci
->dev
;
94 core
->irq
= bus
->host_pci
->irq
;
96 case BCMA_HOSTTYPE_NONE
:
97 case BCMA_HOSTTYPE_SDIO
:
101 err
= device_register(&core
->dev
);
103 pr_err("Could not register dev for core 0x%03X\n",
107 core
->dev_registered
= true;
114 static void bcma_unregister_cores(struct bcma_bus
*bus
)
116 struct bcma_device
*core
;
118 list_for_each_entry(core
, &bus
->cores
, list
) {
119 if (core
->dev_registered
)
120 device_unregister(&core
->dev
);
124 int bcma_bus_register(struct bcma_bus
*bus
)
127 struct bcma_device
*core
;
129 /* Scan for devices (cores) */
130 err
= bcma_bus_scan(bus
);
132 pr_err("Failed to scan: %d\n", err
);
137 core
= bcma_find_core(bus
, BCMA_CORE_CHIPCOMMON
);
139 bus
->drv_cc
.core
= core
;
140 bcma_core_chipcommon_init(&bus
->drv_cc
);
144 core
= bcma_find_core(bus
, BCMA_CORE_PCIE
);
146 bus
->drv_pci
.core
= core
;
147 bcma_core_pci_init(&bus
->drv_pci
);
150 /* Try to get SPROM */
151 err
= bcma_sprom_get(bus
);
152 if (err
== -ENOENT
) {
153 pr_err("No SPROM available\n");
155 pr_err("Failed to get SPROM: %d\n", err
);
159 /* Register found cores */
160 bcma_register_cores(bus
);
162 pr_info("Bus registered\n");
167 void bcma_bus_unregister(struct bcma_bus
*bus
)
169 bcma_unregister_cores(bus
);
172 int __bcma_driver_register(struct bcma_driver
*drv
, struct module
*owner
)
174 drv
->drv
.name
= drv
->name
;
175 drv
->drv
.bus
= &bcma_bus_type
;
176 drv
->drv
.owner
= owner
;
178 return driver_register(&drv
->drv
);
180 EXPORT_SYMBOL_GPL(__bcma_driver_register
);
182 void bcma_driver_unregister(struct bcma_driver
*drv
)
184 driver_unregister(&drv
->drv
);
186 EXPORT_SYMBOL_GPL(bcma_driver_unregister
);
188 static int bcma_bus_match(struct device
*dev
, struct device_driver
*drv
)
190 struct bcma_device
*core
= container_of(dev
, struct bcma_device
, dev
);
191 struct bcma_driver
*adrv
= container_of(drv
, struct bcma_driver
, drv
);
192 const struct bcma_device_id
*cid
= &core
->id
;
193 const struct bcma_device_id
*did
;
195 for (did
= adrv
->id_table
; did
->manuf
|| did
->id
|| did
->rev
; did
++) {
196 if ((did
->manuf
== cid
->manuf
|| did
->manuf
== BCMA_ANY_MANUF
) &&
197 (did
->id
== cid
->id
|| did
->id
== BCMA_ANY_ID
) &&
198 (did
->rev
== cid
->rev
|| did
->rev
== BCMA_ANY_REV
) &&
199 (did
->class == cid
->class || did
->class == BCMA_ANY_CLASS
))
205 static int bcma_device_probe(struct device
*dev
)
207 struct bcma_device
*core
= container_of(dev
, struct bcma_device
, dev
);
208 struct bcma_driver
*adrv
= container_of(dev
->driver
, struct bcma_driver
,
213 err
= adrv
->probe(core
);
218 static int bcma_device_remove(struct device
*dev
)
220 struct bcma_device
*core
= container_of(dev
, struct bcma_device
, dev
);
221 struct bcma_driver
*adrv
= container_of(dev
->driver
, struct bcma_driver
,
230 static int __init
bcma_modinit(void)
234 err
= bus_register(&bcma_bus_type
);
238 #ifdef CONFIG_BCMA_HOST_PCI
239 err
= bcma_host_pci_init();
241 pr_err("PCI host initialization failed\n");
248 fs_initcall(bcma_modinit
);
250 static void __exit
bcma_modexit(void)
252 #ifdef CONFIG_BCMA_HOST_PCI
253 bcma_host_pci_exit();
255 bus_unregister(&bcma_bus_type
);
257 module_exit(bcma_modexit
)