blob: bea823e824eb0d200c69427f2e0d67b1a971eae9 [file] [log] [blame]
Michael Buesch61e115a2007-09-18 15:12:50 -04001/*
2 * Sonics Silicon Backplane
3 * Subsystem core
4 *
5 * Copyright 2005, Broadcom Corporation
Michael Büscheb032b92011-07-04 20:50:05 +02006 * Copyright 2006, 2007, Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007 *
8 * Licensed under the GNU/GPL. See COPYING for details.
9 */
10
11#include "ssb_private.h"
12
13#include <linux/delay.h>
Geert Uytterhoeven6faf0352007-10-13 14:31:31 +020014#include <linux/io.h>
Paul Gortmaker20a112d2011-07-17 16:03:40 -040015#include <linux/module.h>
Hauke Mehrtensbde327e2012-12-05 18:46:08 +010016#include <linux/platform_device.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040017#include <linux/ssb/ssb.h>
18#include <linux/ssb/ssb_regs.h>
Michael Bueschaab547c2008-02-29 11:36:12 +010019#include <linux/ssb/ssb_driver_gige.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040020#include <linux/dma-mapping.h>
21#include <linux/pci.h>
Albert Herranz24ea6022009-09-08 19:30:12 +020022#include <linux/mmc/sdio_func.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040024
Michael Buesch61e115a2007-09-18 15:12:50 -040025#include <pcmcia/cistpl.h>
26#include <pcmcia/ds.h>
27
28
29MODULE_DESCRIPTION("Sonics Silicon Backplane driver");
30MODULE_LICENSE("GPL");
31
32
33/* Temporary list of yet-to-be-attached buses */
34static LIST_HEAD(attach_queue);
35/* List if running buses */
36static LIST_HEAD(buses);
37/* Software ID counter */
38static unsigned int next_busnumber;
39/* buses_mutes locks the two buslists and the next_busnumber.
40 * Don't lock this directly, but use ssb_buses_[un]lock() below. */
41static DEFINE_MUTEX(buses_mutex);
42
43/* There are differences in the codeflow, if the bus is
44 * initialized from early boot, as various needed services
45 * are not available early. This is a mechanism to delay
46 * these initializations to after early boot has finished.
47 * It's also used to avoid mutex locking, as that's not
48 * available and needed early. */
49static bool ssb_is_early_boot = 1;
50
51static void ssb_buses_lock(void);
52static void ssb_buses_unlock(void);
53
54
55#ifdef CONFIG_SSB_PCIHOST
56struct ssb_bus *ssb_pci_dev_to_bus(struct pci_dev *pdev)
57{
58 struct ssb_bus *bus;
59
60 ssb_buses_lock();
61 list_for_each_entry(bus, &buses, list) {
62 if (bus->bustype == SSB_BUSTYPE_PCI &&
63 bus->host_pci == pdev)
64 goto found;
65 }
66 bus = NULL;
67found:
68 ssb_buses_unlock();
69
70 return bus;
71}
72#endif /* CONFIG_SSB_PCIHOST */
73
Michael Buesche7ec2e32008-03-10 17:26:32 +010074#ifdef CONFIG_SSB_PCMCIAHOST
75struct ssb_bus *ssb_pcmcia_dev_to_bus(struct pcmcia_device *pdev)
76{
77 struct ssb_bus *bus;
78
79 ssb_buses_lock();
80 list_for_each_entry(bus, &buses, list) {
81 if (bus->bustype == SSB_BUSTYPE_PCMCIA &&
82 bus->host_pcmcia == pdev)
83 goto found;
84 }
85 bus = NULL;
86found:
87 ssb_buses_unlock();
88
89 return bus;
90}
91#endif /* CONFIG_SSB_PCMCIAHOST */
92
Michael Bueschaab547c2008-02-29 11:36:12 +010093int ssb_for_each_bus_call(unsigned long data,
94 int (*func)(struct ssb_bus *bus, unsigned long data))
95{
96 struct ssb_bus *bus;
97 int res;
98
99 ssb_buses_lock();
100 list_for_each_entry(bus, &buses, list) {
101 res = func(bus, data);
102 if (res >= 0) {
103 ssb_buses_unlock();
104 return res;
105 }
106 }
107 ssb_buses_unlock();
108
109 return -ENODEV;
110}
111
Michael Buesch61e115a2007-09-18 15:12:50 -0400112static struct ssb_device *ssb_device_get(struct ssb_device *dev)
113{
114 if (dev)
115 get_device(dev->dev);
116 return dev;
117}
118
119static void ssb_device_put(struct ssb_device *dev)
120{
121 if (dev)
122 put_device(dev->dev);
123}
124
Michael Buesch61e115a2007-09-18 15:12:50 -0400125static int ssb_device_resume(struct device *dev)
126{
127 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
128 struct ssb_driver *ssb_drv;
Michael Buesch61e115a2007-09-18 15:12:50 -0400129 int err = 0;
130
Michael Buesch61e115a2007-09-18 15:12:50 -0400131 if (dev->driver) {
132 ssb_drv = drv_to_ssb_drv(dev->driver);
133 if (ssb_drv && ssb_drv->resume)
134 err = ssb_drv->resume(ssb_dev);
135 if (err)
136 goto out;
137 }
138out:
139 return err;
140}
141
Michael Buesch61e115a2007-09-18 15:12:50 -0400142static int ssb_device_suspend(struct device *dev, pm_message_t state)
143{
144 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
145 struct ssb_driver *ssb_drv;
Michael Buesch61e115a2007-09-18 15:12:50 -0400146 int err = 0;
147
148 if (dev->driver) {
149 ssb_drv = drv_to_ssb_drv(dev->driver);
150 if (ssb_drv && ssb_drv->suspend)
151 err = ssb_drv->suspend(ssb_dev, state);
152 if (err)
153 goto out;
154 }
Michael Buesch61e115a2007-09-18 15:12:50 -0400155out:
156 return err;
157}
158
Michael Buesch8fe2b652008-03-30 00:10:50 +0100159int ssb_bus_resume(struct ssb_bus *bus)
160{
161 int err;
162
163 /* Reset HW state information in memory, so that HW is
164 * completely reinitialized. */
165 bus->mapped_device = NULL;
166#ifdef CONFIG_SSB_DRIVER_PCICORE
167 bus->pcicore.setup_done = 0;
168#endif
169
170 err = ssb_bus_powerup(bus, 0);
171 if (err)
172 return err;
173 err = ssb_pcmcia_hardware_setup(bus);
174 if (err) {
175 ssb_bus_may_powerdown(bus);
176 return err;
177 }
178 ssb_chipco_resume(&bus->chipco);
179 ssb_bus_may_powerdown(bus);
180
181 return 0;
182}
183EXPORT_SYMBOL(ssb_bus_resume);
184
185int ssb_bus_suspend(struct ssb_bus *bus)
186{
187 ssb_chipco_suspend(&bus->chipco);
188 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
189
190 return 0;
191}
192EXPORT_SYMBOL(ssb_bus_suspend);
193
Michael Bueschd72bb402008-04-02 17:03:26 +0200194#ifdef CONFIG_SSB_SPROM
Michael Buesch3ba60182009-11-23 20:12:13 +0100195/** ssb_devices_freeze - Freeze all devices on the bus.
196 *
197 * After freezing no device driver will be handling a device
198 * on this bus anymore. ssb_devices_thaw() must be called after
199 * a successful freeze to reactivate the devices.
200 *
201 * @bus: The bus.
202 * @ctx: Context structure. Pass this to ssb_devices_thaw().
203 */
204int ssb_devices_freeze(struct ssb_bus *bus, struct ssb_freeze_context *ctx)
Michael Buesch61e115a2007-09-18 15:12:50 -0400205{
Michael Buesch3ba60182009-11-23 20:12:13 +0100206 struct ssb_device *sdev;
207 struct ssb_driver *sdrv;
208 unsigned int i;
Michael Buesch61e115a2007-09-18 15:12:50 -0400209
Michael Buesch3ba60182009-11-23 20:12:13 +0100210 memset(ctx, 0, sizeof(*ctx));
211 ctx->bus = bus;
212 SSB_WARN_ON(bus->nr_devices > ARRAY_SIZE(ctx->device_frozen));
213
Michael Buesch61e115a2007-09-18 15:12:50 -0400214 for (i = 0; i < bus->nr_devices; i++) {
Michael Buesch3ba60182009-11-23 20:12:13 +0100215 sdev = ssb_device_get(&bus->devices[i]);
216
217 if (!sdev->dev || !sdev->dev->driver ||
218 !device_is_registered(sdev->dev)) {
219 ssb_device_put(sdev);
Michael Buesch61e115a2007-09-18 15:12:50 -0400220 continue;
Michael Buesch61e115a2007-09-18 15:12:50 -0400221 }
Alan Sternf3ff9242012-01-24 13:35:24 -0500222 sdrv = drv_to_ssb_drv(sdev->dev->driver);
223 if (SSB_WARN_ON(!sdrv->remove))
Michael Buesch61e115a2007-09-18 15:12:50 -0400224 continue;
Michael Buesch3ba60182009-11-23 20:12:13 +0100225 sdrv->remove(sdev);
226 ctx->device_frozen[i] = 1;
Michael Buesch61e115a2007-09-18 15:12:50 -0400227 }
228
229 return 0;
Michael Buesch61e115a2007-09-18 15:12:50 -0400230}
231
Michael Buesch3ba60182009-11-23 20:12:13 +0100232/** ssb_devices_thaw - Unfreeze all devices on the bus.
233 *
234 * This will re-attach the device drivers and re-init the devices.
235 *
236 * @ctx: The context structure from ssb_devices_freeze()
237 */
238int ssb_devices_thaw(struct ssb_freeze_context *ctx)
Michael Buesch61e115a2007-09-18 15:12:50 -0400239{
Michael Buesch3ba60182009-11-23 20:12:13 +0100240 struct ssb_bus *bus = ctx->bus;
241 struct ssb_device *sdev;
242 struct ssb_driver *sdrv;
243 unsigned int i;
244 int err, result = 0;
Michael Buesch61e115a2007-09-18 15:12:50 -0400245
246 for (i = 0; i < bus->nr_devices; i++) {
Michael Buesch3ba60182009-11-23 20:12:13 +0100247 if (!ctx->device_frozen[i])
Michael Buesch61e115a2007-09-18 15:12:50 -0400248 continue;
Michael Buesch3ba60182009-11-23 20:12:13 +0100249 sdev = &bus->devices[i];
250
251 if (SSB_WARN_ON(!sdev->dev || !sdev->dev->driver))
Michael Buesch61e115a2007-09-18 15:12:50 -0400252 continue;
Michael Buesch3ba60182009-11-23 20:12:13 +0100253 sdrv = drv_to_ssb_drv(sdev->dev->driver);
254 if (SSB_WARN_ON(!sdrv || !sdrv->probe))
Michael Buesch61e115a2007-09-18 15:12:50 -0400255 continue;
Michael Buesch3ba60182009-11-23 20:12:13 +0100256
257 err = sdrv->probe(sdev, &sdev->id);
Michael Buesch61e115a2007-09-18 15:12:50 -0400258 if (err) {
Joe Perches33a606a2013-02-20 12:16:13 -0800259 ssb_err("Failed to thaw device %s\n",
260 dev_name(sdev->dev));
Michael Buesch3ba60182009-11-23 20:12:13 +0100261 result = err;
Michael Buesch61e115a2007-09-18 15:12:50 -0400262 }
Michael Buesch3ba60182009-11-23 20:12:13 +0100263 ssb_device_put(sdev);
Michael Buesch61e115a2007-09-18 15:12:50 -0400264 }
265
Michael Buesch3ba60182009-11-23 20:12:13 +0100266 return result;
Michael Buesch61e115a2007-09-18 15:12:50 -0400267}
Michael Bueschd72bb402008-04-02 17:03:26 +0200268#endif /* CONFIG_SSB_SPROM */
Michael Buesch61e115a2007-09-18 15:12:50 -0400269
270static void ssb_device_shutdown(struct device *dev)
271{
272 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
273 struct ssb_driver *ssb_drv;
274
275 if (!dev->driver)
276 return;
277 ssb_drv = drv_to_ssb_drv(dev->driver);
278 if (ssb_drv && ssb_drv->shutdown)
279 ssb_drv->shutdown(ssb_dev);
280}
281
282static int ssb_device_remove(struct device *dev)
283{
284 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
285 struct ssb_driver *ssb_drv = drv_to_ssb_drv(dev->driver);
286
287 if (ssb_drv && ssb_drv->remove)
288 ssb_drv->remove(ssb_dev);
289 ssb_device_put(ssb_dev);
290
291 return 0;
292}
293
294static int ssb_device_probe(struct device *dev)
295{
296 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
297 struct ssb_driver *ssb_drv = drv_to_ssb_drv(dev->driver);
298 int err = 0;
299
300 ssb_device_get(ssb_dev);
301 if (ssb_drv && ssb_drv->probe)
302 err = ssb_drv->probe(ssb_dev, &ssb_dev->id);
303 if (err)
304 ssb_device_put(ssb_dev);
305
306 return err;
307}
308
309static int ssb_match_devid(const struct ssb_device_id *tabid,
310 const struct ssb_device_id *devid)
311{
312 if ((tabid->vendor != devid->vendor) &&
313 tabid->vendor != SSB_ANY_VENDOR)
314 return 0;
315 if ((tabid->coreid != devid->coreid) &&
316 tabid->coreid != SSB_ANY_ID)
317 return 0;
318 if ((tabid->revision != devid->revision) &&
319 tabid->revision != SSB_ANY_REV)
320 return 0;
321 return 1;
322}
323
324static int ssb_bus_match(struct device *dev, struct device_driver *drv)
325{
326 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
327 struct ssb_driver *ssb_drv = drv_to_ssb_drv(drv);
328 const struct ssb_device_id *id;
329
330 for (id = ssb_drv->id_table;
331 id->vendor || id->coreid || id->revision;
332 id++) {
333 if (ssb_match_devid(id, &ssb_dev->id))
334 return 1; /* found */
335 }
336
337 return 0;
338}
339
Al Viro7ac03262007-10-14 05:46:09 +0100340static int ssb_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Michael Buesch61e115a2007-09-18 15:12:50 -0400341{
342 struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
Michael Buesch61e115a2007-09-18 15:12:50 -0400343
344 if (!dev)
345 return -ENODEV;
346
Al Viro7ac03262007-10-14 05:46:09 +0100347 return add_uevent_var(env,
Michael Buesch61e115a2007-09-18 15:12:50 -0400348 "MODALIAS=ssb:v%04Xid%04Xrev%02X",
349 ssb_dev->id.vendor, ssb_dev->id.coreid,
350 ssb_dev->id.revision);
Michael Buesch61e115a2007-09-18 15:12:50 -0400351}
352
Hauke Mehrtensaa3bf282010-11-28 12:22:52 +0100353#define ssb_config_attr(attrib, field, format_string) \
354static ssize_t \
355attrib##_show(struct device *dev, struct device_attribute *attr, char *buf) \
356{ \
357 return sprintf(buf, format_string, dev_to_ssb_dev(dev)->field); \
Greg Kroah-Hartman4e9072d2013-10-06 23:55:48 -0700358} \
359static DEVICE_ATTR_RO(attrib);
Hauke Mehrtensaa3bf282010-11-28 12:22:52 +0100360
361ssb_config_attr(core_num, core_index, "%u\n")
362ssb_config_attr(coreid, id.coreid, "0x%04x\n")
363ssb_config_attr(vendor, id.vendor, "0x%04x\n")
364ssb_config_attr(revision, id.revision, "%u\n")
365ssb_config_attr(irq, irq, "%u\n")
366static ssize_t
367name_show(struct device *dev, struct device_attribute *attr, char *buf)
368{
369 return sprintf(buf, "%s\n",
370 ssb_core_name(dev_to_ssb_dev(dev)->id.coreid));
371}
Greg Kroah-Hartman4e9072d2013-10-06 23:55:48 -0700372static DEVICE_ATTR_RO(name);
Hauke Mehrtensaa3bf282010-11-28 12:22:52 +0100373
Greg Kroah-Hartman4e9072d2013-10-06 23:55:48 -0700374static struct attribute *ssb_device_attrs[] = {
375 &dev_attr_name.attr,
376 &dev_attr_core_num.attr,
377 &dev_attr_coreid.attr,
378 &dev_attr_vendor.attr,
379 &dev_attr_revision.attr,
380 &dev_attr_irq.attr,
381 NULL,
Hauke Mehrtensaa3bf282010-11-28 12:22:52 +0100382};
Greg Kroah-Hartman4e9072d2013-10-06 23:55:48 -0700383ATTRIBUTE_GROUPS(ssb_device);
Hauke Mehrtensaa3bf282010-11-28 12:22:52 +0100384
Michael Buesch61e115a2007-09-18 15:12:50 -0400385static struct bus_type ssb_bustype = {
386 .name = "ssb",
387 .match = ssb_bus_match,
388 .probe = ssb_device_probe,
389 .remove = ssb_device_remove,
390 .shutdown = ssb_device_shutdown,
391 .suspend = ssb_device_suspend,
392 .resume = ssb_device_resume,
393 .uevent = ssb_device_uevent,
Greg Kroah-Hartman4e9072d2013-10-06 23:55:48 -0700394 .dev_groups = ssb_device_groups,
Michael Buesch61e115a2007-09-18 15:12:50 -0400395};
396
397static void ssb_buses_lock(void)
398{
399 /* See the comment at the ssb_is_early_boot definition */
400 if (!ssb_is_early_boot)
401 mutex_lock(&buses_mutex);
402}
403
404static void ssb_buses_unlock(void)
405{
406 /* See the comment at the ssb_is_early_boot definition */
407 if (!ssb_is_early_boot)
408 mutex_unlock(&buses_mutex);
409}
410
411static void ssb_devices_unregister(struct ssb_bus *bus)
412{
413 struct ssb_device *sdev;
414 int i;
415
416 for (i = bus->nr_devices - 1; i >= 0; i--) {
417 sdev = &(bus->devices[i]);
418 if (sdev->dev)
419 device_unregister(sdev->dev);
420 }
Hauke Mehrtensbde327e2012-12-05 18:46:08 +0100421
422#ifdef CONFIG_SSB_EMBEDDED
423 if (bus->bustype == SSB_BUSTYPE_SSB)
424 platform_device_unregister(bus->watchdog);
425#endif
Michael Buesch61e115a2007-09-18 15:12:50 -0400426}
427
428void ssb_bus_unregister(struct ssb_bus *bus)
429{
Hauke Mehrtens600485e2013-02-03 23:25:34 +0100430 int err;
431
432 err = ssb_gpio_unregister(bus);
433 if (err == -EBUSY)
Joe Perches33a606a2013-02-20 12:16:13 -0800434 ssb_dbg("Some GPIOs are still in use\n");
Hauke Mehrtens600485e2013-02-03 23:25:34 +0100435 else if (err)
Joe Perches33a606a2013-02-20 12:16:13 -0800436 ssb_dbg("Can not unregister GPIO driver: %i\n", err);
Hauke Mehrtens600485e2013-02-03 23:25:34 +0100437
Michael Buesch61e115a2007-09-18 15:12:50 -0400438 ssb_buses_lock();
439 ssb_devices_unregister(bus);
440 list_del(&bus->list);
441 ssb_buses_unlock();
442
Michael Buesche7ec2e32008-03-10 17:26:32 +0100443 ssb_pcmcia_exit(bus);
Michael Buesch61e115a2007-09-18 15:12:50 -0400444 ssb_pci_exit(bus);
445 ssb_iounmap(bus);
446}
447EXPORT_SYMBOL(ssb_bus_unregister);
448
449static void ssb_release_dev(struct device *dev)
450{
451 struct __ssb_dev_wrapper *devwrap;
452
453 devwrap = container_of(dev, struct __ssb_dev_wrapper, dev);
454 kfree(devwrap);
455}
456
457static int ssb_devices_register(struct ssb_bus *bus)
458{
459 struct ssb_device *sdev;
460 struct device *dev;
461 struct __ssb_dev_wrapper *devwrap;
462 int i, err = 0;
463 int dev_idx = 0;
464
465 for (i = 0; i < bus->nr_devices; i++) {
466 sdev = &(bus->devices[i]);
467
468 /* We don't register SSB-system devices to the kernel,
469 * as the drivers for them are built into SSB. */
470 switch (sdev->id.coreid) {
471 case SSB_DEV_CHIPCOMMON:
472 case SSB_DEV_PCI:
473 case SSB_DEV_PCIE:
474 case SSB_DEV_PCMCIA:
475 case SSB_DEV_MIPS:
476 case SSB_DEV_MIPS_3302:
477 case SSB_DEV_EXTIF:
478 continue;
479 }
480
481 devwrap = kzalloc(sizeof(*devwrap), GFP_KERNEL);
482 if (!devwrap) {
Joe Perches33a606a2013-02-20 12:16:13 -0800483 ssb_err("Could not allocate device\n");
Michael Buesch61e115a2007-09-18 15:12:50 -0400484 err = -ENOMEM;
485 goto error;
486 }
487 dev = &devwrap->dev;
488 devwrap->sdev = sdev;
489
490 dev->release = ssb_release_dev;
491 dev->bus = &ssb_bustype;
Kay Sieversb7b05fe2008-10-30 15:51:57 +0100492 dev_set_name(dev, "ssb%u:%d", bus->busnumber, dev_idx);
Michael Buesch61e115a2007-09-18 15:12:50 -0400493
494 switch (bus->bustype) {
495 case SSB_BUSTYPE_PCI:
496#ifdef CONFIG_SSB_PCIHOST
497 sdev->irq = bus->host_pci->irq;
498 dev->parent = &bus->host_pci->dev;
FUJITA Tomonori14f92952010-06-03 19:37:27 -0700499 sdev->dma_dev = dev->parent;
Michael Buesch61e115a2007-09-18 15:12:50 -0400500#endif
501 break;
502 case SSB_BUSTYPE_PCMCIA:
503#ifdef CONFIG_SSB_PCMCIAHOST
Dominik Brodowskieb141202010-03-07 12:21:16 +0100504 sdev->irq = bus->host_pcmcia->irq;
Michael Buesch61e115a2007-09-18 15:12:50 -0400505 dev->parent = &bus->host_pcmcia->dev;
506#endif
507 break;
Albert Herranz24ea6022009-09-08 19:30:12 +0200508 case SSB_BUSTYPE_SDIO:
Michael Buesch391ae222010-02-03 18:24:35 +0100509#ifdef CONFIG_SSB_SDIOHOST
Albert Herranz24ea6022009-09-08 19:30:12 +0200510 dev->parent = &bus->host_sdio->dev;
511#endif
512 break;
Michael Buesch61e115a2007-09-18 15:12:50 -0400513 case SSB_BUSTYPE_SSB:
Aurelien Jarnoac82da32008-09-26 22:27:11 +0200514 dev->dma_mask = &dev->coherent_dma_mask;
FUJITA Tomonori14f92952010-06-03 19:37:27 -0700515 sdev->dma_dev = dev;
Michael Buesch61e115a2007-09-18 15:12:50 -0400516 break;
517 }
518
519 sdev->dev = dev;
520 err = device_register(dev);
521 if (err) {
Joe Perches33a606a2013-02-20 12:16:13 -0800522 ssb_err("Could not register %s\n", dev_name(dev));
Michael Buesch61e115a2007-09-18 15:12:50 -0400523 /* Set dev to NULL to not unregister
524 * dev on error unwinding. */
525 sdev->dev = NULL;
526 kfree(devwrap);
527 goto error;
528 }
529 dev_idx++;
530 }
531
Rafał Miłeckic7a4a9e2013-01-25 11:36:26 +0100532#ifdef CONFIG_SSB_DRIVER_MIPS
533 if (bus->mipscore.pflash.present) {
534 err = platform_device_register(&ssb_pflash_dev);
535 if (err)
536 pr_err("Error registering parallel flash\n");
537 }
538#endif
539
Rafał Miłecki7b5d6042013-06-18 07:33:40 +0200540#ifdef CONFIG_SSB_SFLASH
541 if (bus->mipscore.sflash.present) {
542 err = platform_device_register(&ssb_sflash_dev);
543 if (err)
544 pr_err("Error registering serial flash\n");
545 }
546#endif
547
Michael Buesch61e115a2007-09-18 15:12:50 -0400548 return 0;
549error:
550 /* Unwind the already registered devices. */
551 ssb_devices_unregister(bus);
552 return err;
553}
554
555/* Needs ssb_buses_lock() */
Greg Kroah-Hartman163247c2012-12-21 15:10:52 -0800556static int ssb_attach_queued_buses(void)
Michael Buesch61e115a2007-09-18 15:12:50 -0400557{
558 struct ssb_bus *bus, *n;
559 int err = 0;
560 int drop_them_all = 0;
561
562 list_for_each_entry_safe(bus, n, &attach_queue, list) {
563 if (drop_them_all) {
564 list_del(&bus->list);
565 continue;
566 }
567 /* Can't init the PCIcore in ssb_bus_register(), as that
568 * is too early in boot for embedded systems
569 * (no udelay() available). So do it here in attach stage.
570 */
571 err = ssb_bus_powerup(bus, 0);
572 if (err)
573 goto error;
574 ssb_pcicore_init(&bus->pcicore);
Hauke Mehrtensbde327e2012-12-05 18:46:08 +0100575 if (bus->bustype == SSB_BUSTYPE_SSB)
576 ssb_watchdog_register(bus);
Rafał Miłecki7c1bc0d2014-01-13 19:56:08 +0100577
578 err = ssb_gpio_init(bus);
579 if (err == -ENOTSUPP)
580 ssb_dbg("GPIO driver not activated\n");
581 else if (err)
582 ssb_dbg("Error registering GPIO driver: %i\n", err);
583
Michael Buesch61e115a2007-09-18 15:12:50 -0400584 ssb_bus_may_powerdown(bus);
585
586 err = ssb_devices_register(bus);
587error:
588 if (err) {
589 drop_them_all = 1;
590 list_del(&bus->list);
591 continue;
592 }
593 list_move_tail(&bus->list, &buses);
594 }
595
596 return err;
597}
598
Michael Buesch61e115a2007-09-18 15:12:50 -0400599static int ssb_fetch_invariants(struct ssb_bus *bus,
600 ssb_invariants_func_t get_invariants)
601{
602 struct ssb_init_invariants iv;
603 int err;
604
605 memset(&iv, 0, sizeof(iv));
606 err = get_invariants(bus, &iv);
607 if (err)
608 goto out;
609 memcpy(&bus->boardinfo, &iv.boardinfo, sizeof(iv.boardinfo));
610 memcpy(&bus->sprom, &iv.sprom, sizeof(iv.sprom));
Michael Buesch7cb44612008-02-19 17:46:48 +0100611 bus->has_cardbus_slot = iv.has_cardbus_slot;
Michael Buesch61e115a2007-09-18 15:12:50 -0400612out:
613 return err;
614}
615
Greg Kroah-Hartman163247c2012-12-21 15:10:52 -0800616static int ssb_bus_register(struct ssb_bus *bus,
617 ssb_invariants_func_t get_invariants,
618 unsigned long baseaddr)
Michael Buesch61e115a2007-09-18 15:12:50 -0400619{
620 int err;
621
622 spin_lock_init(&bus->bar_lock);
623 INIT_LIST_HEAD(&bus->list);
Michael Buesch53521d82008-02-19 16:22:50 +0100624#ifdef CONFIG_SSB_EMBEDDED
625 spin_lock_init(&bus->gpio_lock);
626#endif
Michael Buesch61e115a2007-09-18 15:12:50 -0400627
628 /* Powerup the bus */
629 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
630 if (err)
631 goto out;
Albert Herranz24ea6022009-09-08 19:30:12 +0200632
633 /* Init SDIO-host device (if any), before the scan */
634 err = ssb_sdio_init(bus);
635 if (err)
636 goto err_disable_xtal;
637
Michael Buesch61e115a2007-09-18 15:12:50 -0400638 ssb_buses_lock();
639 bus->busnumber = next_busnumber;
640 /* Scan for devices (cores) */
641 err = ssb_bus_scan(bus, baseaddr);
642 if (err)
Albert Herranz24ea6022009-09-08 19:30:12 +0200643 goto err_sdio_exit;
Michael Buesch61e115a2007-09-18 15:12:50 -0400644
645 /* Init PCI-host device (if any) */
646 err = ssb_pci_init(bus);
647 if (err)
648 goto err_unmap;
649 /* Init PCMCIA-host device (if any) */
650 err = ssb_pcmcia_init(bus);
651 if (err)
652 goto err_pci_exit;
653
654 /* Initialize basic system devices (if available) */
655 err = ssb_bus_powerup(bus, 0);
656 if (err)
657 goto err_pcmcia_exit;
658 ssb_chipcommon_init(&bus->chipco);
Hauke Mehrtens394bc7e2012-11-20 22:24:32 +0000659 ssb_extif_init(&bus->extif);
Michael Buesch61e115a2007-09-18 15:12:50 -0400660 ssb_mipscore_init(&bus->mipscore);
661 err = ssb_fetch_invariants(bus, get_invariants);
662 if (err) {
663 ssb_bus_may_powerdown(bus);
664 goto err_pcmcia_exit;
665 }
666 ssb_bus_may_powerdown(bus);
667
668 /* Queue it for attach.
669 * See the comment at the ssb_is_early_boot definition. */
670 list_add_tail(&bus->list, &attach_queue);
671 if (!ssb_is_early_boot) {
672 /* This is not early boot, so we must attach the bus now */
673 err = ssb_attach_queued_buses();
674 if (err)
675 goto err_dequeue;
676 }
677 next_busnumber++;
678 ssb_buses_unlock();
679
680out:
681 return err;
682
683err_dequeue:
684 list_del(&bus->list);
685err_pcmcia_exit:
Michael Buesche7ec2e32008-03-10 17:26:32 +0100686 ssb_pcmcia_exit(bus);
Michael Buesch61e115a2007-09-18 15:12:50 -0400687err_pci_exit:
688 ssb_pci_exit(bus);
689err_unmap:
690 ssb_iounmap(bus);
Albert Herranz24ea6022009-09-08 19:30:12 +0200691err_sdio_exit:
692 ssb_sdio_exit(bus);
Michael Buesch61e115a2007-09-18 15:12:50 -0400693err_disable_xtal:
694 ssb_buses_unlock();
695 ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
696 return err;
697}
698
699#ifdef CONFIG_SSB_PCIHOST
Greg Kroah-Hartman163247c2012-12-21 15:10:52 -0800700int ssb_bus_pcibus_register(struct ssb_bus *bus, struct pci_dev *host_pci)
Michael Buesch61e115a2007-09-18 15:12:50 -0400701{
702 int err;
703
704 bus->bustype = SSB_BUSTYPE_PCI;
705 bus->host_pci = host_pci;
706 bus->ops = &ssb_pci_ops;
707
708 err = ssb_bus_register(bus, ssb_pci_get_invariants, 0);
709 if (!err) {
Joe Perches33a606a2013-02-20 12:16:13 -0800710 ssb_info("Sonics Silicon Backplane found on PCI device %s\n",
711 dev_name(&host_pci->dev));
Larry Fingerce9626e2010-04-23 13:17:21 -0500712 } else {
Joe Perches33a606a2013-02-20 12:16:13 -0800713 ssb_err("Failed to register PCI version of SSB with error %d\n",
714 err);
Michael Buesch61e115a2007-09-18 15:12:50 -0400715 }
716
717 return err;
718}
Michael Buesch61e115a2007-09-18 15:12:50 -0400719#endif /* CONFIG_SSB_PCIHOST */
720
721#ifdef CONFIG_SSB_PCMCIAHOST
Greg Kroah-Hartman163247c2012-12-21 15:10:52 -0800722int ssb_bus_pcmciabus_register(struct ssb_bus *bus,
723 struct pcmcia_device *pcmcia_dev,
724 unsigned long baseaddr)
Michael Buesch61e115a2007-09-18 15:12:50 -0400725{
726 int err;
727
728 bus->bustype = SSB_BUSTYPE_PCMCIA;
729 bus->host_pcmcia = pcmcia_dev;
730 bus->ops = &ssb_pcmcia_ops;
731
732 err = ssb_bus_register(bus, ssb_pcmcia_get_invariants, baseaddr);
733 if (!err) {
Joe Perches33a606a2013-02-20 12:16:13 -0800734 ssb_info("Sonics Silicon Backplane found on PCMCIA device %s\n",
735 pcmcia_dev->devname);
Michael Buesch61e115a2007-09-18 15:12:50 -0400736 }
737
738 return err;
739}
Michael Buesch61e115a2007-09-18 15:12:50 -0400740#endif /* CONFIG_SSB_PCMCIAHOST */
741
Albert Herranz24ea6022009-09-08 19:30:12 +0200742#ifdef CONFIG_SSB_SDIOHOST
Greg Kroah-Hartman163247c2012-12-21 15:10:52 -0800743int ssb_bus_sdiobus_register(struct ssb_bus *bus, struct sdio_func *func,
744 unsigned int quirks)
Albert Herranz24ea6022009-09-08 19:30:12 +0200745{
746 int err;
747
748 bus->bustype = SSB_BUSTYPE_SDIO;
749 bus->host_sdio = func;
750 bus->ops = &ssb_sdio_ops;
751 bus->quirks = quirks;
752
753 err = ssb_bus_register(bus, ssb_sdio_get_invariants, ~0);
754 if (!err) {
Joe Perches33a606a2013-02-20 12:16:13 -0800755 ssb_info("Sonics Silicon Backplane found on SDIO device %s\n",
756 sdio_func_id(func));
Albert Herranz24ea6022009-09-08 19:30:12 +0200757 }
758
759 return err;
760}
761EXPORT_SYMBOL(ssb_bus_sdiobus_register);
762#endif /* CONFIG_SSB_PCMCIAHOST */
763
Greg Kroah-Hartman163247c2012-12-21 15:10:52 -0800764int ssb_bus_ssbbus_register(struct ssb_bus *bus, unsigned long baseaddr,
765 ssb_invariants_func_t get_invariants)
Michael Buesch61e115a2007-09-18 15:12:50 -0400766{
767 int err;
768
769 bus->bustype = SSB_BUSTYPE_SSB;
Rafał Miłecki830c7df2015-10-25 19:32:42 +0100770 bus->ops = &ssb_host_soc_ops;
Michael Buesch61e115a2007-09-18 15:12:50 -0400771
772 err = ssb_bus_register(bus, get_invariants, baseaddr);
773 if (!err) {
Joe Perches33a606a2013-02-20 12:16:13 -0800774 ssb_info("Sonics Silicon Backplane found at address 0x%08lX\n",
775 baseaddr);
Michael Buesch61e115a2007-09-18 15:12:50 -0400776 }
777
778 return err;
779}
780
781int __ssb_driver_register(struct ssb_driver *drv, struct module *owner)
782{
783 drv->drv.name = drv->name;
784 drv->drv.bus = &ssb_bustype;
785 drv->drv.owner = owner;
786
787 return driver_register(&drv->drv);
788}
789EXPORT_SYMBOL(__ssb_driver_register);
790
791void ssb_driver_unregister(struct ssb_driver *drv)
792{
793 driver_unregister(&drv->drv);
794}
795EXPORT_SYMBOL(ssb_driver_unregister);
796
797void ssb_set_devtypedata(struct ssb_device *dev, void *data)
798{
799 struct ssb_bus *bus = dev->bus;
800 struct ssb_device *ent;
801 int i;
802
803 for (i = 0; i < bus->nr_devices; i++) {
804 ent = &(bus->devices[i]);
805 if (ent->id.vendor != dev->id.vendor)
806 continue;
807 if (ent->id.coreid != dev->id.coreid)
808 continue;
809
810 ent->devtypedata = data;
811 }
812}
813EXPORT_SYMBOL(ssb_set_devtypedata);
814
815static u32 clkfactor_f6_resolve(u32 v)
816{
817 /* map the magic values */
818 switch (v) {
819 case SSB_CHIPCO_CLK_F6_2:
820 return 2;
821 case SSB_CHIPCO_CLK_F6_3:
822 return 3;
823 case SSB_CHIPCO_CLK_F6_4:
824 return 4;
825 case SSB_CHIPCO_CLK_F6_5:
826 return 5;
827 case SSB_CHIPCO_CLK_F6_6:
828 return 6;
829 case SSB_CHIPCO_CLK_F6_7:
830 return 7;
831 }
832 return 0;
833}
834
835/* Calculate the speed the backplane would run at a given set of clockcontrol values */
836u32 ssb_calc_clock_rate(u32 plltype, u32 n, u32 m)
837{
838 u32 n1, n2, clock, m1, m2, m3, mc;
839
840 n1 = (n & SSB_CHIPCO_CLK_N1);
841 n2 = ((n & SSB_CHIPCO_CLK_N2) >> SSB_CHIPCO_CLK_N2_SHIFT);
842
843 switch (plltype) {
844 case SSB_PLLTYPE_6: /* 100/200 or 120/240 only */
845 if (m & SSB_CHIPCO_CLK_T6_MMASK)
Hauke Mehrtense913d462011-06-21 20:53:20 +0200846 return SSB_CHIPCO_CLK_T6_M1;
847 return SSB_CHIPCO_CLK_T6_M0;
Michael Buesch61e115a2007-09-18 15:12:50 -0400848 case SSB_PLLTYPE_1: /* 48Mhz base, 3 dividers */
849 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
850 case SSB_PLLTYPE_4: /* 48Mhz, 4 dividers */
851 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
852 n1 = clkfactor_f6_resolve(n1);
853 n2 += SSB_CHIPCO_CLK_F5_BIAS;
854 break;
855 case SSB_PLLTYPE_2: /* 48Mhz, 4 dividers */
856 n1 += SSB_CHIPCO_CLK_T2_BIAS;
857 n2 += SSB_CHIPCO_CLK_T2_BIAS;
858 SSB_WARN_ON(!((n1 >= 2) && (n1 <= 7)));
859 SSB_WARN_ON(!((n2 >= 5) && (n2 <= 23)));
860 break;
861 case SSB_PLLTYPE_5: /* 25Mhz, 4 dividers */
862 return 100000000;
863 default:
864 SSB_WARN_ON(1);
865 }
866
867 switch (plltype) {
868 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
869 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
870 clock = SSB_CHIPCO_CLK_BASE2 * n1 * n2;
871 break;
872 default:
873 clock = SSB_CHIPCO_CLK_BASE1 * n1 * n2;
874 }
875 if (!clock)
876 return 0;
877
878 m1 = (m & SSB_CHIPCO_CLK_M1);
879 m2 = ((m & SSB_CHIPCO_CLK_M2) >> SSB_CHIPCO_CLK_M2_SHIFT);
880 m3 = ((m & SSB_CHIPCO_CLK_M3) >> SSB_CHIPCO_CLK_M3_SHIFT);
881 mc = ((m & SSB_CHIPCO_CLK_MC) >> SSB_CHIPCO_CLK_MC_SHIFT);
882
883 switch (plltype) {
884 case SSB_PLLTYPE_1: /* 48Mhz base, 3 dividers */
885 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
886 case SSB_PLLTYPE_4: /* 48Mhz, 4 dividers */
887 case SSB_PLLTYPE_7: /* 25Mhz, 4 dividers */
888 m1 = clkfactor_f6_resolve(m1);
889 if ((plltype == SSB_PLLTYPE_1) ||
890 (plltype == SSB_PLLTYPE_3))
891 m2 += SSB_CHIPCO_CLK_F5_BIAS;
892 else
893 m2 = clkfactor_f6_resolve(m2);
894 m3 = clkfactor_f6_resolve(m3);
895
896 switch (mc) {
897 case SSB_CHIPCO_CLK_MC_BYPASS:
898 return clock;
899 case SSB_CHIPCO_CLK_MC_M1:
900 return (clock / m1);
901 case SSB_CHIPCO_CLK_MC_M1M2:
902 return (clock / (m1 * m2));
903 case SSB_CHIPCO_CLK_MC_M1M2M3:
904 return (clock / (m1 * m2 * m3));
905 case SSB_CHIPCO_CLK_MC_M1M3:
906 return (clock / (m1 * m3));
907 }
908 return 0;
909 case SSB_PLLTYPE_2:
910 m1 += SSB_CHIPCO_CLK_T2_BIAS;
911 m2 += SSB_CHIPCO_CLK_T2M2_BIAS;
912 m3 += SSB_CHIPCO_CLK_T2_BIAS;
913 SSB_WARN_ON(!((m1 >= 2) && (m1 <= 7)));
914 SSB_WARN_ON(!((m2 >= 3) && (m2 <= 10)));
915 SSB_WARN_ON(!((m3 >= 2) && (m3 <= 7)));
916
917 if (!(mc & SSB_CHIPCO_CLK_T2MC_M1BYP))
918 clock /= m1;
919 if (!(mc & SSB_CHIPCO_CLK_T2MC_M2BYP))
920 clock /= m2;
921 if (!(mc & SSB_CHIPCO_CLK_T2MC_M3BYP))
922 clock /= m3;
923 return clock;
924 default:
925 SSB_WARN_ON(1);
926 }
927 return 0;
928}
929
930/* Get the current speed the backplane is running at */
931u32 ssb_clockspeed(struct ssb_bus *bus)
932{
933 u32 rate;
934 u32 plltype;
935 u32 clkctl_n, clkctl_m;
936
Hauke Mehrtensd486a5b2012-02-01 00:13:56 +0100937 if (bus->chipco.capabilities & SSB_CHIPCO_CAP_PMU)
938 return ssb_pmu_get_controlclock(&bus->chipco);
939
Michael Buesch61e115a2007-09-18 15:12:50 -0400940 if (ssb_extif_available(&bus->extif))
941 ssb_extif_get_clockcontrol(&bus->extif, &plltype,
942 &clkctl_n, &clkctl_m);
943 else if (bus->chipco.dev)
944 ssb_chipco_get_clockcontrol(&bus->chipco, &plltype,
945 &clkctl_n, &clkctl_m);
946 else
947 return 0;
948
949 if (bus->chip_id == 0x5365) {
950 rate = 100000000;
951 } else {
952 rate = ssb_calc_clock_rate(plltype, clkctl_n, clkctl_m);
953 if (plltype == SSB_PLLTYPE_3) /* 25Mhz, 2 dividers */
954 rate /= 2;
955 }
956
957 return rate;
958}
959EXPORT_SYMBOL(ssb_clockspeed);
960
961static u32 ssb_tmslow_reject_bitmask(struct ssb_device *dev)
962{
Larry Fingerc272ef42007-11-09 16:56:25 -0600963 u32 rev = ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_SSBREV;
964
Rafał Miłecki04ad1fb2011-04-23 19:30:29 +0200965 /* The REJECT bit seems to be different for Backplane rev 2.3 */
Larry Fingerc272ef42007-11-09 16:56:25 -0600966 switch (rev) {
Michael Buesch61e115a2007-09-18 15:12:50 -0400967 case SSB_IDLOW_SSBREV_22:
Rafał Miłecki04ad1fb2011-04-23 19:30:29 +0200968 case SSB_IDLOW_SSBREV_24:
969 case SSB_IDLOW_SSBREV_26:
970 return SSB_TMSLOW_REJECT;
Michael Buesch61e115a2007-09-18 15:12:50 -0400971 case SSB_IDLOW_SSBREV_23:
972 return SSB_TMSLOW_REJECT_23;
Rafał Miłecki04ad1fb2011-04-23 19:30:29 +0200973 case SSB_IDLOW_SSBREV_25: /* TODO - find the proper REJECT bit */
Larry Fingerc272ef42007-11-09 16:56:25 -0600974 case SSB_IDLOW_SSBREV_27: /* same here */
Rafał Miłecki04ad1fb2011-04-23 19:30:29 +0200975 return SSB_TMSLOW_REJECT; /* this is a guess */
Larry Finger16f70312015-02-18 14:09:38 -0600976 case SSB_IDLOW_SSBREV:
977 break;
Michael Buesch61e115a2007-09-18 15:12:50 -0400978 default:
Cong Ding6cdd6402012-12-08 23:11:06 +0000979 WARN(1, KERN_INFO "ssb: Backplane Revision 0x%.8X\n", rev);
Michael Buesch61e115a2007-09-18 15:12:50 -0400980 }
Rafał Miłecki04ad1fb2011-04-23 19:30:29 +0200981 return (SSB_TMSLOW_REJECT | SSB_TMSLOW_REJECT_23);
Michael Buesch61e115a2007-09-18 15:12:50 -0400982}
983
984int ssb_device_is_enabled(struct ssb_device *dev)
985{
986 u32 val;
987 u32 reject;
988
989 reject = ssb_tmslow_reject_bitmask(dev);
990 val = ssb_read32(dev, SSB_TMSLOW);
991 val &= SSB_TMSLOW_CLOCK | SSB_TMSLOW_RESET | reject;
992
993 return (val == SSB_TMSLOW_CLOCK);
994}
995EXPORT_SYMBOL(ssb_device_is_enabled);
996
997static void ssb_flush_tmslow(struct ssb_device *dev)
998{
999 /* Make _really_ sure the device has finished the TMSLOW
1000 * register write transaction, as we risk running into
1001 * a machine check exception otherwise.
1002 * Do this by reading the register back to commit the
1003 * PCI write and delay an additional usec for the device
1004 * to react to the change. */
1005 ssb_read32(dev, SSB_TMSLOW);
1006 udelay(1);
1007}
1008
1009void ssb_device_enable(struct ssb_device *dev, u32 core_specific_flags)
1010{
1011 u32 val;
1012
1013 ssb_device_disable(dev, core_specific_flags);
1014 ssb_write32(dev, SSB_TMSLOW,
1015 SSB_TMSLOW_RESET | SSB_TMSLOW_CLOCK |
1016 SSB_TMSLOW_FGC | core_specific_flags);
1017 ssb_flush_tmslow(dev);
1018
1019 /* Clear SERR if set. This is a hw bug workaround. */
1020 if (ssb_read32(dev, SSB_TMSHIGH) & SSB_TMSHIGH_SERR)
1021 ssb_write32(dev, SSB_TMSHIGH, 0);
1022
1023 val = ssb_read32(dev, SSB_IMSTATE);
1024 if (val & (SSB_IMSTATE_IBE | SSB_IMSTATE_TO)) {
1025 val &= ~(SSB_IMSTATE_IBE | SSB_IMSTATE_TO);
1026 ssb_write32(dev, SSB_IMSTATE, val);
1027 }
1028
1029 ssb_write32(dev, SSB_TMSLOW,
1030 SSB_TMSLOW_CLOCK | SSB_TMSLOW_FGC |
1031 core_specific_flags);
1032 ssb_flush_tmslow(dev);
1033
1034 ssb_write32(dev, SSB_TMSLOW, SSB_TMSLOW_CLOCK |
1035 core_specific_flags);
1036 ssb_flush_tmslow(dev);
1037}
1038EXPORT_SYMBOL(ssb_device_enable);
1039
Michael Büsch8c68bd42011-02-15 00:21:50 +01001040/* Wait for bitmask in a register to get set or cleared.
Michael Buesch61e115a2007-09-18 15:12:50 -04001041 * timeout is in units of ten-microseconds */
Michael Büsch8c68bd42011-02-15 00:21:50 +01001042static int ssb_wait_bits(struct ssb_device *dev, u16 reg, u32 bitmask,
1043 int timeout, int set)
Michael Buesch61e115a2007-09-18 15:12:50 -04001044{
1045 int i;
1046 u32 val;
1047
1048 for (i = 0; i < timeout; i++) {
1049 val = ssb_read32(dev, reg);
1050 if (set) {
Michael Büsch8c68bd42011-02-15 00:21:50 +01001051 if ((val & bitmask) == bitmask)
Michael Buesch61e115a2007-09-18 15:12:50 -04001052 return 0;
1053 } else {
1054 if (!(val & bitmask))
1055 return 0;
1056 }
1057 udelay(10);
1058 }
1059 printk(KERN_ERR PFX "Timeout waiting for bitmask %08X on "
1060 "register %04X to %s.\n",
1061 bitmask, reg, (set ? "set" : "clear"));
1062
1063 return -ETIMEDOUT;
1064}
1065
1066void ssb_device_disable(struct ssb_device *dev, u32 core_specific_flags)
1067{
Rafał Miłeckib1a1bcf2011-02-17 01:50:50 +01001068 u32 reject, val;
Michael Buesch61e115a2007-09-18 15:12:50 -04001069
1070 if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_RESET)
1071 return;
1072
1073 reject = ssb_tmslow_reject_bitmask(dev);
Rafał Miłeckib1a1bcf2011-02-17 01:50:50 +01001074
Rafał Miłecki011d1832011-02-17 01:50:51 +01001075 if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_CLOCK) {
1076 ssb_write32(dev, SSB_TMSLOW, reject | SSB_TMSLOW_CLOCK);
1077 ssb_wait_bits(dev, SSB_TMSLOW, reject, 1000, 1);
1078 ssb_wait_bits(dev, SSB_TMSHIGH, SSB_TMSHIGH_BUSY, 1000, 0);
Rafał Miłeckib1a1bcf2011-02-17 01:50:50 +01001079
Rafał Miłecki011d1832011-02-17 01:50:51 +01001080 if (ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_INITIATOR) {
1081 val = ssb_read32(dev, SSB_IMSTATE);
1082 val |= SSB_IMSTATE_REJECT;
1083 ssb_write32(dev, SSB_IMSTATE, val);
1084 ssb_wait_bits(dev, SSB_IMSTATE, SSB_IMSTATE_BUSY, 1000,
1085 0);
1086 }
Michael Buesch61e115a2007-09-18 15:12:50 -04001087
Rafał Miłecki011d1832011-02-17 01:50:51 +01001088 ssb_write32(dev, SSB_TMSLOW,
1089 SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK |
1090 reject | SSB_TMSLOW_RESET |
1091 core_specific_flags);
1092 ssb_flush_tmslow(dev);
1093
1094 if (ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_INITIATOR) {
1095 val = ssb_read32(dev, SSB_IMSTATE);
1096 val &= ~SSB_IMSTATE_REJECT;
1097 ssb_write32(dev, SSB_IMSTATE, val);
1098 }
Rafał Miłeckib1a1bcf2011-02-17 01:50:50 +01001099 }
1100
Michael Buesch61e115a2007-09-18 15:12:50 -04001101 ssb_write32(dev, SSB_TMSLOW,
1102 reject | SSB_TMSLOW_RESET |
1103 core_specific_flags);
1104 ssb_flush_tmslow(dev);
1105}
1106EXPORT_SYMBOL(ssb_device_disable);
1107
Rafał Miłecki04023af2011-08-14 19:39:40 +02001108/* Some chipsets need routing known for PCIe and 64-bit DMA */
1109static bool ssb_dma_translation_special_bit(struct ssb_device *dev)
1110{
1111 u16 chip_id = dev->bus->chip_id;
1112
1113 if (dev->id.coreid == SSB_DEV_80211) {
1114 return (chip_id == 0x4322 || chip_id == 43221 ||
1115 chip_id == 43231 || chip_id == 43222);
1116 }
1117
1118 return 0;
1119}
1120
Michael Buesch61e115a2007-09-18 15:12:50 -04001121u32 ssb_dma_translation(struct ssb_device *dev)
1122{
1123 switch (dev->bus->bustype) {
1124 case SSB_BUSTYPE_SSB:
1125 return 0;
1126 case SSB_BUSTYPE_PCI:
Rafał Miłecki04023af2011-08-14 19:39:40 +02001127 if (pci_is_pcie(dev->bus->host_pci) &&
1128 ssb_read32(dev, SSB_TMSHIGH) & SSB_TMSHIGH_DMA64) {
Rafał Miłeckia9770a82011-07-20 19:52:14 +02001129 return SSB_PCIE_DMA_H32;
Rafał Miłecki04023af2011-08-14 19:39:40 +02001130 } else {
1131 if (ssb_dma_translation_special_bit(dev))
1132 return SSB_PCIE_DMA_H32;
1133 else
1134 return SSB_PCI_DMA;
1135 }
Michael Bueschf2257632008-06-20 11:50:29 +02001136 default:
1137 __ssb_dma_not_implemented(dev);
Michael Buesch61e115a2007-09-18 15:12:50 -04001138 }
1139 return 0;
1140}
1141EXPORT_SYMBOL(ssb_dma_translation);
1142
Michael Buesch61e115a2007-09-18 15:12:50 -04001143int ssb_bus_may_powerdown(struct ssb_bus *bus)
1144{
1145 struct ssb_chipcommon *cc;
1146 int err = 0;
1147
1148 /* On buses where more than one core may be working
1149 * at a time, we must not powerdown stuff if there are
1150 * still cores that may want to run. */
1151 if (bus->bustype == SSB_BUSTYPE_SSB)
1152 goto out;
1153
1154 cc = &bus->chipco;
Stefano Brivio881400a2008-04-06 17:05:07 +02001155
1156 if (!cc->dev)
1157 goto out;
1158 if (cc->dev->id.revision < 5)
1159 goto out;
1160
Michael Buesch61e115a2007-09-18 15:12:50 -04001161 ssb_chipco_set_clockmode(cc, SSB_CLKMODE_SLOW);
1162 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 0);
1163 if (err)
1164 goto error;
1165out:
1166#ifdef CONFIG_SSB_DEBUG
1167 bus->powered_up = 0;
1168#endif
1169 return err;
1170error:
Joe Perches33a606a2013-02-20 12:16:13 -08001171 ssb_err("Bus powerdown failed\n");
Michael Buesch61e115a2007-09-18 15:12:50 -04001172 goto out;
1173}
1174EXPORT_SYMBOL(ssb_bus_may_powerdown);
1175
1176int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl)
1177{
Michael Buesch61e115a2007-09-18 15:12:50 -04001178 int err;
1179 enum ssb_clkmode mode;
1180
1181 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
1182 if (err)
1183 goto error;
Michael Buesch61e115a2007-09-18 15:12:50 -04001184
1185#ifdef CONFIG_SSB_DEBUG
1186 bus->powered_up = 1;
1187#endif
Rafał Miłeckia6ef8142011-04-23 19:30:28 +02001188
1189 mode = dynamic_pctl ? SSB_CLKMODE_DYNAMIC : SSB_CLKMODE_FAST;
1190 ssb_chipco_set_clockmode(&bus->chipco, mode);
1191
Michael Buesch61e115a2007-09-18 15:12:50 -04001192 return 0;
1193error:
Joe Perches33a606a2013-02-20 12:16:13 -08001194 ssb_err("Bus powerup failed\n");
Michael Buesch61e115a2007-09-18 15:12:50 -04001195 return err;
1196}
1197EXPORT_SYMBOL(ssb_bus_powerup);
1198
Rafał Miłecki8576f812011-05-11 02:10:58 +02001199static void ssb_broadcast_value(struct ssb_device *dev,
1200 u32 address, u32 data)
1201{
John W. Linville11590242011-05-13 09:23:47 -04001202#ifdef CONFIG_SSB_DRIVER_PCICORE
Rafał Miłecki8576f812011-05-11 02:10:58 +02001203 /* This is used for both, PCI and ChipCommon core, so be careful. */
1204 BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR != SSB_CHIPCO_BCAST_ADDR);
1205 BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA != SSB_CHIPCO_BCAST_DATA);
John W. Linville11590242011-05-13 09:23:47 -04001206#endif
Rafał Miłecki8576f812011-05-11 02:10:58 +02001207
John W. Linville11590242011-05-13 09:23:47 -04001208 ssb_write32(dev, SSB_CHIPCO_BCAST_ADDR, address);
1209 ssb_read32(dev, SSB_CHIPCO_BCAST_ADDR); /* flush */
1210 ssb_write32(dev, SSB_CHIPCO_BCAST_DATA, data);
1211 ssb_read32(dev, SSB_CHIPCO_BCAST_DATA); /* flush */
Rafał Miłecki8576f812011-05-11 02:10:58 +02001212}
1213
1214void ssb_commit_settings(struct ssb_bus *bus)
1215{
1216 struct ssb_device *dev;
1217
John W. Linville11590242011-05-13 09:23:47 -04001218#ifdef CONFIG_SSB_DRIVER_PCICORE
Rafał Miłecki8576f812011-05-11 02:10:58 +02001219 dev = bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev;
John W. Linville11590242011-05-13 09:23:47 -04001220#else
1221 dev = bus->chipco.dev;
1222#endif
Rafał Miłecki8576f812011-05-11 02:10:58 +02001223 if (WARN_ON(!dev))
1224 return;
1225 /* This forces an update of the cached registers. */
1226 ssb_broadcast_value(dev, 0xFD8, 0);
1227}
1228EXPORT_SYMBOL(ssb_commit_settings);
1229
Michael Buesch61e115a2007-09-18 15:12:50 -04001230u32 ssb_admatch_base(u32 adm)
1231{
1232 u32 base = 0;
1233
1234 switch (adm & SSB_ADM_TYPE) {
1235 case SSB_ADM_TYPE0:
1236 base = (adm & SSB_ADM_BASE0);
1237 break;
1238 case SSB_ADM_TYPE1:
1239 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1240 base = (adm & SSB_ADM_BASE1);
1241 break;
1242 case SSB_ADM_TYPE2:
1243 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1244 base = (adm & SSB_ADM_BASE2);
1245 break;
1246 default:
1247 SSB_WARN_ON(1);
1248 }
1249
1250 return base;
1251}
1252EXPORT_SYMBOL(ssb_admatch_base);
1253
1254u32 ssb_admatch_size(u32 adm)
1255{
1256 u32 size = 0;
1257
1258 switch (adm & SSB_ADM_TYPE) {
1259 case SSB_ADM_TYPE0:
1260 size = ((adm & SSB_ADM_SZ0) >> SSB_ADM_SZ0_SHIFT);
1261 break;
1262 case SSB_ADM_TYPE1:
1263 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1264 size = ((adm & SSB_ADM_SZ1) >> SSB_ADM_SZ1_SHIFT);
1265 break;
1266 case SSB_ADM_TYPE2:
1267 SSB_WARN_ON(adm & SSB_ADM_NEG); /* unsupported */
1268 size = ((adm & SSB_ADM_SZ2) >> SSB_ADM_SZ2_SHIFT);
1269 break;
1270 default:
1271 SSB_WARN_ON(1);
1272 }
1273 size = (1 << (size + 1));
1274
1275 return size;
1276}
1277EXPORT_SYMBOL(ssb_admatch_size);
1278
1279static int __init ssb_modinit(void)
1280{
1281 int err;
1282
1283 /* See the comment at the ssb_is_early_boot definition */
1284 ssb_is_early_boot = 0;
1285 err = bus_register(&ssb_bustype);
1286 if (err)
1287 return err;
1288
1289 /* Maybe we already registered some buses at early boot.
1290 * Check for this and attach them
1291 */
1292 ssb_buses_lock();
1293 err = ssb_attach_queued_buses();
1294 ssb_buses_unlock();
Michael Buesche6c463e2009-09-05 11:18:47 +02001295 if (err) {
Michael Buesch61e115a2007-09-18 15:12:50 -04001296 bus_unregister(&ssb_bustype);
Michael Buesche6c463e2009-09-05 11:18:47 +02001297 goto out;
1298 }
Michael Buesch61e115a2007-09-18 15:12:50 -04001299
1300 err = b43_pci_ssb_bridge_init();
1301 if (err) {
Joe Perches33a606a2013-02-20 12:16:13 -08001302 ssb_err("Broadcom 43xx PCI-SSB-bridge initialization failed\n");
Michael Bueschaab547c2008-02-29 11:36:12 +01001303 /* don't fail SSB init because of this */
1304 err = 0;
1305 }
Rafał Miłecki399500da2015-10-15 07:23:25 +02001306 err = ssb_host_pcmcia_init();
1307 if (err) {
1308 ssb_err("PCMCIA host initialization failed\n");
1309 /* don't fail SSB init because of this */
1310 err = 0;
1311 }
Michael Bueschaab547c2008-02-29 11:36:12 +01001312 err = ssb_gige_init();
1313 if (err) {
Joe Perches33a606a2013-02-20 12:16:13 -08001314 ssb_err("SSB Broadcom Gigabit Ethernet driver initialization failed\n");
Michael Buesch61e115a2007-09-18 15:12:50 -04001315 /* don't fail SSB init because of this */
1316 err = 0;
1317 }
Michael Buesche6c463e2009-09-05 11:18:47 +02001318out:
Michael Buesch61e115a2007-09-18 15:12:50 -04001319 return err;
1320}
Michael Buesch8d8c90e2007-10-27 15:14:39 +02001321/* ssb must be initialized after PCI but before the ssb drivers.
1322 * That means we must use some initcall between subsys_initcall
1323 * and device_initcall. */
1324fs_initcall(ssb_modinit);
Michael Buesch61e115a2007-09-18 15:12:50 -04001325
1326static void __exit ssb_modexit(void)
1327{
Michael Bueschaab547c2008-02-29 11:36:12 +01001328 ssb_gige_exit();
Rafał Miłecki399500da2015-10-15 07:23:25 +02001329 ssb_host_pcmcia_exit();
Michael Buesch61e115a2007-09-18 15:12:50 -04001330 b43_pci_ssb_bridge_exit();
1331 bus_unregister(&ssb_bustype);
1332}
1333module_exit(ssb_modexit)