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