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