blob: 47bbdc1b5be327ddf913f920d8b78cfc4f253a0c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Tim Schmielau4e57b682005-10-30 15:03:48 -080013#include <linux/string.h>
14#include <linux/slab.h>
Russell King934848d2009-01-08 09:58:51 +000015#include <linux/io.h>
Rabin Vincentba74ec72011-02-23 04:33:17 +010016#include <linux/pm.h>
17#include <linux/pm_runtime.h>
Ulf Hanssonf48c7672014-09-29 13:58:47 +020018#include <linux/pm_domain.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000019#include <linux/amba/bus.h>
Alessandro Rubinia875cfb2012-06-24 12:46:16 +010020#include <linux/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Russell King934848d2009-01-08 09:58:51 +000022#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define to_amba_driver(d) container_of(d, struct amba_driver, drv)
25
Russell Kingc862aab2011-02-19 15:55:26 +000026static const struct amba_id *
27amba_lookup(const struct amba_id *table, struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29 int ret = 0;
30
31 while (table->mask) {
32 ret = (dev->periphid & table->mask) == table->id;
33 if (ret)
34 break;
35 table++;
36 }
37
38 return ret ? table : NULL;
39}
40
41static int amba_match(struct device *dev, struct device_driver *drv)
42{
43 struct amba_device *pcdev = to_amba_device(dev);
44 struct amba_driver *pcdrv = to_amba_driver(drv);
45
46 return amba_lookup(pcdrv->id_table, pcdev) != NULL;
47}
48
Kay Sievers7eff2e72007-08-14 15:15:12 +020049static int amba_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 struct amba_device *pcdev = to_amba_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +020052 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Kay Sievers7eff2e72007-08-14 15:15:12 +020054 retval = add_uevent_var(env, "AMBA_ID=%08x", pcdev->periphid);
Dave Martin523817b2011-10-05 14:44:57 +010055 if (retval)
56 return retval;
57
58 retval = add_uevent_var(env, "MODALIAS=amba:d%08X", pcdev->periphid);
Eric Rannaudbf624562007-03-30 22:23:12 -070059 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Russell King96b13f52006-11-30 14:04:49 +000062#define amba_attr_func(name,fmt,arg...) \
63static ssize_t name##_show(struct device *_dev, \
64 struct device_attribute *attr, char *buf) \
65{ \
66 struct amba_device *dev = to_amba_device(_dev); \
67 return sprintf(buf, fmt, arg); \
68}
69
70#define amba_attr(name,fmt,arg...) \
71amba_attr_func(name,fmt,arg) \
72static DEVICE_ATTR(name, S_IRUGO, name##_show, NULL)
73
74amba_attr_func(id, "%08x\n", dev->periphid);
75amba_attr(irq0, "%u\n", dev->irq[0]);
76amba_attr(irq1, "%u\n", dev->irq[1]);
77amba_attr_func(resource, "\t%016llx\t%016llx\t%016lx\n",
78 (unsigned long long)dev->res.start, (unsigned long long)dev->res.end,
79 dev->res.flags);
80
81static struct device_attribute amba_dev_attrs[] = {
82 __ATTR_RO(id),
83 __ATTR_RO(resource),
84 __ATTR_NULL,
85};
86
Ulf Hanssonf210c532014-02-12 14:06:43 +010087#ifdef CONFIG_PM
Russell King92b97f02011-08-14 09:13:48 +010088/*
89 * Hooks to provide runtime PM of the pclk (bus clock). It is safe to
90 * enable/disable the bus clock at runtime PM suspend/resume as this
Mark Brown1e458602012-04-13 13:11:50 +010091 * does not result in loss of context.
Russell King92b97f02011-08-14 09:13:48 +010092 */
93static int amba_pm_runtime_suspend(struct device *dev)
94{
95 struct amba_device *pcdev = to_amba_device(dev);
96 int ret = pm_generic_runtime_suspend(dev);
97
98 if (ret == 0 && dev->driver)
Ulf Hansson5303c0f2013-12-09 10:40:22 +010099 clk_disable_unprepare(pcdev->pclk);
Russell King92b97f02011-08-14 09:13:48 +0100100
101 return ret;
102}
103
104static int amba_pm_runtime_resume(struct device *dev)
105{
106 struct amba_device *pcdev = to_amba_device(dev);
107 int ret;
108
109 if (dev->driver) {
Ulf Hansson5303c0f2013-12-09 10:40:22 +0100110 ret = clk_prepare_enable(pcdev->pclk);
Russell King92b97f02011-08-14 09:13:48 +0100111 /* Failure is probably fatal to the system, but... */
112 if (ret)
113 return ret;
114 }
115
116 return pm_generic_runtime_resume(dev);
117}
118#endif
119
Rabin Vincentba74ec72011-02-23 04:33:17 +0100120static const struct dev_pm_ops amba_pm = {
Ulf Hansson26825cf2013-12-09 10:38:20 +0100121 .suspend = pm_generic_suspend,
122 .resume = pm_generic_resume,
123 .freeze = pm_generic_freeze,
124 .thaw = pm_generic_thaw,
125 .poweroff = pm_generic_poweroff,
126 .restore = pm_generic_restore,
Ulf Hanssonf210c532014-02-12 14:06:43 +0100127 SET_PM_RUNTIME_PM_OPS(
Russell King92b97f02011-08-14 09:13:48 +0100128 amba_pm_runtime_suspend,
129 amba_pm_runtime_resume,
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +0200130 NULL
Rabin Vincentba74ec72011-02-23 04:33:17 +0100131 )
132};
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/*
135 * Primecells are part of the Advanced Microcontroller Bus Architecture,
136 * so we call the bus "amba".
137 */
Rob Herring394d5ae2011-02-12 15:58:25 +0100138struct bus_type amba_bustype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .name = "amba",
Russell King96b13f52006-11-30 14:04:49 +0000140 .dev_attrs = amba_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .match = amba_match,
Paul Jackson6d20b032005-11-25 20:04:26 -0800142 .uevent = amba_uevent,
Ulf Hansson26825cf2013-12-09 10:38:20 +0100143 .pm = &amba_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146static int __init amba_init(void)
147{
148 return bus_register(&amba_bustype);
149}
150
151postcore_initcall(amba_init);
152
Russell King7cfe2492010-07-15 10:47:14 +0100153static int amba_get_enable_pclk(struct amba_device *pcdev)
154{
Russell King7cfe2492010-07-15 10:47:14 +0100155 int ret;
156
Ulf Hansson89a5c982013-12-09 10:39:13 +0100157 pcdev->pclk = clk_get(&pcdev->dev, "apb_pclk");
158 if (IS_ERR(pcdev->pclk))
159 return PTR_ERR(pcdev->pclk);
Russell King7cfe2492010-07-15 10:47:14 +0100160
Ulf Hansson89a5c982013-12-09 10:39:13 +0100161 ret = clk_prepare_enable(pcdev->pclk);
162 if (ret)
163 clk_put(pcdev->pclk);
Russell King7cfe2492010-07-15 10:47:14 +0100164
165 return ret;
166}
167
168static void amba_put_disable_pclk(struct amba_device *pcdev)
169{
Ulf Hansson89a5c982013-12-09 10:39:13 +0100170 clk_disable_unprepare(pcdev->pclk);
171 clk_put(pcdev->pclk);
Russell King7cfe2492010-07-15 10:47:14 +0100172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
175 * These are the device model conversion veneers; they convert the
176 * device model structures to our more specific structures.
177 */
178static int amba_probe(struct device *dev)
179{
180 struct amba_device *pcdev = to_amba_device(dev);
181 struct amba_driver *pcdrv = to_amba_driver(dev->driver);
Russell Kingc862aab2011-02-19 15:55:26 +0000182 const struct amba_id *id = amba_lookup(pcdrv->id_table, pcdev);
Russell King7cfe2492010-07-15 10:47:14 +0100183 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Russell King7cfe2492010-07-15 10:47:14 +0100185 do {
Ulf Hansson207f1a22014-09-19 20:27:42 +0200186 ret = dev_pm_domain_attach(dev, true);
187 if (ret == -EPROBE_DEFER)
Russell King7cfe2492010-07-15 10:47:14 +0100188 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Ulf Hansson207f1a22014-09-19 20:27:42 +0200190 ret = amba_get_enable_pclk(pcdev);
191 if (ret) {
192 dev_pm_domain_detach(dev, true);
193 break;
194 }
195
Russell King92b97f02011-08-14 09:13:48 +0100196 pm_runtime_get_noresume(dev);
197 pm_runtime_set_active(dev);
198 pm_runtime_enable(dev);
199
Russell King7cfe2492010-07-15 10:47:14 +0100200 ret = pcdrv->probe(pcdev, id);
201 if (ret == 0)
202 break;
203
Russell King92b97f02011-08-14 09:13:48 +0100204 pm_runtime_disable(dev);
205 pm_runtime_set_suspended(dev);
206 pm_runtime_put_noidle(dev);
207
Russell King7cfe2492010-07-15 10:47:14 +0100208 amba_put_disable_pclk(pcdev);
Ulf Hansson207f1a22014-09-19 20:27:42 +0200209 dev_pm_domain_detach(dev, true);
Russell King7cfe2492010-07-15 10:47:14 +0100210 } while (0);
211
212 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215static int amba_remove(struct device *dev)
216{
Russell King7cfe2492010-07-15 10:47:14 +0100217 struct amba_device *pcdev = to_amba_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 struct amba_driver *drv = to_amba_driver(dev->driver);
Russell King92b97f02011-08-14 09:13:48 +0100219 int ret;
220
221 pm_runtime_get_sync(dev);
222 ret = drv->remove(pcdev);
223 pm_runtime_put_noidle(dev);
224
225 /* Undo the runtime PM settings in amba_probe() */
226 pm_runtime_disable(dev);
227 pm_runtime_set_suspended(dev);
228 pm_runtime_put_noidle(dev);
Russell King7cfe2492010-07-15 10:47:14 +0100229
230 amba_put_disable_pclk(pcdev);
Ulf Hansson207f1a22014-09-19 20:27:42 +0200231 dev_pm_domain_detach(dev, true);
Russell King7cfe2492010-07-15 10:47:14 +0100232
233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236static void amba_shutdown(struct device *dev)
237{
238 struct amba_driver *drv = to_amba_driver(dev->driver);
239 drv->shutdown(to_amba_device(dev));
240}
241
242/**
243 * amba_driver_register - register an AMBA device driver
244 * @drv: amba device driver structure
245 *
246 * Register an AMBA device driver with the Linux device model
247 * core. If devices pre-exist, the drivers probe function will
248 * be called.
249 */
250int amba_driver_register(struct amba_driver *drv)
251{
252 drv->drv.bus = &amba_bustype;
253
254#define SETFN(fn) if (drv->fn) drv->drv.fn = amba_##fn
255 SETFN(probe);
256 SETFN(remove);
257 SETFN(shutdown);
258
259 return driver_register(&drv->drv);
260}
261
262/**
263 * amba_driver_unregister - remove an AMBA device driver
264 * @drv: AMBA device driver structure to remove
265 *
266 * Unregister an AMBA device driver from the Linux device
267 * model. The device model will call the drivers remove function
268 * for each device the device driver is currently handling.
269 */
270void amba_driver_unregister(struct amba_driver *drv)
271{
272 driver_unregister(&drv->drv);
273}
274
275
276static void amba_device_release(struct device *dev)
277{
278 struct amba_device *d = to_amba_device(dev);
279
280 if (d->res.parent)
281 release_resource(&d->res);
282 kfree(d);
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285/**
Russell Kingd5dc9272011-12-18 11:07:47 +0000286 * amba_device_add - add a previously allocated AMBA device structure
287 * @dev: AMBA device allocated by amba_device_alloc
288 * @parent: resource parent for this devices resources
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *
Russell Kingd5dc9272011-12-18 11:07:47 +0000290 * Claim the resource, and read the device cell ID if not already
291 * initialized. Register the AMBA device with the Linux device
292 * manager.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 */
Russell Kingd5dc9272011-12-18 11:07:47 +0000294int amba_device_add(struct amba_device *dev, struct resource *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Leo Chen8afe0b92009-07-28 23:34:59 +0100296 u32 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 void __iomem *tmp;
298 int i, ret;
299
Russell King2eac58d2011-12-18 11:43:56 +0000300 WARN_ON(dev->irq[0] == (unsigned int)-1);
301 WARN_ON(dev->irq[1] == (unsigned int)-1);
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 ret = request_resource(parent, &dev->res);
Russell King96b13f52006-11-30 14:04:49 +0000304 if (ret)
305 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Linus Walleij97ceed12011-03-24 16:12:40 +0100307 /* Hard-coded primecell ID instead of plug-n-play */
308 if (dev->periphid != 0)
309 goto skip_probe;
310
Leo Chen8afe0b92009-07-28 23:34:59 +0100311 /*
312 * Dynamically calculate the size of the resource
313 * and use this for iomap
314 */
315 size = resource_size(&dev->res);
316 tmp = ioremap(dev->res.start, size);
Russell King96b13f52006-11-30 14:04:49 +0000317 if (!tmp) {
318 ret = -ENOMEM;
319 goto err_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
Russell King96b13f52006-11-30 14:04:49 +0000321
Russell King7cfe2492010-07-15 10:47:14 +0100322 ret = amba_get_enable_pclk(dev);
323 if (ret == 0) {
324 u32 pid, cid;
325
326 /*
327 * Read pid and cid based on size of resource
328 * they are located at end of region
329 */
330 for (pid = 0, i = 0; i < 4; i++)
331 pid |= (readl(tmp + size - 0x20 + 4 * i) & 255) <<
332 (i * 8);
333 for (cid = 0, i = 0; i < 4; i++)
334 cid |= (readl(tmp + size - 0x10 + 4 * i) & 255) <<
335 (i * 8);
336
337 amba_put_disable_pclk(dev);
338
Linus Walleij01723a92010-09-07 22:43:19 +0100339 if (cid == AMBA_CID)
Russell King7cfe2492010-07-15 10:47:14 +0100340 dev->periphid = pid;
341
342 if (!dev->periphid)
343 ret = -ENODEV;
344 }
Russell King96b13f52006-11-30 14:04:49 +0000345
346 iounmap(tmp);
347
Russell King7cfe2492010-07-15 10:47:14 +0100348 if (ret)
Russell King96b13f52006-11-30 14:04:49 +0000349 goto err_release;
Russell King96b13f52006-11-30 14:04:49 +0000350
Linus Walleij97ceed12011-03-24 16:12:40 +0100351 skip_probe:
Russell King557dca52009-07-05 22:39:08 +0100352 ret = device_add(&dev->dev);
Russell King96b13f52006-11-30 14:04:49 +0000353 if (ret)
354 goto err_release;
355
Russell Kingdfb85182012-05-03 11:33:15 +0100356 if (dev->irq[0])
Russell King96b13f52006-11-30 14:04:49 +0000357 ret = device_create_file(&dev->dev, &dev_attr_irq0);
Russell Kingdfb85182012-05-03 11:33:15 +0100358 if (ret == 0 && dev->irq[1])
Russell King96b13f52006-11-30 14:04:49 +0000359 ret = device_create_file(&dev->dev, &dev_attr_irq1);
360 if (ret == 0)
361 return ret;
362
363 device_unregister(&dev->dev);
364
365 err_release:
366 release_resource(&dev->res);
367 err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return ret;
369}
Russell Kingd5dc9272011-12-18 11:07:47 +0000370EXPORT_SYMBOL_GPL(amba_device_add);
371
Linus Walleij6026aa92012-04-03 11:58:42 +0100372static struct amba_device *
373amba_aphb_device_add(struct device *parent, const char *name,
374 resource_size_t base, size_t size, int irq1, int irq2,
Linus Walleij3ad909b2012-11-30 16:30:43 +0100375 void *pdata, unsigned int periphid, u64 dma_mask,
376 struct resource *resbase)
Linus Walleij6026aa92012-04-03 11:58:42 +0100377{
378 struct amba_device *dev;
379 int ret;
380
381 dev = amba_device_alloc(name, base, size);
382 if (!dev)
383 return ERR_PTR(-ENOMEM);
384
Linus Walleij6026aa92012-04-03 11:58:42 +0100385 dev->dev.coherent_dma_mask = dma_mask;
386 dev->irq[0] = irq1;
387 dev->irq[1] = irq2;
388 dev->periphid = periphid;
389 dev->dev.platform_data = pdata;
390 dev->dev.parent = parent;
391
Linus Walleij3ad909b2012-11-30 16:30:43 +0100392 ret = amba_device_add(dev, resbase);
Linus Walleij6026aa92012-04-03 11:58:42 +0100393 if (ret) {
394 amba_device_put(dev);
395 return ERR_PTR(ret);
396 }
397
398 return dev;
399}
400
401struct amba_device *
402amba_apb_device_add(struct device *parent, const char *name,
403 resource_size_t base, size_t size, int irq1, int irq2,
404 void *pdata, unsigned int periphid)
405{
406 return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
Linus Walleij3ad909b2012-11-30 16:30:43 +0100407 periphid, 0, &iomem_resource);
Linus Walleij6026aa92012-04-03 11:58:42 +0100408}
409EXPORT_SYMBOL_GPL(amba_apb_device_add);
410
411struct amba_device *
412amba_ahb_device_add(struct device *parent, const char *name,
413 resource_size_t base, size_t size, int irq1, int irq2,
414 void *pdata, unsigned int periphid)
415{
416 return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
Linus Walleij3ad909b2012-11-30 16:30:43 +0100417 periphid, ~0ULL, &iomem_resource);
Linus Walleij6026aa92012-04-03 11:58:42 +0100418}
419EXPORT_SYMBOL_GPL(amba_ahb_device_add);
420
Linus Walleij3ad909b2012-11-30 16:30:43 +0100421struct amba_device *
422amba_apb_device_add_res(struct device *parent, const char *name,
423 resource_size_t base, size_t size, int irq1,
424 int irq2, void *pdata, unsigned int periphid,
425 struct resource *resbase)
426{
427 return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
428 periphid, 0, resbase);
429}
430EXPORT_SYMBOL_GPL(amba_apb_device_add_res);
431
432struct amba_device *
433amba_ahb_device_add_res(struct device *parent, const char *name,
434 resource_size_t base, size_t size, int irq1,
435 int irq2, void *pdata, unsigned int periphid,
436 struct resource *resbase)
437{
438 return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
439 periphid, ~0ULL, resbase);
440}
441EXPORT_SYMBOL_GPL(amba_ahb_device_add_res);
442
443
Russell Kingd5dc9272011-12-18 11:07:47 +0000444static void amba_device_initialize(struct amba_device *dev, const char *name)
445{
446 device_initialize(&dev->dev);
447 if (name)
448 dev_set_name(&dev->dev, "%s", name);
449 dev->dev.release = amba_device_release;
450 dev->dev.bus = &amba_bustype;
Russell King446b2a92013-06-27 10:25:33 +0100451 dev->dev.dma_mask = &dev->dev.coherent_dma_mask;
Russell Kingd5dc9272011-12-18 11:07:47 +0000452 dev->res.name = dev_name(&dev->dev);
453}
454
455/**
456 * amba_device_alloc - allocate an AMBA device
457 * @name: sysfs name of the AMBA device
458 * @base: base of AMBA device
459 * @size: size of AMBA device
460 *
461 * Allocate and initialize an AMBA device structure. Returns %NULL
462 * on failure.
463 */
464struct amba_device *amba_device_alloc(const char *name, resource_size_t base,
465 size_t size)
466{
467 struct amba_device *dev;
468
469 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
470 if (dev) {
471 amba_device_initialize(dev, name);
472 dev->res.start = base;
473 dev->res.end = base + size - 1;
474 dev->res.flags = IORESOURCE_MEM;
475 }
476
477 return dev;
478}
479EXPORT_SYMBOL_GPL(amba_device_alloc);
480
481/**
482 * amba_device_register - register an AMBA device
483 * @dev: AMBA device to register
484 * @parent: parent memory resource
485 *
486 * Setup the AMBA device, reading the cell ID if present.
487 * Claim the resource, and register the AMBA device with
488 * the Linux device manager.
489 */
490int amba_device_register(struct amba_device *dev, struct resource *parent)
491{
492 amba_device_initialize(dev, dev->dev.init_name);
493 dev->dev.init_name = NULL;
494
Russell Kingd5dc9272011-12-18 11:07:47 +0000495 return amba_device_add(dev, parent);
496}
497
498/**
499 * amba_device_put - put an AMBA device
500 * @dev: AMBA device to put
501 */
502void amba_device_put(struct amba_device *dev)
503{
504 put_device(&dev->dev);
505}
506EXPORT_SYMBOL_GPL(amba_device_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508/**
509 * amba_device_unregister - unregister an AMBA device
510 * @dev: AMBA device to remove
511 *
512 * Remove the specified AMBA device from the Linux device
513 * manager. All files associated with this object will be
514 * destroyed, and device drivers notified that the device has
515 * been removed. The AMBA device's resources including
516 * the amba_device structure will be freed once all
517 * references to it have been dropped.
518 */
519void amba_device_unregister(struct amba_device *dev)
520{
521 device_unregister(&dev->dev);
522}
523
524
525struct find_data {
526 struct amba_device *dev;
527 struct device *parent;
528 const char *busid;
529 unsigned int id;
530 unsigned int mask;
531};
532
533static int amba_find_match(struct device *dev, void *data)
534{
535 struct find_data *d = data;
536 struct amba_device *pcdev = to_amba_device(dev);
537 int r;
538
539 r = (pcdev->periphid & d->mask) == d->id;
540 if (d->parent)
541 r &= d->parent == dev->parent;
542 if (d->busid)
Kay Sievers9d6b4c82009-03-24 16:38:22 -0700543 r &= strcmp(dev_name(dev), d->busid) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 if (r) {
546 get_device(dev);
547 d->dev = pcdev;
548 }
549
550 return r;
551}
552
553/**
554 * amba_find_device - locate an AMBA device given a bus id
555 * @busid: bus id for device (or NULL)
556 * @parent: parent device (or NULL)
557 * @id: peripheral ID (or 0)
558 * @mask: peripheral ID mask (or 0)
559 *
560 * Return the AMBA device corresponding to the supplied parameters.
561 * If no device matches, returns NULL.
562 *
563 * NOTE: When a valid device is found, its refcount is
564 * incremented, and must be decremented before the returned
565 * reference.
566 */
567struct amba_device *
568amba_find_device(const char *busid, struct device *parent, unsigned int id,
569 unsigned int mask)
570{
571 struct find_data data;
572
573 data.dev = NULL;
574 data.parent = parent;
575 data.busid = busid;
576 data.id = id;
577 data.mask = mask;
578
579 bus_for_each_dev(&amba_bustype, NULL, &data, amba_find_match);
580
581 return data.dev;
582}
583
584/**
585 * amba_request_regions - request all mem regions associated with device
586 * @dev: amba_device structure for device
587 * @name: name, or NULL to use driver name
588 */
589int amba_request_regions(struct amba_device *dev, const char *name)
590{
591 int ret = 0;
Leo Chen8afe0b92009-07-28 23:34:59 +0100592 u32 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 if (!name)
595 name = dev->dev.driver->name;
596
Leo Chen8afe0b92009-07-28 23:34:59 +0100597 size = resource_size(&dev->res);
598
599 if (!request_mem_region(dev->res.start, size, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 ret = -EBUSY;
601
602 return ret;
603}
604
605/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300606 * amba_release_regions - release mem regions associated with device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * @dev: amba_device structure for device
608 *
609 * Release regions claimed by a successful call to amba_request_regions.
610 */
611void amba_release_regions(struct amba_device *dev)
612{
Leo Chen8afe0b92009-07-28 23:34:59 +0100613 u32 size;
614
615 size = resource_size(&dev->res);
616 release_mem_region(dev->res.start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619EXPORT_SYMBOL(amba_driver_register);
620EXPORT_SYMBOL(amba_driver_unregister);
621EXPORT_SYMBOL(amba_device_register);
622EXPORT_SYMBOL(amba_device_unregister);
623EXPORT_SYMBOL(amba_find_device);
624EXPORT_SYMBOL(amba_request_regions);
625EXPORT_SYMBOL(amba_release_regions);