blob: 8e6ac30316624356dde7517988d1be0133044053 [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>
Antonios Motakis3cf38572015-01-06 11:15:11 +010021#include <linux/limits.h>
Stephen Boydbcd30062016-08-10 20:17:34 +010022#include <linux/clk/clk-conf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Russell King934848d2009-01-08 09:58:51 +000024#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define to_amba_driver(d) container_of(d, struct amba_driver, drv)
27
Russell Kingc862aab2011-02-19 15:55:26 +000028static const struct amba_id *
29amba_lookup(const struct amba_id *table, struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
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
Antonios Motakis3cf38572015-01-06 11:15:11 +010048 /* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return amba_lookup(pcdrv->id_table, pcdev) != NULL;
53}
54
Kay Sievers7eff2e72007-08-14 15:15:12 +020055static int amba_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 struct amba_device *pcdev = to_amba_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +020058 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Kay Sievers7eff2e72007-08-14 15:15:12 +020060 retval = add_uevent_var(env, "AMBA_ID=%08x", pcdev->periphid);
Dave Martin523817b2011-10-05 14:44:57 +010061 if (retval)
62 return retval;
63
64 retval = add_uevent_var(env, "MODALIAS=amba:d%08X", pcdev->periphid);
Eric Rannaudbf624562007-03-30 22:23:12 -070065 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Antonios Motakis3cf38572015-01-06 11:15:11 +010068static 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);
Geert Uytterhoeven6b614a82018-04-10 15:21:44 +020072 ssize_t len;
Antonios Motakis3cf38572015-01-06 11:15:11 +010073
74 if (!dev->driver_override)
75 return 0;
76
Geert Uytterhoeven6b614a82018-04-10 15:21:44 +020077 device_lock(_dev);
78 len = sprintf(buf, "%s\n", dev->driver_override);
79 device_unlock(_dev);
80 return len;
Antonios Motakis3cf38572015-01-06 11:15:11 +010081}
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);
Geert Uytterhoeven6b614a82018-04-10 15:21:44 +020088 char *driver_override, *old, *cp;
Antonios Motakis3cf38572015-01-06 11:15:11 +010089
Geert Uytterhoevend2ffed52018-04-10 15:21:45 +020090 /* We need to keep extra room for a newline */
91 if (count >= (PAGE_SIZE - 1))
Antonios Motakis3cf38572015-01-06 11:15:11 +010092 return -EINVAL;
93
94 driver_override = kstrndup(buf, count, GFP_KERNEL);
95 if (!driver_override)
96 return -ENOMEM;
97
98 cp = strchr(driver_override, '\n');
99 if (cp)
100 *cp = '\0';
101
Geert Uytterhoeven6b614a82018-04-10 15:21:44 +0200102 device_lock(_dev);
103 old = dev->driver_override;
Antonios Motakis3cf38572015-01-06 11:15:11 +0100104 if (strlen(driver_override)) {
105 dev->driver_override = driver_override;
106 } else {
107 kfree(driver_override);
108 dev->driver_override = NULL;
109 }
Geert Uytterhoeven6b614a82018-04-10 15:21:44 +0200110 device_unlock(_dev);
Antonios Motakis3cf38572015-01-06 11:15:11 +0100111
112 kfree(old);
113
114 return count;
115}
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200116static DEVICE_ATTR_RW(driver_override);
Antonios Motakis3cf38572015-01-06 11:15:11 +0100117
Russell King96b13f52006-11-30 14:04:49 +0000118#define amba_attr_func(name,fmt,arg...) \
119static ssize_t name##_show(struct device *_dev, \
120 struct device_attribute *attr, char *buf) \
121{ \
122 struct amba_device *dev = to_amba_device(_dev); \
123 return sprintf(buf, fmt, arg); \
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200124} \
125static DEVICE_ATTR_RO(name)
Russell King96b13f52006-11-30 14:04:49 +0000126
127amba_attr_func(id, "%08x\n", dev->periphid);
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200128amba_attr_func(irq0, "%u\n", dev->irq[0]);
129amba_attr_func(irq1, "%u\n", dev->irq[1]);
Russell King96b13f52006-11-30 14:04:49 +0000130amba_attr_func(resource, "\t%016llx\t%016llx\t%016lx\n",
131 (unsigned long long)dev->res.start, (unsigned long long)dev->res.end,
132 dev->res.flags);
133
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200134static struct attribute *amba_dev_attrs[] = {
135 &dev_attr_id.attr,
136 &dev_attr_resource.attr,
137 &dev_attr_driver_override.attr,
138 NULL,
Russell King96b13f52006-11-30 14:04:49 +0000139};
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200140ATTRIBUTE_GROUPS(amba_dev);
Russell King96b13f52006-11-30 14:04:49 +0000141
Ulf Hanssonf210c532014-02-12 14:06:43 +0100142#ifdef CONFIG_PM
Russell King92b97f02011-08-14 09:13:48 +0100143/*
144 * Hooks to provide runtime PM of the pclk (bus clock). It is safe to
145 * enable/disable the bus clock at runtime PM suspend/resume as this
Mark Brown1e458602012-04-13 13:11:50 +0100146 * does not result in loss of context.
Russell King92b97f02011-08-14 09:13:48 +0100147 */
148static int amba_pm_runtime_suspend(struct device *dev)
149{
150 struct amba_device *pcdev = to_amba_device(dev);
151 int ret = pm_generic_runtime_suspend(dev);
152
Krzysztof Kozlowski5670c2a2014-11-14 09:48:27 +0100153 if (ret == 0 && dev->driver) {
154 if (pm_runtime_is_irq_safe(dev))
155 clk_disable(pcdev->pclk);
156 else
157 clk_disable_unprepare(pcdev->pclk);
158 }
Russell King92b97f02011-08-14 09:13:48 +0100159
160 return ret;
161}
162
163static int amba_pm_runtime_resume(struct device *dev)
164{
165 struct amba_device *pcdev = to_amba_device(dev);
166 int ret;
167
168 if (dev->driver) {
Krzysztof Kozlowski5670c2a2014-11-14 09:48:27 +0100169 if (pm_runtime_is_irq_safe(dev))
170 ret = clk_enable(pcdev->pclk);
171 else
172 ret = clk_prepare_enable(pcdev->pclk);
Russell King92b97f02011-08-14 09:13:48 +0100173 /* Failure is probably fatal to the system, but... */
174 if (ret)
175 return ret;
176 }
177
178 return pm_generic_runtime_resume(dev);
179}
Krzysztof Kozlowski5670c2a2014-11-14 09:48:27 +0100180#endif /* CONFIG_PM */
Russell King92b97f02011-08-14 09:13:48 +0100181
Rabin Vincentba74ec72011-02-23 04:33:17 +0100182static const struct dev_pm_ops amba_pm = {
Ulf Hansson26825cf2013-12-09 10:38:20 +0100183 .suspend = pm_generic_suspend,
184 .resume = pm_generic_resume,
185 .freeze = pm_generic_freeze,
186 .thaw = pm_generic_thaw,
187 .poweroff = pm_generic_poweroff,
188 .restore = pm_generic_restore,
Rafael J. Wysocki6ed23b82014-12-04 00:34:11 +0100189 SET_RUNTIME_PM_OPS(
Russell King92b97f02011-08-14 09:13:48 +0100190 amba_pm_runtime_suspend,
191 amba_pm_runtime_resume,
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +0200192 NULL
Rabin Vincentba74ec72011-02-23 04:33:17 +0100193 )
194};
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
197 * Primecells are part of the Advanced Microcontroller Bus Architecture,
198 * so we call the bus "amba".
199 */
Rob Herring394d5ae2011-02-12 15:58:25 +0100200struct bus_type amba_bustype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .name = "amba",
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200202 .dev_groups = amba_dev_groups,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .match = amba_match,
Paul Jackson6d20b032005-11-25 20:04:26 -0800204 .uevent = amba_uevent,
Ulf Hansson26825cf2013-12-09 10:38:20 +0100205 .pm = &amba_pm,
Robin Murphyd89e2372017-10-12 16:56:14 +0100206 .force_dma = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
209static int __init amba_init(void)
210{
211 return bus_register(&amba_bustype);
212}
213
214postcore_initcall(amba_init);
215
Russell King7cfe2492010-07-15 10:47:14 +0100216static int amba_get_enable_pclk(struct amba_device *pcdev)
217{
Russell King7cfe2492010-07-15 10:47:14 +0100218 int ret;
219
Ulf Hansson89a5c982013-12-09 10:39:13 +0100220 pcdev->pclk = clk_get(&pcdev->dev, "apb_pclk");
221 if (IS_ERR(pcdev->pclk))
222 return PTR_ERR(pcdev->pclk);
Russell King7cfe2492010-07-15 10:47:14 +0100223
Ulf Hansson89a5c982013-12-09 10:39:13 +0100224 ret = clk_prepare_enable(pcdev->pclk);
225 if (ret)
226 clk_put(pcdev->pclk);
Russell King7cfe2492010-07-15 10:47:14 +0100227
228 return ret;
229}
230
231static void amba_put_disable_pclk(struct amba_device *pcdev)
232{
Ulf Hansson89a5c982013-12-09 10:39:13 +0100233 clk_disable_unprepare(pcdev->pclk);
234 clk_put(pcdev->pclk);
Russell King7cfe2492010-07-15 10:47:14 +0100235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/*
238 * These are the device model conversion veneers; they convert the
239 * device model structures to our more specific structures.
240 */
241static int amba_probe(struct device *dev)
242{
243 struct amba_device *pcdev = to_amba_device(dev);
244 struct amba_driver *pcdrv = to_amba_driver(dev->driver);
Russell Kingc862aab2011-02-19 15:55:26 +0000245 const struct amba_id *id = amba_lookup(pcdrv->id_table, pcdev);
Russell King7cfe2492010-07-15 10:47:14 +0100246 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Russell King7cfe2492010-07-15 10:47:14 +0100248 do {
Stephen Boydbcd30062016-08-10 20:17:34 +0100249 ret = of_clk_set_defaults(dev->of_node, false);
250 if (ret < 0)
251 break;
252
Ulf Hansson207f1a22014-09-19 20:27:42 +0200253 ret = dev_pm_domain_attach(dev, true);
254 if (ret == -EPROBE_DEFER)
Russell King7cfe2492010-07-15 10:47:14 +0100255 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Ulf Hansson207f1a22014-09-19 20:27:42 +0200257 ret = amba_get_enable_pclk(pcdev);
258 if (ret) {
259 dev_pm_domain_detach(dev, true);
260 break;
261 }
262
Russell King92b97f02011-08-14 09:13:48 +0100263 pm_runtime_get_noresume(dev);
264 pm_runtime_set_active(dev);
265 pm_runtime_enable(dev);
266
Russell King7cfe2492010-07-15 10:47:14 +0100267 ret = pcdrv->probe(pcdev, id);
268 if (ret == 0)
269 break;
270
Russell King92b97f02011-08-14 09:13:48 +0100271 pm_runtime_disable(dev);
272 pm_runtime_set_suspended(dev);
273 pm_runtime_put_noidle(dev);
274
Russell King7cfe2492010-07-15 10:47:14 +0100275 amba_put_disable_pclk(pcdev);
Ulf Hansson207f1a22014-09-19 20:27:42 +0200276 dev_pm_domain_detach(dev, true);
Russell King7cfe2492010-07-15 10:47:14 +0100277 } while (0);
278
279 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282static int amba_remove(struct device *dev)
283{
Russell King7cfe2492010-07-15 10:47:14 +0100284 struct amba_device *pcdev = to_amba_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 struct amba_driver *drv = to_amba_driver(dev->driver);
Russell King92b97f02011-08-14 09:13:48 +0100286 int ret;
287
288 pm_runtime_get_sync(dev);
289 ret = drv->remove(pcdev);
290 pm_runtime_put_noidle(dev);
291
292 /* Undo the runtime PM settings in amba_probe() */
293 pm_runtime_disable(dev);
294 pm_runtime_set_suspended(dev);
295 pm_runtime_put_noidle(dev);
Russell King7cfe2492010-07-15 10:47:14 +0100296
297 amba_put_disable_pclk(pcdev);
Ulf Hansson207f1a22014-09-19 20:27:42 +0200298 dev_pm_domain_detach(dev, true);
Russell King7cfe2492010-07-15 10:47:14 +0100299
300 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303static void amba_shutdown(struct device *dev)
304{
305 struct amba_driver *drv = to_amba_driver(dev->driver);
306 drv->shutdown(to_amba_device(dev));
307}
308
309/**
310 * amba_driver_register - register an AMBA device driver
311 * @drv: amba device driver structure
312 *
313 * Register an AMBA device driver with the Linux device model
314 * core. If devices pre-exist, the drivers probe function will
315 * be called.
316 */
317int amba_driver_register(struct amba_driver *drv)
318{
319 drv->drv.bus = &amba_bustype;
320
321#define SETFN(fn) if (drv->fn) drv->drv.fn = amba_##fn
322 SETFN(probe);
323 SETFN(remove);
324 SETFN(shutdown);
325
326 return driver_register(&drv->drv);
327}
328
329/**
330 * amba_driver_unregister - remove an AMBA device driver
331 * @drv: AMBA device driver structure to remove
332 *
333 * Unregister an AMBA device driver from the Linux device
334 * model. The device model will call the drivers remove function
335 * for each device the device driver is currently handling.
336 */
337void amba_driver_unregister(struct amba_driver *drv)
338{
339 driver_unregister(&drv->drv);
340}
341
342
343static void amba_device_release(struct device *dev)
344{
345 struct amba_device *d = to_amba_device(dev);
346
347 if (d->res.parent)
348 release_resource(&d->res);
349 kfree(d);
350}
351
Marek Szyprowskia41980f2016-04-21 07:58:35 +0100352static int amba_device_try_add(struct amba_device *dev, struct resource *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Leo Chen8afe0b92009-07-28 23:34:59 +0100354 u32 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 void __iomem *tmp;
356 int i, ret;
357
Russell King2eac58d2011-12-18 11:43:56 +0000358 WARN_ON(dev->irq[0] == (unsigned int)-1);
359 WARN_ON(dev->irq[1] == (unsigned int)-1);
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 ret = request_resource(parent, &dev->res);
Russell King96b13f52006-11-30 14:04:49 +0000362 if (ret)
363 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Linus Walleij97ceed12011-03-24 16:12:40 +0100365 /* Hard-coded primecell ID instead of plug-n-play */
366 if (dev->periphid != 0)
367 goto skip_probe;
368
Leo Chen8afe0b92009-07-28 23:34:59 +0100369 /*
370 * Dynamically calculate the size of the resource
371 * and use this for iomap
372 */
373 size = resource_size(&dev->res);
374 tmp = ioremap(dev->res.start, size);
Russell King96b13f52006-11-30 14:04:49 +0000375 if (!tmp) {
376 ret = -ENOMEM;
377 goto err_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Russell King96b13f52006-11-30 14:04:49 +0000379
Marek Szyprowskia41980f2016-04-21 07:58:35 +0100380 ret = dev_pm_domain_attach(&dev->dev, true);
381 if (ret == -EPROBE_DEFER) {
382 iounmap(tmp);
383 goto err_release;
384 }
385
Russell King7cfe2492010-07-15 10:47:14 +0100386 ret = amba_get_enable_pclk(dev);
387 if (ret == 0) {
388 u32 pid, cid;
389
390 /*
391 * Read pid and cid based on size of resource
392 * they are located at end of region
393 */
394 for (pid = 0, i = 0; i < 4; i++)
395 pid |= (readl(tmp + size - 0x20 + 4 * i) & 255) <<
396 (i * 8);
397 for (cid = 0, i = 0; i < 4; i++)
398 cid |= (readl(tmp + size - 0x10 + 4 * i) & 255) <<
399 (i * 8);
400
401 amba_put_disable_pclk(dev);
402
Pratik Patela06ae862014-11-03 11:07:35 -0700403 if (cid == AMBA_CID || cid == CORESIGHT_CID)
Russell King7cfe2492010-07-15 10:47:14 +0100404 dev->periphid = pid;
405
406 if (!dev->periphid)
407 ret = -ENODEV;
408 }
Russell King96b13f52006-11-30 14:04:49 +0000409
410 iounmap(tmp);
Marek Szyprowskia41980f2016-04-21 07:58:35 +0100411 dev_pm_domain_detach(&dev->dev, true);
Russell King96b13f52006-11-30 14:04:49 +0000412
Russell King7cfe2492010-07-15 10:47:14 +0100413 if (ret)
Russell King96b13f52006-11-30 14:04:49 +0000414 goto err_release;
Russell King96b13f52006-11-30 14:04:49 +0000415
Linus Walleij97ceed12011-03-24 16:12:40 +0100416 skip_probe:
Russell King557dca52009-07-05 22:39:08 +0100417 ret = device_add(&dev->dev);
Russell King96b13f52006-11-30 14:04:49 +0000418 if (ret)
419 goto err_release;
420
Russell Kingdfb85182012-05-03 11:33:15 +0100421 if (dev->irq[0])
Russell King96b13f52006-11-30 14:04:49 +0000422 ret = device_create_file(&dev->dev, &dev_attr_irq0);
Russell Kingdfb85182012-05-03 11:33:15 +0100423 if (ret == 0 && dev->irq[1])
Russell King96b13f52006-11-30 14:04:49 +0000424 ret = device_create_file(&dev->dev, &dev_attr_irq1);
425 if (ret == 0)
426 return ret;
427
428 device_unregister(&dev->dev);
429
430 err_release:
431 release_resource(&dev->res);
432 err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return ret;
434}
Marek Szyprowskia41980f2016-04-21 07:58:35 +0100435
436/*
437 * Registration of AMBA device require reading its pid and cid registers.
438 * To do this, the device must be turned on (if it is a part of power domain)
439 * and have clocks enabled. However in some cases those resources might not be
440 * yet available. Returning EPROBE_DEFER is not a solution in such case,
441 * because callers don't handle this special error code. Instead such devices
442 * are added to the special list and their registration is retried from
443 * periodic worker, until all resources are available and registration succeeds.
444 */
445struct deferred_device {
446 struct amba_device *dev;
447 struct resource *parent;
448 struct list_head node;
449};
450
451static LIST_HEAD(deferred_devices);
452static DEFINE_MUTEX(deferred_devices_lock);
453
454static void amba_deferred_retry_func(struct work_struct *dummy);
455static DECLARE_DELAYED_WORK(deferred_retry_work, amba_deferred_retry_func);
456
457#define DEFERRED_DEVICE_TIMEOUT (msecs_to_jiffies(5 * 1000))
458
459static void amba_deferred_retry_func(struct work_struct *dummy)
460{
461 struct deferred_device *ddev, *tmp;
462
463 mutex_lock(&deferred_devices_lock);
464
465 list_for_each_entry_safe(ddev, tmp, &deferred_devices, node) {
466 int ret = amba_device_try_add(ddev->dev, ddev->parent);
467
468 if (ret == -EPROBE_DEFER)
469 continue;
470
471 list_del_init(&ddev->node);
472 kfree(ddev);
473 }
474
475 if (!list_empty(&deferred_devices))
476 schedule_delayed_work(&deferred_retry_work,
477 DEFERRED_DEVICE_TIMEOUT);
478
479 mutex_unlock(&deferred_devices_lock);
480}
481
482/**
483 * amba_device_add - add a previously allocated AMBA device structure
484 * @dev: AMBA device allocated by amba_device_alloc
485 * @parent: resource parent for this devices resources
486 *
487 * Claim the resource, and read the device cell ID if not already
488 * initialized. Register the AMBA device with the Linux device
489 * manager.
490 */
491int amba_device_add(struct amba_device *dev, struct resource *parent)
492{
493 int ret = amba_device_try_add(dev, parent);
494
495 if (ret == -EPROBE_DEFER) {
496 struct deferred_device *ddev;
497
498 ddev = kmalloc(sizeof(*ddev), GFP_KERNEL);
499 if (!ddev)
500 return -ENOMEM;
501
502 ddev->dev = dev;
503 ddev->parent = parent;
504 ret = 0;
505
506 mutex_lock(&deferred_devices_lock);
507
508 if (list_empty(&deferred_devices))
509 schedule_delayed_work(&deferred_retry_work,
510 DEFERRED_DEVICE_TIMEOUT);
511 list_add_tail(&ddev->node, &deferred_devices);
512
513 mutex_unlock(&deferred_devices_lock);
514 }
515 return ret;
516}
Russell Kingd5dc9272011-12-18 11:07:47 +0000517EXPORT_SYMBOL_GPL(amba_device_add);
518
Linus Walleij6026aa92012-04-03 11:58:42 +0100519static struct amba_device *
520amba_aphb_device_add(struct device *parent, const char *name,
521 resource_size_t base, size_t size, int irq1, int irq2,
Linus Walleij3ad909b2012-11-30 16:30:43 +0100522 void *pdata, unsigned int periphid, u64 dma_mask,
523 struct resource *resbase)
Linus Walleij6026aa92012-04-03 11:58:42 +0100524{
525 struct amba_device *dev;
526 int ret;
527
528 dev = amba_device_alloc(name, base, size);
529 if (!dev)
530 return ERR_PTR(-ENOMEM);
531
Linus Walleij6026aa92012-04-03 11:58:42 +0100532 dev->dev.coherent_dma_mask = dma_mask;
533 dev->irq[0] = irq1;
534 dev->irq[1] = irq2;
535 dev->periphid = periphid;
536 dev->dev.platform_data = pdata;
537 dev->dev.parent = parent;
538
Linus Walleij3ad909b2012-11-30 16:30:43 +0100539 ret = amba_device_add(dev, resbase);
Linus Walleij6026aa92012-04-03 11:58:42 +0100540 if (ret) {
541 amba_device_put(dev);
542 return ERR_PTR(ret);
543 }
544
545 return dev;
546}
547
548struct amba_device *
549amba_apb_device_add(struct device *parent, const char *name,
550 resource_size_t base, size_t size, int irq1, int irq2,
551 void *pdata, unsigned int periphid)
552{
553 return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
Linus Walleij3ad909b2012-11-30 16:30:43 +0100554 periphid, 0, &iomem_resource);
Linus Walleij6026aa92012-04-03 11:58:42 +0100555}
556EXPORT_SYMBOL_GPL(amba_apb_device_add);
557
558struct amba_device *
559amba_ahb_device_add(struct device *parent, const char *name,
560 resource_size_t base, size_t size, int irq1, int irq2,
561 void *pdata, unsigned int periphid)
562{
563 return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
Linus Walleij3ad909b2012-11-30 16:30:43 +0100564 periphid, ~0ULL, &iomem_resource);
Linus Walleij6026aa92012-04-03 11:58:42 +0100565}
566EXPORT_SYMBOL_GPL(amba_ahb_device_add);
567
Linus Walleij3ad909b2012-11-30 16:30:43 +0100568struct amba_device *
569amba_apb_device_add_res(struct device *parent, const char *name,
570 resource_size_t base, size_t size, int irq1,
571 int irq2, void *pdata, unsigned int periphid,
572 struct resource *resbase)
573{
574 return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
575 periphid, 0, resbase);
576}
577EXPORT_SYMBOL_GPL(amba_apb_device_add_res);
578
579struct amba_device *
580amba_ahb_device_add_res(struct device *parent, const char *name,
581 resource_size_t base, size_t size, int irq1,
582 int irq2, void *pdata, unsigned int periphid,
583 struct resource *resbase)
584{
585 return amba_aphb_device_add(parent, name, base, size, irq1, irq2, pdata,
586 periphid, ~0ULL, resbase);
587}
588EXPORT_SYMBOL_GPL(amba_ahb_device_add_res);
589
590
Russell Kingd5dc9272011-12-18 11:07:47 +0000591static void amba_device_initialize(struct amba_device *dev, const char *name)
592{
593 device_initialize(&dev->dev);
594 if (name)
595 dev_set_name(&dev->dev, "%s", name);
596 dev->dev.release = amba_device_release;
597 dev->dev.bus = &amba_bustype;
Russell King446b2a92013-06-27 10:25:33 +0100598 dev->dev.dma_mask = &dev->dev.coherent_dma_mask;
Russell Kingd5dc9272011-12-18 11:07:47 +0000599 dev->res.name = dev_name(&dev->dev);
600}
601
602/**
603 * amba_device_alloc - allocate an AMBA device
604 * @name: sysfs name of the AMBA device
605 * @base: base of AMBA device
606 * @size: size of AMBA device
607 *
608 * Allocate and initialize an AMBA device structure. Returns %NULL
609 * on failure.
610 */
611struct amba_device *amba_device_alloc(const char *name, resource_size_t base,
612 size_t size)
613{
614 struct amba_device *dev;
615
616 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
617 if (dev) {
618 amba_device_initialize(dev, name);
619 dev->res.start = base;
620 dev->res.end = base + size - 1;
621 dev->res.flags = IORESOURCE_MEM;
622 }
623
624 return dev;
625}
626EXPORT_SYMBOL_GPL(amba_device_alloc);
627
628/**
629 * amba_device_register - register an AMBA device
630 * @dev: AMBA device to register
631 * @parent: parent memory resource
632 *
633 * Setup the AMBA device, reading the cell ID if present.
634 * Claim the resource, and register the AMBA device with
635 * the Linux device manager.
636 */
637int amba_device_register(struct amba_device *dev, struct resource *parent)
638{
639 amba_device_initialize(dev, dev->dev.init_name);
640 dev->dev.init_name = NULL;
641
Russell Kingd5dc9272011-12-18 11:07:47 +0000642 return amba_device_add(dev, parent);
643}
644
645/**
646 * amba_device_put - put an AMBA device
647 * @dev: AMBA device to put
648 */
649void amba_device_put(struct amba_device *dev)
650{
651 put_device(&dev->dev);
652}
653EXPORT_SYMBOL_GPL(amba_device_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655/**
656 * amba_device_unregister - unregister an AMBA device
657 * @dev: AMBA device to remove
658 *
659 * Remove the specified AMBA device from the Linux device
660 * manager. All files associated with this object will be
661 * destroyed, and device drivers notified that the device has
662 * been removed. The AMBA device's resources including
663 * the amba_device structure will be freed once all
664 * references to it have been dropped.
665 */
666void amba_device_unregister(struct amba_device *dev)
667{
668 device_unregister(&dev->dev);
669}
670
671
672struct find_data {
673 struct amba_device *dev;
674 struct device *parent;
675 const char *busid;
676 unsigned int id;
677 unsigned int mask;
678};
679
680static int amba_find_match(struct device *dev, void *data)
681{
682 struct find_data *d = data;
683 struct amba_device *pcdev = to_amba_device(dev);
684 int r;
685
686 r = (pcdev->periphid & d->mask) == d->id;
687 if (d->parent)
688 r &= d->parent == dev->parent;
689 if (d->busid)
Kay Sievers9d6b4c82009-03-24 16:38:22 -0700690 r &= strcmp(dev_name(dev), d->busid) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 if (r) {
693 get_device(dev);
694 d->dev = pcdev;
695 }
696
697 return r;
698}
699
700/**
701 * amba_find_device - locate an AMBA device given a bus id
702 * @busid: bus id for device (or NULL)
703 * @parent: parent device (or NULL)
704 * @id: peripheral ID (or 0)
705 * @mask: peripheral ID mask (or 0)
706 *
707 * Return the AMBA device corresponding to the supplied parameters.
708 * If no device matches, returns NULL.
709 *
710 * NOTE: When a valid device is found, its refcount is
711 * incremented, and must be decremented before the returned
712 * reference.
713 */
714struct amba_device *
715amba_find_device(const char *busid, struct device *parent, unsigned int id,
716 unsigned int mask)
717{
718 struct find_data data;
719
720 data.dev = NULL;
721 data.parent = parent;
722 data.busid = busid;
723 data.id = id;
724 data.mask = mask;
725
726 bus_for_each_dev(&amba_bustype, NULL, &data, amba_find_match);
727
728 return data.dev;
729}
730
731/**
732 * amba_request_regions - request all mem regions associated with device
733 * @dev: amba_device structure for device
734 * @name: name, or NULL to use driver name
735 */
736int amba_request_regions(struct amba_device *dev, const char *name)
737{
738 int ret = 0;
Leo Chen8afe0b92009-07-28 23:34:59 +0100739 u32 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 if (!name)
742 name = dev->dev.driver->name;
743
Leo Chen8afe0b92009-07-28 23:34:59 +0100744 size = resource_size(&dev->res);
745
746 if (!request_mem_region(dev->res.start, size, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 ret = -EBUSY;
748
749 return ret;
750}
751
752/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300753 * amba_release_regions - release mem regions associated with device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 * @dev: amba_device structure for device
755 *
756 * Release regions claimed by a successful call to amba_request_regions.
757 */
758void amba_release_regions(struct amba_device *dev)
759{
Leo Chen8afe0b92009-07-28 23:34:59 +0100760 u32 size;
761
762 size = resource_size(&dev->res);
763 release_mem_region(dev->res.start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766EXPORT_SYMBOL(amba_driver_register);
767EXPORT_SYMBOL(amba_driver_unregister);
768EXPORT_SYMBOL(amba_device_register);
769EXPORT_SYMBOL(amba_device_unregister);
770EXPORT_SYMBOL(amba_find_device);
771EXPORT_SYMBOL(amba_request_regions);
772EXPORT_SYMBOL(amba_release_regions);