GNU Linux-libre 4.19.245-gnu1
[releases.git] / drivers / amba / bus.c
1 /*
2  *  linux/arch/arm/common/amba.c
3  *
4  *  Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/device.h>
13 #include <linux/string.h>
14 #include <linux/slab.h>
15 #include <linux/io.h>
16 #include <linux/pm.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/pm_domain.h>
19 #include <linux/amba/bus.h>
20 #include <linux/sizes.h>
21 #include <linux/limits.h>
22 #include <linux/clk/clk-conf.h>
23 #include <linux/platform_device.h>
24
25 #include <asm/irq.h>
26
27 #define to_amba_driver(d)       container_of(d, struct amba_driver, drv)
28
29 static const struct amba_id *
30 amba_lookup(const struct amba_id *table, struct amba_device *dev)
31 {
32         int ret = 0;
33
34         while (table->mask) {
35                 ret = (dev->periphid & table->mask) == table->id;
36                 if (ret)
37                         break;
38                 table++;
39         }
40
41         return ret ? table : NULL;
42 }
43
44 static int amba_match(struct device *dev, struct device_driver *drv)
45 {
46         struct amba_device *pcdev = to_amba_device(dev);
47         struct amba_driver *pcdrv = to_amba_driver(drv);
48
49         /* When driver_override is set, only bind to the matching driver */
50         if (pcdev->driver_override)
51                 return !strcmp(pcdev->driver_override, drv->name);
52
53         return amba_lookup(pcdrv->id_table, pcdev) != NULL;
54 }
55
56 static int amba_uevent(struct device *dev, struct kobj_uevent_env *env)
57 {
58         struct amba_device *pcdev = to_amba_device(dev);
59         int retval = 0;
60
61         retval = add_uevent_var(env, "AMBA_ID=%08x", pcdev->periphid);
62         if (retval)
63                 return retval;
64
65         retval = add_uevent_var(env, "MODALIAS=amba:d%08X", pcdev->periphid);
66         return retval;
67 }
68
69 static ssize_t driver_override_show(struct device *_dev,
70                                     struct device_attribute *attr, char *buf)
71 {
72         struct amba_device *dev = to_amba_device(_dev);
73         ssize_t len;
74
75         device_lock(_dev);
76         len = sprintf(buf, "%s\n", dev->driver_override);
77         device_unlock(_dev);
78         return len;
79 }
80
81 static ssize_t driver_override_store(struct device *_dev,
82                                      struct device_attribute *attr,
83                                      const char *buf, size_t count)
84 {
85         struct amba_device *dev = to_amba_device(_dev);
86         char *driver_override, *old, *cp;
87
88         /* We need to keep extra room for a newline */
89         if (count >= (PAGE_SIZE - 1))
90                 return -EINVAL;
91
92         driver_override = kstrndup(buf, count, GFP_KERNEL);
93         if (!driver_override)
94                 return -ENOMEM;
95
96         cp = strchr(driver_override, '\n');
97         if (cp)
98                 *cp = '\0';
99
100         device_lock(_dev);
101         old = dev->driver_override;
102         if (strlen(driver_override)) {
103                 dev->driver_override = driver_override;
104         } else {
105                 kfree(driver_override);
106                 dev->driver_override = NULL;
107         }
108         device_unlock(_dev);
109
110         kfree(old);
111
112         return count;
113 }
114 static DEVICE_ATTR_RW(driver_override);
115
116 #define amba_attr_func(name,fmt,arg...)                                 \
117 static ssize_t name##_show(struct device *_dev,                         \
118                            struct device_attribute *attr, char *buf)    \
119 {                                                                       \
120         struct amba_device *dev = to_amba_device(_dev);                 \
121         return sprintf(buf, fmt, arg);                                  \
122 }                                                                       \
123 static DEVICE_ATTR_RO(name)
124
125 amba_attr_func(id, "%08x\n", dev->periphid);
126 amba_attr_func(irq0, "%u\n", dev->irq[0]);
127 amba_attr_func(irq1, "%u\n", dev->irq[1]);
128 amba_attr_func(resource, "\t%016llx\t%016llx\t%016lx\n",
129          (unsigned long long)dev->res.start, (unsigned long long)dev->res.end,
130          dev->res.flags);
131
132 static struct attribute *amba_dev_attrs[] = {
133         &dev_attr_id.attr,
134         &dev_attr_resource.attr,
135         &dev_attr_driver_override.attr,
136         NULL,
137 };
138 ATTRIBUTE_GROUPS(amba_dev);
139
140 #ifdef CONFIG_PM
141 /*
142  * Hooks to provide runtime PM of the pclk (bus clock).  It is safe to
143  * enable/disable the bus clock at runtime PM suspend/resume as this
144  * does not result in loss of context.
145  */
146 static int amba_pm_runtime_suspend(struct device *dev)
147 {
148         struct amba_device *pcdev = to_amba_device(dev);
149         int ret = pm_generic_runtime_suspend(dev);
150
151         if (ret == 0 && dev->driver) {
152                 if (pm_runtime_is_irq_safe(dev))
153                         clk_disable(pcdev->pclk);
154                 else
155                         clk_disable_unprepare(pcdev->pclk);
156         }
157
158         return ret;
159 }
160
161 static int amba_pm_runtime_resume(struct device *dev)
162 {
163         struct amba_device *pcdev = to_amba_device(dev);
164         int ret;
165
166         if (dev->driver) {
167                 if (pm_runtime_is_irq_safe(dev))
168                         ret = clk_enable(pcdev->pclk);
169                 else
170                         ret = clk_prepare_enable(pcdev->pclk);
171                 /* Failure is probably fatal to the system, but... */
172                 if (ret)
173                         return ret;
174         }
175
176         return pm_generic_runtime_resume(dev);
177 }
178 #endif /* CONFIG_PM */
179
180 static const struct dev_pm_ops amba_pm = {
181         .suspend        = pm_generic_suspend,
182         .resume         = pm_generic_resume,
183         .freeze         = pm_generic_freeze,
184         .thaw           = pm_generic_thaw,
185         .poweroff       = pm_generic_poweroff,
186         .restore        = pm_generic_restore,
187         SET_RUNTIME_PM_OPS(
188                 amba_pm_runtime_suspend,
189                 amba_pm_runtime_resume,
190                 NULL
191         )
192 };
193
194 /*
195  * Primecells are part of the Advanced Microcontroller Bus Architecture,
196  * so we call the bus "amba".
197  * DMA configuration for platform and AMBA bus is same. So here we reuse
198  * platform's DMA config routine.
199  */
200 struct bus_type amba_bustype = {
201         .name           = "amba",
202         .dev_groups     = amba_dev_groups,
203         .match          = amba_match,
204         .uevent         = amba_uevent,
205         .dma_configure  = platform_dma_configure,
206         .pm             = &amba_pm,
207 };
208 EXPORT_SYMBOL_GPL(amba_bustype);
209
210 static int __init amba_init(void)
211 {
212         return bus_register(&amba_bustype);
213 }
214
215 postcore_initcall(amba_init);
216
217 static int amba_get_enable_pclk(struct amba_device *pcdev)
218 {
219         int ret;
220
221         pcdev->pclk = clk_get(&pcdev->dev, "apb_pclk");
222         if (IS_ERR(pcdev->pclk))
223                 return PTR_ERR(pcdev->pclk);
224
225         ret = clk_prepare_enable(pcdev->pclk);
226         if (ret)
227                 clk_put(pcdev->pclk);
228
229         return ret;
230 }
231
232 static void amba_put_disable_pclk(struct amba_device *pcdev)
233 {
234         clk_disable_unprepare(pcdev->pclk);
235         clk_put(pcdev->pclk);
236 }
237
238 /*
239  * These are the device model conversion veneers; they convert the
240  * device model structures to our more specific structures.
241  */
242 static int amba_probe(struct device *dev)
243 {
244         struct amba_device *pcdev = to_amba_device(dev);
245         struct amba_driver *pcdrv = to_amba_driver(dev->driver);
246         const struct amba_id *id = amba_lookup(pcdrv->id_table, pcdev);
247         int ret;
248
249         do {
250                 ret = of_clk_set_defaults(dev->of_node, false);
251                 if (ret < 0)
252                         break;
253
254                 ret = dev_pm_domain_attach(dev, true);
255                 if (ret)
256                         break;
257
258                 ret = amba_get_enable_pclk(pcdev);
259                 if (ret) {
260                         dev_pm_domain_detach(dev, true);
261                         break;
262                 }
263
264                 pm_runtime_get_noresume(dev);
265                 pm_runtime_set_active(dev);
266                 pm_runtime_enable(dev);
267
268                 ret = pcdrv->probe(pcdev, id);
269                 if (ret == 0)
270                         break;
271
272                 pm_runtime_disable(dev);
273                 pm_runtime_set_suspended(dev);
274                 pm_runtime_put_noidle(dev);
275
276                 amba_put_disable_pclk(pcdev);
277                 dev_pm_domain_detach(dev, true);
278         } while (0);
279
280         return ret;
281 }
282
283 static int amba_remove(struct device *dev)
284 {
285         struct amba_device *pcdev = to_amba_device(dev);
286         struct amba_driver *drv = to_amba_driver(dev->driver);
287         int ret = 0;
288
289         pm_runtime_get_sync(dev);
290         if (drv->remove)
291                 ret = drv->remove(pcdev);
292         pm_runtime_put_noidle(dev);
293
294         /* Undo the runtime PM settings in amba_probe() */
295         pm_runtime_disable(dev);
296         pm_runtime_set_suspended(dev);
297         pm_runtime_put_noidle(dev);
298
299         amba_put_disable_pclk(pcdev);
300         dev_pm_domain_detach(dev, true);
301
302         return ret;
303 }
304
305 static void amba_shutdown(struct device *dev)
306 {
307         struct amba_driver *drv = to_amba_driver(dev->driver);
308
309         if (drv->shutdown)
310                 drv->shutdown(to_amba_device(dev));
311 }
312
313 /**
314  *      amba_driver_register - register an AMBA device driver
315  *      @drv: amba device driver structure
316  *
317  *      Register an AMBA device driver with the Linux device model
318  *      core.  If devices pre-exist, the drivers probe function will
319  *      be called.
320  */
321 int amba_driver_register(struct amba_driver *drv)
322 {
323         if (!drv->probe)
324                 return -EINVAL;
325
326         drv->drv.bus = &amba_bustype;
327         drv->drv.probe = amba_probe;
328         drv->drv.remove = amba_remove;
329         drv->drv.shutdown = amba_shutdown;
330
331         return driver_register(&drv->drv);
332 }
333
334 /**
335  *      amba_driver_unregister - remove an AMBA device driver
336  *      @drv: AMBA device driver structure to remove
337  *
338  *      Unregister an AMBA device driver from the Linux device
339  *      model.  The device model will call the drivers remove function
340  *      for each device the device driver is currently handling.
341  */
342 void amba_driver_unregister(struct amba_driver *drv)
343 {
344         driver_unregister(&drv->drv);
345 }
346
347
348 static void amba_device_release(struct device *dev)
349 {
350         struct amba_device *d = to_amba_device(dev);
351
352         if (d->res.parent)
353                 release_resource(&d->res);
354         kfree(d);
355 }
356
357 static int amba_device_try_add(struct amba_device *dev, struct resource *parent)
358 {
359         u32 size;
360         void __iomem *tmp;
361         int i, ret;
362
363         ret = request_resource(parent, &dev->res);
364         if (ret)
365                 goto err_out;
366
367         /* Hard-coded primecell ID instead of plug-n-play */
368         if (dev->periphid != 0)
369                 goto skip_probe;
370
371         /*
372          * Dynamically calculate the size of the resource
373          * and use this for iomap
374          */
375         size = resource_size(&dev->res);
376         tmp = ioremap(dev->res.start, size);
377         if (!tmp) {
378                 ret = -ENOMEM;
379                 goto err_release;
380         }
381
382         ret = dev_pm_domain_attach(&dev->dev, true);
383         if (ret) {
384                 iounmap(tmp);
385                 goto err_release;
386         }
387
388         ret = amba_get_enable_pclk(dev);
389         if (ret == 0) {
390                 u32 pid, cid;
391
392                 /*
393                  * Read pid and cid based on size of resource
394                  * they are located at end of region
395                  */
396                 for (pid = 0, i = 0; i < 4; i++)
397                         pid |= (readl(tmp + size - 0x20 + 4 * i) & 255) <<
398                                 (i * 8);
399                 for (cid = 0, i = 0; i < 4; i++)
400                         cid |= (readl(tmp + size - 0x10 + 4 * i) & 255) <<
401                                 (i * 8);
402
403                 amba_put_disable_pclk(dev);
404
405                 if (cid == AMBA_CID || cid == CORESIGHT_CID)
406                         dev->periphid = pid;
407
408                 if (!dev->periphid)
409                         ret = -ENODEV;
410         }
411
412         iounmap(tmp);
413         dev_pm_domain_detach(&dev->dev, true);
414
415         if (ret)
416                 goto err_release;
417
418  skip_probe:
419         ret = device_add(&dev->dev);
420         if (ret)
421                 goto err_release;
422
423         if (dev->irq[0])
424                 ret = device_create_file(&dev->dev, &dev_attr_irq0);
425         if (ret == 0 && dev->irq[1])
426                 ret = device_create_file(&dev->dev, &dev_attr_irq1);
427         if (ret == 0)
428                 return ret;
429
430         device_unregister(&dev->dev);
431
432  err_release:
433         release_resource(&dev->res);
434  err_out:
435         return ret;
436 }
437
438 /*
439  * Registration of AMBA device require reading its pid and cid registers.
440  * To do this, the device must be turned on (if it is a part of power domain)
441  * and have clocks enabled. However in some cases those resources might not be
442  * yet available. Returning EPROBE_DEFER is not a solution in such case,
443  * because callers don't handle this special error code. Instead such devices
444  * are added to the special list and their registration is retried from
445  * periodic worker, until all resources are available and registration succeeds.
446  */
447 struct deferred_device {
448         struct amba_device *dev;
449         struct resource *parent;
450         struct list_head node;
451 };
452
453 static LIST_HEAD(deferred_devices);
454 static DEFINE_MUTEX(deferred_devices_lock);
455
456 static void amba_deferred_retry_func(struct work_struct *dummy);
457 static DECLARE_DELAYED_WORK(deferred_retry_work, amba_deferred_retry_func);
458
459 #define DEFERRED_DEVICE_TIMEOUT (msecs_to_jiffies(5 * 1000))
460
461 static void amba_deferred_retry_func(struct work_struct *dummy)
462 {
463         struct deferred_device *ddev, *tmp;
464
465         mutex_lock(&deferred_devices_lock);
466
467         list_for_each_entry_safe(ddev, tmp, &deferred_devices, node) {
468                 int ret = amba_device_try_add(ddev->dev, ddev->parent);
469
470                 if (ret == -EPROBE_DEFER)
471                         continue;
472
473                 list_del_init(&ddev->node);
474                 kfree(ddev);
475         }
476
477         if (!list_empty(&deferred_devices))
478                 schedule_delayed_work(&deferred_retry_work,
479                                       DEFERRED_DEVICE_TIMEOUT);
480
481         mutex_unlock(&deferred_devices_lock);
482 }
483
484 /**
485  *      amba_device_add - add a previously allocated AMBA device structure
486  *      @dev: AMBA device allocated by amba_device_alloc
487  *      @parent: resource parent for this devices resources
488  *
489  *      Claim the resource, and read the device cell ID if not already
490  *      initialized.  Register the AMBA device with the Linux device
491  *      manager.
492  */
493 int amba_device_add(struct amba_device *dev, struct resource *parent)
494 {
495         int ret = amba_device_try_add(dev, parent);
496
497         if (ret == -EPROBE_DEFER) {
498                 struct deferred_device *ddev;
499
500                 ddev = kmalloc(sizeof(*ddev), GFP_KERNEL);
501                 if (!ddev)
502                         return -ENOMEM;
503
504                 ddev->dev = dev;
505                 ddev->parent = parent;
506                 ret = 0;
507
508                 mutex_lock(&deferred_devices_lock);
509
510                 if (list_empty(&deferred_devices))
511                         schedule_delayed_work(&deferred_retry_work,
512                                               DEFERRED_DEVICE_TIMEOUT);
513                 list_add_tail(&ddev->node, &deferred_devices);
514
515                 mutex_unlock(&deferred_devices_lock);
516         }
517         return ret;
518 }
519 EXPORT_SYMBOL_GPL(amba_device_add);
520
521 static struct amba_device *
522 amba_aphb_device_add(struct device *parent, const char *name,
523                      resource_size_t base, size_t size, int irq1, int irq2,
524                      void *pdata, unsigned int periphid, u64 dma_mask,
525                      struct resource *resbase)
526 {
527         struct amba_device *dev;
528         int ret;
529
530         dev = amba_device_alloc(name, base, size);
531         if (!dev)
532                 return ERR_PTR(-ENOMEM);
533
534         dev->dev.coherent_dma_mask = dma_mask;
535         dev->irq[0] = irq1;
536         dev->irq[1] = irq2;
537         dev->periphid = periphid;
538         dev->dev.platform_data = pdata;
539         dev->dev.parent = parent;
540
541         ret = amba_device_add(dev, resbase);
542         if (ret) {
543                 amba_device_put(dev);
544                 return ERR_PTR(ret);
545         }
546
547         return dev;
548 }
549
550 struct amba_device *
551 amba_apb_device_add(struct device *parent, const char *name,
552                     resource_size_t base, size_t size, int irq1, int irq2,
553                     void *pdata, unsigned int periphid)
554 {
555         return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
556                                     periphid, 0, &iomem_resource);
557 }
558 EXPORT_SYMBOL_GPL(amba_apb_device_add);
559
560 struct amba_device *
561 amba_ahb_device_add(struct device *parent, const char *name,
562                     resource_size_t base, size_t size, int irq1, int irq2,
563                     void *pdata, unsigned int periphid)
564 {
565         return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
566                                     periphid, ~0ULL, &iomem_resource);
567 }
568 EXPORT_SYMBOL_GPL(amba_ahb_device_add);
569
570 struct amba_device *
571 amba_apb_device_add_res(struct device *parent, const char *name,
572                         resource_size_t base, size_t size, int irq1,
573                         int irq2, void *pdata, unsigned int periphid,
574                         struct resource *resbase)
575 {
576         return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
577                                     periphid, 0, resbase);
578 }
579 EXPORT_SYMBOL_GPL(amba_apb_device_add_res);
580
581 struct amba_device *
582 amba_ahb_device_add_res(struct device *parent, const char *name,
583                         resource_size_t base, size_t size, int irq1,
584                         int irq2, void *pdata, unsigned int periphid,
585                         struct resource *resbase)
586 {
587         return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
588                                     periphid, ~0ULL, resbase);
589 }
590 EXPORT_SYMBOL_GPL(amba_ahb_device_add_res);
591
592
593 static void amba_device_initialize(struct amba_device *dev, const char *name)
594 {
595         device_initialize(&dev->dev);
596         if (name)
597                 dev_set_name(&dev->dev, "%s", name);
598         dev->dev.release = amba_device_release;
599         dev->dev.bus = &amba_bustype;
600         dev->dev.dma_mask = &dev->dev.coherent_dma_mask;
601         dev->res.name = dev_name(&dev->dev);
602 }
603
604 /**
605  *      amba_device_alloc - allocate an AMBA device
606  *      @name: sysfs name of the AMBA device
607  *      @base: base of AMBA device
608  *      @size: size of AMBA device
609  *
610  *      Allocate and initialize an AMBA device structure.  Returns %NULL
611  *      on failure.
612  */
613 struct amba_device *amba_device_alloc(const char *name, resource_size_t base,
614         size_t size)
615 {
616         struct amba_device *dev;
617
618         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
619         if (dev) {
620                 amba_device_initialize(dev, name);
621                 dev->res.start = base;
622                 dev->res.end = base + size - 1;
623                 dev->res.flags = IORESOURCE_MEM;
624         }
625
626         return dev;
627 }
628 EXPORT_SYMBOL_GPL(amba_device_alloc);
629
630 /**
631  *      amba_device_register - register an AMBA device
632  *      @dev: AMBA device to register
633  *      @parent: parent memory resource
634  *
635  *      Setup the AMBA device, reading the cell ID if present.
636  *      Claim the resource, and register the AMBA device with
637  *      the Linux device manager.
638  */
639 int amba_device_register(struct amba_device *dev, struct resource *parent)
640 {
641         amba_device_initialize(dev, dev->dev.init_name);
642         dev->dev.init_name = NULL;
643
644         return amba_device_add(dev, parent);
645 }
646
647 /**
648  *      amba_device_put - put an AMBA device
649  *      @dev: AMBA device to put
650  */
651 void amba_device_put(struct amba_device *dev)
652 {
653         put_device(&dev->dev);
654 }
655 EXPORT_SYMBOL_GPL(amba_device_put);
656
657 /**
658  *      amba_device_unregister - unregister an AMBA device
659  *      @dev: AMBA device to remove
660  *
661  *      Remove the specified AMBA device from the Linux device
662  *      manager.  All files associated with this object will be
663  *      destroyed, and device drivers notified that the device has
664  *      been removed.  The AMBA device's resources including
665  *      the amba_device structure will be freed once all
666  *      references to it have been dropped.
667  */
668 void amba_device_unregister(struct amba_device *dev)
669 {
670         device_unregister(&dev->dev);
671 }
672
673
674 struct find_data {
675         struct amba_device *dev;
676         struct device *parent;
677         const char *busid;
678         unsigned int id;
679         unsigned int mask;
680 };
681
682 static int amba_find_match(struct device *dev, void *data)
683 {
684         struct find_data *d = data;
685         struct amba_device *pcdev = to_amba_device(dev);
686         int r;
687
688         r = (pcdev->periphid & d->mask) == d->id;
689         if (d->parent)
690                 r &= d->parent == dev->parent;
691         if (d->busid)
692                 r &= strcmp(dev_name(dev), d->busid) == 0;
693
694         if (r) {
695                 get_device(dev);
696                 d->dev = pcdev;
697         }
698
699         return r;
700 }
701
702 /**
703  *      amba_find_device - locate an AMBA device given a bus id
704  *      @busid: bus id for device (or NULL)
705  *      @parent: parent device (or NULL)
706  *      @id: peripheral ID (or 0)
707  *      @mask: peripheral ID mask (or 0)
708  *
709  *      Return the AMBA device corresponding to the supplied parameters.
710  *      If no device matches, returns NULL.
711  *
712  *      NOTE: When a valid device is found, its refcount is
713  *      incremented, and must be decremented before the returned
714  *      reference.
715  */
716 struct amba_device *
717 amba_find_device(const char *busid, struct device *parent, unsigned int id,
718                  unsigned int mask)
719 {
720         struct find_data data;
721
722         data.dev = NULL;
723         data.parent = parent;
724         data.busid = busid;
725         data.id = id;
726         data.mask = mask;
727
728         bus_for_each_dev(&amba_bustype, NULL, &data, amba_find_match);
729
730         return data.dev;
731 }
732
733 /**
734  *      amba_request_regions - request all mem regions associated with device
735  *      @dev: amba_device structure for device
736  *      @name: name, or NULL to use driver name
737  */
738 int amba_request_regions(struct amba_device *dev, const char *name)
739 {
740         int ret = 0;
741         u32 size;
742
743         if (!name)
744                 name = dev->dev.driver->name;
745
746         size = resource_size(&dev->res);
747
748         if (!request_mem_region(dev->res.start, size, name))
749                 ret = -EBUSY;
750
751         return ret;
752 }
753
754 /**
755  *      amba_release_regions - release mem regions associated with device
756  *      @dev: amba_device structure for device
757  *
758  *      Release regions claimed by a successful call to amba_request_regions.
759  */
760 void amba_release_regions(struct amba_device *dev)
761 {
762         u32 size;
763
764         size = resource_size(&dev->res);
765         release_mem_region(dev->res.start, size);
766 }
767
768 EXPORT_SYMBOL(amba_driver_register);
769 EXPORT_SYMBOL(amba_driver_unregister);
770 EXPORT_SYMBOL(amba_device_register);
771 EXPORT_SYMBOL(amba_device_unregister);
772 EXPORT_SYMBOL(amba_find_device);
773 EXPORT_SYMBOL(amba_request_regions);
774 EXPORT_SYMBOL(amba_release_regions);