blob: a501d259287c8d13546437802f67d49389535f2d [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
84static void bcma_release_core_dev(struct device *dev)
85{
86 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
Hauke Mehrtensecd177c2011-07-23 01:20:08 +020087 if (core->io_addr)
88 iounmap(core->io_addr);
89 if (core->io_wrap)
90 iounmap(core->io_wrap);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020091 kfree(core);
92}
93
94static int bcma_register_cores(struct bcma_bus *bus)
95{
96 struct bcma_device *core;
97 int err, dev_id = 0;
98
99 list_for_each_entry(core, &bus->cores, list) {
100 /* We support that cores ourself */
101 switch (core->id.id) {
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200102 case BCMA_CORE_4706_CHIPCOMMON:
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200103 case BCMA_CORE_CHIPCOMMON:
104 case BCMA_CORE_PCI:
105 case BCMA_CORE_PCIE:
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200106 case BCMA_CORE_MIPS_74K:
Rafał Miłeckie1ac4b42012-07-11 09:23:43 +0200107 case BCMA_CORE_4706_MAC_GBIT_COMMON:
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200108 continue;
109 }
110
111 core->dev.release = bcma_release_core_dev;
112 core->dev.bus = &bcma_bus_type;
Hauke Mehrtens8f9ada42012-01-31 00:03:36 +0100113 dev_set_name(&core->dev, "bcma%d:%d", bus->num, dev_id);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200114
115 switch (bus->hosttype) {
116 case BCMA_HOSTTYPE_PCI:
117 core->dev.parent = &bus->host_pci->dev;
Rafał Miłecki1bdcd092011-05-18 11:40:22 +0200118 core->dma_dev = &bus->host_pci->dev;
119 core->irq = bus->host_pci->irq;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200120 break;
Hauke Mehrtensecd177c2011-07-23 01:20:08 +0200121 case BCMA_HOSTTYPE_SOC:
122 core->dev.dma_mask = &core->dev.coherent_dma_mask;
123 core->dma_dev = &core->dev;
124 break;
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200125 case BCMA_HOSTTYPE_SDIO:
126 break;
127 }
128
129 err = device_register(&core->dev);
130 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200131 bcma_err(bus,
132 "Could not register dev for core 0x%03X\n",
133 core->id.id);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200134 continue;
135 }
136 core->dev_registered = true;
137 dev_id++;
138 }
139
Rafał Miłeckid57ef3a2012-08-10 21:23:53 +0200140#ifdef CONFIG_BCMA_SFLASH
141 if (bus->drv_cc.sflash.present) {
142 err = platform_device_register(&bcma_sflash_dev);
143 if (err)
144 bcma_err(bus, "Error registering serial flash\n");
145 }
146#endif
147
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200148 return 0;
149}
150
151static void bcma_unregister_cores(struct bcma_bus *bus)
152{
153 struct bcma_device *core;
154
155 list_for_each_entry(core, &bus->cores, list) {
156 if (core->dev_registered)
157 device_unregister(&core->dev);
158 }
159}
160
Hauke Mehrtensd1a7a8e2012-01-31 00:03:34 +0100161int __devinit bcma_bus_register(struct bcma_bus *bus)
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200162{
163 int err;
164 struct bcma_device *core;
165
Hauke Mehrtens8f9ada42012-01-31 00:03:36 +0100166 mutex_lock(&bcma_buses_mutex);
167 bus->num = bcma_bus_next_num++;
168 mutex_unlock(&bcma_buses_mutex);
169
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200170 /* Scan for devices (cores) */
171 err = bcma_bus_scan(bus);
172 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200173 bcma_err(bus, "Failed to scan: %d\n", err);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200174 return -1;
175 }
176
177 /* Init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200178 core = bcma_find_core(bus, bcma_cc_core_id(bus));
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200179 if (core) {
180 bus->drv_cc.core = core;
181 bcma_core_chipcommon_init(&bus->drv_cc);
182 }
183
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200184 /* Init MIPS core */
185 core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
186 if (core) {
187 bus->drv_mips.core = core;
188 bcma_core_mips_init(&bus->drv_mips);
189 }
190
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200191 /* Init PCIE core */
192 core = bcma_find_core(bus, BCMA_CORE_PCIE);
193 if (core) {
194 bus->drv_pci.core = core;
195 bcma_core_pci_init(&bus->drv_pci);
196 }
197
Rafał Miłeckie1ac4b42012-07-11 09:23:43 +0200198 /* Init GBIT MAC COMMON core */
199 core = bcma_find_core(bus, BCMA_CORE_4706_MAC_GBIT_COMMON);
200 if (core) {
201 bus->drv_gmac_cmn.core = core;
202 bcma_core_gmac_cmn_init(&bus->drv_gmac_cmn);
203 }
204
Rafał Miłecki27f18dc2011-06-02 02:08:51 +0200205 /* Try to get SPROM */
206 err = bcma_sprom_get(bus);
Hauke Mehrtens534e7a42011-07-09 13:22:03 +0200207 if (err == -ENOENT) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200208 bcma_err(bus, "No SPROM available\n");
Henrik Rydberg2e6b4112012-01-31 14:22:15 -0500209 } else if (err)
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200210 bcma_err(bus, "Failed to get SPROM: %d\n", err);
Rafał Miłecki27f18dc2011-06-02 02:08:51 +0200211
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200212 /* Register found cores */
213 bcma_register_cores(bus);
214
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200215 bcma_info(bus, "Bus registered\n");
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200216
217 return 0;
218}
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200219
220void bcma_bus_unregister(struct bcma_bus *bus)
221{
222 bcma_unregister_cores(bus);
223}
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200224
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200225int __init bcma_bus_early_register(struct bcma_bus *bus,
226 struct bcma_device *core_cc,
227 struct bcma_device *core_mips)
228{
229 int err;
230 struct bcma_device *core;
231 struct bcma_device_id match;
232
233 bcma_init_bus(bus);
234
235 match.manuf = BCMA_MANUF_BCM;
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200236 match.id = bcma_cc_core_id(bus);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200237 match.class = BCMA_CL_SIM;
238 match.rev = BCMA_ANY_REV;
239
240 /* Scan for chip common core */
241 err = bcma_bus_scan_early(bus, &match, core_cc);
242 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200243 bcma_err(bus, "Failed to scan for common core: %d\n", err);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200244 return -1;
245 }
246
247 match.manuf = BCMA_MANUF_MIPS;
248 match.id = BCMA_CORE_MIPS_74K;
249 match.class = BCMA_CL_SIM;
250 match.rev = BCMA_ANY_REV;
251
252 /* Scan for mips core */
253 err = bcma_bus_scan_early(bus, &match, core_mips);
254 if (err) {
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200255 bcma_err(bus, "Failed to scan for mips core: %d\n", err);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200256 return -1;
257 }
258
259 /* Init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200260 core = bcma_find_core(bus, bcma_cc_core_id(bus));
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200261 if (core) {
262 bus->drv_cc.core = core;
263 bcma_core_chipcommon_init(&bus->drv_cc);
264 }
265
Hauke Mehrtens21e05342011-07-23 01:20:09 +0200266 /* Init MIPS core */
267 core = bcma_find_core(bus, BCMA_CORE_MIPS_74K);
268 if (core) {
269 bus->drv_mips.core = core;
270 bcma_core_mips_init(&bus->drv_mips);
271 }
272
Rafał Miłecki3d9d8af2012-07-05 22:07:32 +0200273 bcma_info(bus, "Early bus registered\n");
Hauke Mehrtens517f43e2011-07-23 01:20:07 +0200274
275 return 0;
276}
277
Rafał Miłecki775ab522011-12-09 22:16:07 +0100278#ifdef CONFIG_PM
Linus Torvalds685a4ef2012-01-13 23:58:40 +0100279int bcma_bus_suspend(struct bcma_bus *bus)
280{
Linus Torvalds7d5869e2012-01-13 23:58:41 +0100281 struct bcma_device *core;
282
283 list_for_each_entry(core, &bus->cores, list) {
284 struct device_driver *drv = core->dev.driver;
285 if (drv) {
286 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
287 if (adrv->suspend)
288 adrv->suspend(core);
289 }
290 }
Linus Torvalds685a4ef2012-01-13 23:58:40 +0100291 return 0;
292}
293
Rafał Miłecki775ab522011-12-09 22:16:07 +0100294int bcma_bus_resume(struct bcma_bus *bus)
295{
296 struct bcma_device *core;
297
298 /* Init CC core */
Rafał Miłecki6d5cfc92012-07-10 23:45:49 +0200299 if (bus->drv_cc.core) {
Rafał Miłecki775ab522011-12-09 22:16:07 +0100300 bus->drv_cc.setup_done = false;
301 bcma_core_chipcommon_init(&bus->drv_cc);
302 }
303
Linus Torvalds7d5869e2012-01-13 23:58:41 +0100304 list_for_each_entry(core, &bus->cores, list) {
305 struct device_driver *drv = core->dev.driver;
306 if (drv) {
307 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
308 if (adrv->resume)
309 adrv->resume(core);
310 }
311 }
312
Rafał Miłecki775ab522011-12-09 22:16:07 +0100313 return 0;
314}
315#endif
316
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200317int __bcma_driver_register(struct bcma_driver *drv, struct module *owner)
318{
319 drv->drv.name = drv->name;
320 drv->drv.bus = &bcma_bus_type;
321 drv->drv.owner = owner;
322
323 return driver_register(&drv->drv);
324}
325EXPORT_SYMBOL_GPL(__bcma_driver_register);
326
327void bcma_driver_unregister(struct bcma_driver *drv)
328{
329 driver_unregister(&drv->drv);
330}
331EXPORT_SYMBOL_GPL(bcma_driver_unregister);
332
333static int bcma_bus_match(struct device *dev, struct device_driver *drv)
334{
335 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
336 struct bcma_driver *adrv = container_of(drv, struct bcma_driver, drv);
337 const struct bcma_device_id *cid = &core->id;
338 const struct bcma_device_id *did;
339
340 for (did = adrv->id_table; did->manuf || did->id || did->rev; did++) {
341 if ((did->manuf == cid->manuf || did->manuf == BCMA_ANY_MANUF) &&
342 (did->id == cid->id || did->id == BCMA_ANY_ID) &&
343 (did->rev == cid->rev || did->rev == BCMA_ANY_REV) &&
344 (did->class == cid->class || did->class == BCMA_ANY_CLASS))
345 return 1;
346 }
347 return 0;
348}
349
350static int bcma_device_probe(struct device *dev)
351{
352 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
353 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
354 drv);
355 int err = 0;
356
357 if (adrv->probe)
358 err = adrv->probe(core);
359
360 return err;
361}
362
363static int bcma_device_remove(struct device *dev)
364{
365 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
366 struct bcma_driver *adrv = container_of(dev->driver, struct bcma_driver,
367 drv);
368
369 if (adrv->remove)
370 adrv->remove(core);
371
372 return 0;
373}
374
David Woodhouse886b66e2011-08-19 22:14:47 +0200375static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env)
376{
377 struct bcma_device *core = container_of(dev, struct bcma_device, dev);
378
379 return add_uevent_var(env,
380 "MODALIAS=bcma:m%04Xid%04Xrev%02Xcl%02X",
381 core->id.manuf, core->id.id,
382 core->id.rev, core->id.class);
383}
384
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200385static int __init bcma_modinit(void)
386{
387 int err;
388
389 err = bus_register(&bcma_bus_type);
390 if (err)
391 return err;
392
393#ifdef CONFIG_BCMA_HOST_PCI
394 err = bcma_host_pci_init();
395 if (err) {
396 pr_err("PCI host initialization failed\n");
397 err = 0;
398 }
399#endif
400
401 return err;
402}
403fs_initcall(bcma_modinit);
404
405static void __exit bcma_modexit(void)
406{
407#ifdef CONFIG_BCMA_HOST_PCI
408 bcma_host_pci_exit();
409#endif
410 bus_unregister(&bcma_bus_type);
411}
412module_exit(bcma_modexit)