ARM: amba: Fix race condition with driver_override
[linux-block.git] / drivers / amba / bus.c
CommitLineData
1da177e4
LT
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>
4e57b681
TS
13#include <linux/string.h>
14#include <linux/slab.h>
934848da 15#include <linux/io.h>
ba74ec7f
RV
16#include <linux/pm.h>
17#include <linux/pm_runtime.h>
f48c767c 18#include <linux/pm_domain.h>
a62c80e5 19#include <linux/amba/bus.h>
a875cfbb 20#include <linux/sizes.h>
3cf38571 21#include <linux/limits.h>
bcd3006f 22#include <linux/clk/clk-conf.h>
1da177e4 23
934848da 24#include <asm/irq.h>
1da177e4 25
1da177e4
LT
26#define to_amba_driver(d) container_of(d, struct amba_driver, drv)
27
c862aab0
RK
28static const struct amba_id *
29amba_lookup(const struct amba_id *table, struct amba_device *dev)
1da177e4
LT
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
43static 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
3cf38571
AM
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
1da177e4
LT
52 return amba_lookup(pcdrv->id_table, pcdev) != NULL;
53}
54
7eff2e7a 55static int amba_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4
LT
56{
57 struct amba_device *pcdev = to_amba_device(dev);
7eff2e7a 58 int retval = 0;
1da177e4 59
7eff2e7a 60 retval = add_uevent_var(env, "AMBA_ID=%08x", pcdev->periphid);
523817bd
DM
61 if (retval)
62 return retval;
63
64 retval = add_uevent_var(env, "MODALIAS=amba:d%08X", pcdev->periphid);
bf62456e 65 return retval;
1da177e4 66}
1da177e4 67
3cf38571
AM
68static 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);
6b614a87 72 ssize_t len;
3cf38571
AM
73
74 if (!dev->driver_override)
75 return 0;
76
6b614a87
GU
77 device_lock(_dev);
78 len = sprintf(buf, "%s\n", dev->driver_override);
79 device_unlock(_dev);
80 return len;
3cf38571
AM
81}
82
83static 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);
6b614a87 88 char *driver_override, *old, *cp;
3cf38571
AM
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
6b614a87
GU
101 device_lock(_dev);
102 old = dev->driver_override;
3cf38571
AM
103 if (strlen(driver_override)) {
104 dev->driver_override = driver_override;
105 } else {
106 kfree(driver_override);
107 dev->driver_override = NULL;
108 }
6b614a87 109 device_unlock(_dev);
3cf38571
AM
110
111 kfree(old);
112
113 return count;
114}
966449a3 115static DEVICE_ATTR_RW(driver_override);
3cf38571 116
96b13f5c
RK
117#define amba_attr_func(name,fmt,arg...) \
118static 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); \
966449a3
GKH
123} \
124static DEVICE_ATTR_RO(name)
96b13f5c
RK
125
126amba_attr_func(id, "%08x\n", dev->periphid);
966449a3
GKH
127amba_attr_func(irq0, "%u\n", dev->irq[0]);
128amba_attr_func(irq1, "%u\n", dev->irq[1]);
96b13f5c
RK
129amba_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
966449a3
GKH
133static struct attribute *amba_dev_attrs[] = {
134 &dev_attr_id.attr,
135 &dev_attr_resource.attr,
136 &dev_attr_driver_override.attr,
137 NULL,
96b13f5c 138};
966449a3 139ATTRIBUTE_GROUPS(amba_dev);
96b13f5c 140
f210c53a 141#ifdef CONFIG_PM
92b97f0a
RK
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
1e45860f 145 * does not result in loss of context.
92b97f0a
RK
146 */
147static 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
5670c2a5
KK
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 }
92b97f0a
RK
158
159 return ret;
160}
161
162static 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) {
5670c2a5
KK
168 if (pm_runtime_is_irq_safe(dev))
169 ret = clk_enable(pcdev->pclk);
170 else
171 ret = clk_prepare_enable(pcdev->pclk);
92b97f0a
RK
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}
5670c2a5 179#endif /* CONFIG_PM */
92b97f0a 180
ba74ec7f 181static const struct dev_pm_ops amba_pm = {
26825cfd
UH
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,
6ed23b80 188 SET_RUNTIME_PM_OPS(
92b97f0a
RK
189 amba_pm_runtime_suspend,
190 amba_pm_runtime_resume,
45f0a85c 191 NULL
ba74ec7f
RV
192 )
193};
194
1da177e4
LT
195/*
196 * Primecells are part of the Advanced Microcontroller Bus Architecture,
197 * so we call the bus "amba".
198 */
394d5aef 199struct bus_type amba_bustype = {
1da177e4 200 .name = "amba",
966449a3 201 .dev_groups = amba_dev_groups,
1da177e4 202 .match = amba_match,
6d20b035 203 .uevent = amba_uevent,
26825cfd 204 .pm = &amba_pm,
d89e2378 205 .force_dma = true,
1da177e4
LT
206};
207
208static int __init amba_init(void)
209{
210 return bus_register(&amba_bustype);
211}
212
213postcore_initcall(amba_init);
214
7cfe2494
RK
215static int amba_get_enable_pclk(struct amba_device *pcdev)
216{
7cfe2494
RK
217 int ret;
218
89a5c985
UH
219 pcdev->pclk = clk_get(&pcdev->dev, "apb_pclk");
220 if (IS_ERR(pcdev->pclk))
221 return PTR_ERR(pcdev->pclk);
7cfe2494 222
89a5c985
UH
223 ret = clk_prepare_enable(pcdev->pclk);
224 if (ret)
225 clk_put(pcdev->pclk);
7cfe2494
RK
226
227 return ret;
228}
229
230static void amba_put_disable_pclk(struct amba_device *pcdev)
231{
89a5c985
UH
232 clk_disable_unprepare(pcdev->pclk);
233 clk_put(pcdev->pclk);
7cfe2494
RK
234}
235
1da177e4
LT
236/*
237 * These are the device model conversion veneers; they convert the
238 * device model structures to our more specific structures.
239 */
240static 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);
c862aab0 244 const struct amba_id *id = amba_lookup(pcdrv->id_table, pcdev);
7cfe2494 245 int ret;
1da177e4 246
7cfe2494 247 do {
bcd3006f
SB
248 ret = of_clk_set_defaults(dev->of_node, false);
249 if (ret < 0)
250 break;
251
207f1a2d
UH
252 ret = dev_pm_domain_attach(dev, true);
253 if (ret == -EPROBE_DEFER)
254 break;
255
7cfe2494 256 ret = amba_get_enable_pclk(pcdev);
207f1a2d
UH
257 if (ret) {
258 dev_pm_domain_detach(dev, true);
7cfe2494 259 break;
207f1a2d 260 }
7cfe2494 261
92b97f0a
RK
262 pm_runtime_get_noresume(dev);
263 pm_runtime_set_active(dev);
264 pm_runtime_enable(dev);
265
7cfe2494
RK
266 ret = pcdrv->probe(pcdev, id);
267 if (ret == 0)
268 break;
1da177e4 269
92b97f0a
RK
270 pm_runtime_disable(dev);
271 pm_runtime_set_suspended(dev);
272 pm_runtime_put_noidle(dev);
273
7cfe2494 274 amba_put_disable_pclk(pcdev);
207f1a2d 275 dev_pm_domain_detach(dev, true);
7cfe2494
RK
276 } while (0);
277
278 return ret;
1da177e4
LT
279}
280
281static int amba_remove(struct device *dev)
282{
7cfe2494 283 struct amba_device *pcdev = to_amba_device(dev);
1da177e4 284 struct amba_driver *drv = to_amba_driver(dev->driver);
92b97f0a
RK
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);
7cfe2494
RK
295
296 amba_put_disable_pclk(pcdev);
207f1a2d 297 dev_pm_domain_detach(dev, true);
7cfe2494
RK
298
299 return ret;
1da177e4
LT
300}
301
302static 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 */
316int 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 */
336void amba_driver_unregister(struct amba_driver *drv)
337{
338 driver_unregister(&drv->drv);
339}
340
341
342static 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
a41980f2 351static int amba_device_try_add(struct amba_device *dev, struct resource *parent)
1da177e4 352{
8afe0b96 353 u32 size;
1da177e4
LT
354 void __iomem *tmp;
355 int i, ret;
356
2eac58d5
RK
357 WARN_ON(dev->irq[0] == (unsigned int)-1);
358 WARN_ON(dev->irq[1] == (unsigned int)-1);
359
1da177e4 360 ret = request_resource(parent, &dev->res);
96b13f5c
RK
361 if (ret)
362 goto err_out;
363
97ceed1f
LW
364 /* Hard-coded primecell ID instead of plug-n-play */
365 if (dev->periphid != 0)
366 goto skip_probe;
367
8afe0b96
LC
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);
96b13f5c
RK
374 if (!tmp) {
375 ret = -ENOMEM;
376 goto err_release;
1da177e4 377 }
96b13f5c 378
a41980f2
MS
379 ret = dev_pm_domain_attach(&dev->dev, true);
380 if (ret == -EPROBE_DEFER) {
381 iounmap(tmp);
382 goto err_release;
383 }
384
7cfe2494
RK
385 ret = amba_get_enable_pclk(dev);
386 if (ret == 0) {
387 u32 pid, cid;
96b13f5c 388
7cfe2494
RK
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);
96b13f5c 399
7cfe2494 400 amba_put_disable_pclk(dev);
96b13f5c 401
a06ae860 402 if (cid == AMBA_CID || cid == CORESIGHT_CID)
7cfe2494
RK
403 dev->periphid = pid;
404
405 if (!dev->periphid)
406 ret = -ENODEV;
96b13f5c
RK
407 }
408
7cfe2494 409 iounmap(tmp);
a41980f2 410 dev_pm_domain_detach(&dev->dev, true);
7cfe2494
RK
411
412 if (ret)
413 goto err_release;
414
97ceed1f 415 skip_probe:
557dca5f 416 ret = device_add(&dev->dev);
96b13f5c
RK
417 if (ret)
418 goto err_release;
419
dfb85185 420 if (dev->irq[0])
96b13f5c 421 ret = device_create_file(&dev->dev, &dev_attr_irq0);
dfb85185 422 if (ret == 0 && dev->irq[1])
96b13f5c
RK
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:
1da177e4
LT
432 return ret;
433}
a41980f2
MS
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 */
444struct deferred_device {
445 struct amba_device *dev;
446 struct resource *parent;
447 struct list_head node;
448};
449
450static LIST_HEAD(deferred_devices);
451static DEFINE_MUTEX(deferred_devices_lock);
452
453static void amba_deferred_retry_func(struct work_struct *dummy);
454static DECLARE_DELAYED_WORK(deferred_retry_work, amba_deferred_retry_func);
455
456#define DEFERRED_DEVICE_TIMEOUT (msecs_to_jiffies(5 * 1000))
457
458static 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 */
490int 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}
d5dc9271
RK
516EXPORT_SYMBOL_GPL(amba_device_add);
517
6026aa90
LW
518static struct amba_device *
519amba_aphb_device_add(struct device *parent, const char *name,
520 resource_size_t base, size_t size, int irq1, int irq2,
3ad909bc
LW
521 void *pdata, unsigned int periphid, u64 dma_mask,
522 struct resource *resbase)
6026aa90
LW
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
6026aa90
LW
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
3ad909bc 538 ret = amba_device_add(dev, resbase);
6026aa90
LW
539 if (ret) {
540 amba_device_put(dev);
541 return ERR_PTR(ret);
542 }
543
544 return dev;
545}
546
547struct amba_device *
548amba_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,
3ad909bc 553 periphid, 0, &iomem_resource);
6026aa90
LW
554}
555EXPORT_SYMBOL_GPL(amba_apb_device_add);
556
557struct amba_device *
558amba_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,
3ad909bc 563 periphid, ~0ULL, &iomem_resource);
6026aa90
LW
564}
565EXPORT_SYMBOL_GPL(amba_ahb_device_add);
566
3ad909bc
LW
567struct amba_device *
568amba_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}
576EXPORT_SYMBOL_GPL(amba_apb_device_add_res);
577
578struct amba_device *
579amba_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}
587EXPORT_SYMBOL_GPL(amba_ahb_device_add_res);
588
589
d5dc9271
RK
590static 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;
446b2a93 597 dev->dev.dma_mask = &dev->dev.coherent_dma_mask;
d5dc9271
RK
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 */
610struct 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}
625EXPORT_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 */
636int 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
d5dc9271
RK
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 */
648void amba_device_put(struct amba_device *dev)
649{
650 put_device(&dev->dev);
651}
652EXPORT_SYMBOL_GPL(amba_device_put);
1da177e4
LT
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 */
665void amba_device_unregister(struct amba_device *dev)
666{
667 device_unregister(&dev->dev);
668}
669
670
671struct 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
679static 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)
9d6b4c82 689 r &= strcmp(dev_name(dev), d->busid) == 0;
1da177e4
LT
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 */
713struct amba_device *
714amba_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 */
735int amba_request_regions(struct amba_device *dev, const char *name)
736{
737 int ret = 0;
8afe0b96 738 u32 size;
1da177e4
LT
739
740 if (!name)
741 name = dev->dev.driver->name;
742
8afe0b96
LC
743 size = resource_size(&dev->res);
744
745 if (!request_mem_region(dev->res.start, size, name))
1da177e4
LT
746 ret = -EBUSY;
747
748 return ret;
749}
750
751/**
25985edc 752 * amba_release_regions - release mem regions associated with device
1da177e4
LT
753 * @dev: amba_device structure for device
754 *
755 * Release regions claimed by a successful call to amba_request_regions.
756 */
757void amba_release_regions(struct amba_device *dev)
758{
8afe0b96
LC
759 u32 size;
760
761 size = resource_size(&dev->res);
762 release_mem_region(dev->res.start, size);
1da177e4
LT
763}
764
765EXPORT_SYMBOL(amba_driver_register);
766EXPORT_SYMBOL(amba_driver_unregister);
767EXPORT_SYMBOL(amba_device_register);
768EXPORT_SYMBOL(amba_device_unregister);
769EXPORT_SYMBOL(amba_find_device);
770EXPORT_SYMBOL(amba_request_regions);
771EXPORT_SYMBOL(amba_release_regions);