blob: c77eb6e656462bcbb32f87ed1913d856a804949e [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
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
Geert Uytterhoeven6b614a82018-04-10 15:21:44 +0200101 device_lock(_dev);
102 old = dev->driver_override;
Antonios Motakis3cf38572015-01-06 11:15:11 +0100103 if (strlen(driver_override)) {
104 dev->driver_override = driver_override;
105 } else {
106 kfree(driver_override);
107 dev->driver_override = NULL;
108 }
Geert Uytterhoeven6b614a82018-04-10 15:21:44 +0200109 device_unlock(_dev);
Antonios Motakis3cf38572015-01-06 11:15:11 +0100110
111 kfree(old);
112
113 return count;
114}
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200115static DEVICE_ATTR_RW(driver_override);
Antonios Motakis3cf38572015-01-06 11:15:11 +0100116
Russell King96b13f52006-11-30 14:04:49 +0000117#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); \
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200123} \
124static DEVICE_ATTR_RO(name)
Russell King96b13f52006-11-30 14:04:49 +0000125
126amba_attr_func(id, "%08x\n", dev->periphid);
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200127amba_attr_func(irq0, "%u\n", dev->irq[0]);
128amba_attr_func(irq1, "%u\n", dev->irq[1]);
Russell King96b13f52006-11-30 14:04:49 +0000129amba_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
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200133static struct attribute *amba_dev_attrs[] = {
134 &dev_attr_id.attr,
135 &dev_attr_resource.attr,
136 &dev_attr_driver_override.attr,
137 NULL,
Russell King96b13f52006-11-30 14:04:49 +0000138};
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200139ATTRIBUTE_GROUPS(amba_dev);
Russell King96b13f52006-11-30 14:04:49 +0000140
Ulf Hanssonf210c532014-02-12 14:06:43 +0100141#ifdef CONFIG_PM
Russell King92b97f02011-08-14 09:13:48 +0100142/*
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
Mark Brown1e458602012-04-13 13:11:50 +0100145 * does not result in loss of context.
Russell King92b97f02011-08-14 09:13:48 +0100146 */
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
Krzysztof Kozlowski5670c2a2014-11-14 09:48:27 +0100152 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 }
Russell King92b97f02011-08-14 09:13:48 +0100158
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) {
Krzysztof Kozlowski5670c2a2014-11-14 09:48:27 +0100168 if (pm_runtime_is_irq_safe(dev))
169 ret = clk_enable(pcdev->pclk);
170 else
171 ret = clk_prepare_enable(pcdev->pclk);
Russell King92b97f02011-08-14 09:13:48 +0100172 /* Failure is probably fatal to the system, but... */
173 if (ret)
174 return ret;
175 }
176
177 return pm_generic_runtime_resume(dev);
178}
Krzysztof Kozlowski5670c2a2014-11-14 09:48:27 +0100179#endif /* CONFIG_PM */
Russell King92b97f02011-08-14 09:13:48 +0100180
Rabin Vincentba74ec72011-02-23 04:33:17 +0100181static const struct dev_pm_ops amba_pm = {
Ulf Hansson26825cf2013-12-09 10:38:20 +0100182 .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,
Rafael J. Wysocki6ed23b82014-12-04 00:34:11 +0100188 SET_RUNTIME_PM_OPS(
Russell King92b97f02011-08-14 09:13:48 +0100189 amba_pm_runtime_suspend,
190 amba_pm_runtime_resume,
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +0200191 NULL
Rabin Vincentba74ec72011-02-23 04:33:17 +0100192 )
193};
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*
196 * Primecells are part of the Advanced Microcontroller Bus Architecture,
197 * so we call the bus "amba".
198 */
Rob Herring394d5ae2011-02-12 15:58:25 +0100199struct bus_type amba_bustype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 .name = "amba",
Greg Kroah-Hartman966449a2017-06-06 14:16:49 +0200201 .dev_groups = amba_dev_groups,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 .match = amba_match,
Paul Jackson6d20b032005-11-25 20:04:26 -0800203 .uevent = amba_uevent,
Ulf Hansson26825cf2013-12-09 10:38:20 +0100204 .pm = &amba_pm,
Robin Murphyd89e2372017-10-12 16:56:14 +0100205 .force_dma = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
208static int __init amba_init(void)
209{
210 return bus_register(&amba_bustype);
211}
212
213postcore_initcall(amba_init);
214
Russell King7cfe2492010-07-15 10:47:14 +0100215static int amba_get_enable_pclk(struct amba_device *pcdev)
216{
Russell King7cfe2492010-07-15 10:47:14 +0100217 int ret;
218
Ulf Hansson89a5c982013-12-09 10:39:13 +0100219 pcdev->pclk = clk_get(&pcdev->dev, "apb_pclk");
220 if (IS_ERR(pcdev->pclk))
221 return PTR_ERR(pcdev->pclk);
Russell King7cfe2492010-07-15 10:47:14 +0100222
Ulf Hansson89a5c982013-12-09 10:39:13 +0100223 ret = clk_prepare_enable(pcdev->pclk);
224 if (ret)
225 clk_put(pcdev->pclk);
Russell King7cfe2492010-07-15 10:47:14 +0100226
227 return ret;
228}
229
230static void amba_put_disable_pclk(struct amba_device *pcdev)
231{
Ulf Hansson89a5c982013-12-09 10:39:13 +0100232 clk_disable_unprepare(pcdev->pclk);
233 clk_put(pcdev->pclk);
Russell King7cfe2492010-07-15 10:47:14 +0100234}
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/*
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);
Russell Kingc862aab2011-02-19 15:55:26 +0000244 const struct amba_id *id = amba_lookup(pcdrv->id_table, pcdev);
Russell King7cfe2492010-07-15 10:47:14 +0100245 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Russell King7cfe2492010-07-15 10:47:14 +0100247 do {
Stephen Boydbcd30062016-08-10 20:17:34 +0100248 ret = of_clk_set_defaults(dev->of_node, false);
249 if (ret < 0)
250 break;
251
Ulf Hansson207f1a22014-09-19 20:27:42 +0200252 ret = dev_pm_domain_attach(dev, true);
253 if (ret == -EPROBE_DEFER)
Russell King7cfe2492010-07-15 10:47:14 +0100254 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Ulf Hansson207f1a22014-09-19 20:27:42 +0200256 ret = amba_get_enable_pclk(pcdev);
257 if (ret) {
258 dev_pm_domain_detach(dev, true);
259 break;
260 }
261
Russell King92b97f02011-08-14 09:13:48 +0100262 pm_runtime_get_noresume(dev);
263 pm_runtime_set_active(dev);
264 pm_runtime_enable(dev);
265
Russell King7cfe2492010-07-15 10:47:14 +0100266 ret = pcdrv->probe(pcdev, id);
267 if (ret == 0)
268 break;
269
Russell King92b97f02011-08-14 09:13:48 +0100270 pm_runtime_disable(dev);
271 pm_runtime_set_suspended(dev);
272 pm_runtime_put_noidle(dev);
273
Russell King7cfe2492010-07-15 10:47:14 +0100274 amba_put_disable_pclk(pcdev);
Ulf Hansson207f1a22014-09-19 20:27:42 +0200275 dev_pm_domain_detach(dev, true);
Russell King7cfe2492010-07-15 10:47:14 +0100276 } while (0);
277
278 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281static int amba_remove(struct device *dev)
282{
Russell King7cfe2492010-07-15 10:47:14 +0100283 struct amba_device *pcdev = to_amba_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct amba_driver *drv = to_amba_driver(dev->driver);
Russell King92b97f02011-08-14 09:13:48 +0100285 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);
Russell King7cfe2492010-07-15 10:47:14 +0100295
296 amba_put_disable_pclk(pcdev);
Ulf Hansson207f1a22014-09-19 20:27:42 +0200297 dev_pm_domain_detach(dev, true);
Russell King7cfe2492010-07-15 10:47:14 +0100298
299 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
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
Marek Szyprowskia41980f2016-04-21 07:58:35 +0100351static int amba_device_try_add(struct amba_device *dev, struct resource *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Leo Chen8afe0b92009-07-28 23:34:59 +0100353 u32 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 void __iomem *tmp;
355 int i, ret;
356
Russell King2eac58d2011-12-18 11:43:56 +0000357 WARN_ON(dev->irq[0] == (unsigned int)-1);
358 WARN_ON(dev->irq[1] == (unsigned int)-1);
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 ret = request_resource(parent, &dev->res);
Russell King96b13f52006-11-30 14:04:49 +0000361 if (ret)
362 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Linus Walleij97ceed12011-03-24 16:12:40 +0100364 /* Hard-coded primecell ID instead of plug-n-play */
365 if (dev->periphid != 0)
366 goto skip_probe;
367
Leo Chen8afe0b92009-07-28 23:34:59 +0100368 /*
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);
Russell King96b13f52006-11-30 14:04:49 +0000374 if (!tmp) {
375 ret = -ENOMEM;
376 goto err_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Russell King96b13f52006-11-30 14:04:49 +0000378
Marek Szyprowskia41980f2016-04-21 07:58:35 +0100379 ret = dev_pm_domain_attach(&dev->dev, true);
380 if (ret == -EPROBE_DEFER) {
381 iounmap(tmp);
382 goto err_release;
383 }
384
Russell King7cfe2492010-07-15 10:47:14 +0100385 ret = amba_get_enable_pclk(dev);
386 if (ret == 0) {
387 u32 pid, cid;
388
389 /*
390 * Read pid and cid based on size of resource
391 * they are located at end of region
392 */
393 for (pid = 0, i = 0; i < 4; i++)
394 pid |= (readl(tmp + size - 0x20 + 4 * i) & 255) <<
395 (i * 8);
396 for (cid = 0, i = 0; i < 4; i++)
397 cid |= (readl(tmp + size - 0x10 + 4 * i) & 255) <<
398 (i * 8);
399
400 amba_put_disable_pclk(dev);
401
Pratik Patela06ae862014-11-03 11:07:35 -0700402 if (cid == AMBA_CID || cid == CORESIGHT_CID)
Russell King7cfe2492010-07-15 10:47:14 +0100403 dev->periphid = pid;
404
405 if (!dev->periphid)
406 ret = -ENODEV;
407 }
Russell King96b13f52006-11-30 14:04:49 +0000408
409 iounmap(tmp);
Marek Szyprowskia41980f2016-04-21 07:58:35 +0100410 dev_pm_domain_detach(&dev->dev, true);
Russell King96b13f52006-11-30 14:04:49 +0000411
Russell King7cfe2492010-07-15 10:47:14 +0100412 if (ret)
Russell King96b13f52006-11-30 14:04:49 +0000413 goto err_release;
Russell King96b13f52006-11-30 14:04:49 +0000414
Linus Walleij97ceed12011-03-24 16:12:40 +0100415 skip_probe:
Russell King557dca52009-07-05 22:39:08 +0100416 ret = device_add(&dev->dev);
Russell King96b13f52006-11-30 14:04:49 +0000417 if (ret)
418 goto err_release;
419
Russell Kingdfb85182012-05-03 11:33:15 +0100420 if (dev->irq[0])
Russell King96b13f52006-11-30 14:04:49 +0000421 ret = device_create_file(&dev->dev, &dev_attr_irq0);
Russell Kingdfb85182012-05-03 11:33:15 +0100422 if (ret == 0 && dev->irq[1])
Russell King96b13f52006-11-30 14:04:49 +0000423 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:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return ret;
433}
Marek Szyprowskia41980f2016-04-21 07:58:35 +0100434
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}
Russell Kingd5dc9272011-12-18 11:07:47 +0000516EXPORT_SYMBOL_GPL(amba_device_add);
517
Linus Walleij6026aa92012-04-03 11:58:42 +0100518static 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,
Linus Walleij3ad909b2012-11-30 16:30:43 +0100521 void *pdata, unsigned int periphid, u64 dma_mask,
522 struct resource *resbase)
Linus Walleij6026aa92012-04-03 11:58:42 +0100523{
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
Linus Walleij6026aa92012-04-03 11:58:42 +0100531 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
Linus Walleij3ad909b2012-11-30 16:30:43 +0100538 ret = amba_device_add(dev, resbase);
Linus Walleij6026aa92012-04-03 11:58:42 +0100539 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,
Linus Walleij3ad909b2012-11-30 16:30:43 +0100553 periphid, 0, &iomem_resource);
Linus Walleij6026aa92012-04-03 11:58:42 +0100554}
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,
Linus Walleij3ad909b2012-11-30 16:30:43 +0100563 periphid, ~0ULL, &iomem_resource);
Linus Walleij6026aa92012-04-03 11:58:42 +0100564}
565EXPORT_SYMBOL_GPL(amba_ahb_device_add);
566
Linus Walleij3ad909b2012-11-30 16:30:43 +0100567struct 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
Russell Kingd5dc9272011-12-18 11:07:47 +0000590static 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;
Russell King446b2a92013-06-27 10:25:33 +0100597 dev->dev.dma_mask = &dev->dev.coherent_dma_mask;
Russell Kingd5dc9272011-12-18 11:07:47 +0000598 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
Russell Kingd5dc9272011-12-18 11:07:47 +0000641 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
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)
Kay Sievers9d6b4c82009-03-24 16:38:22 -0700689 r &= strcmp(dev_name(dev), d->busid) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
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;
Leo Chen8afe0b92009-07-28 23:34:59 +0100738 u32 size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 if (!name)
741 name = dev->dev.driver->name;
742
Leo Chen8afe0b92009-07-28 23:34:59 +0100743 size = resource_size(&dev->res);
744
745 if (!request_mem_region(dev->res.start, size, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 ret = -EBUSY;
747
748 return ret;
749}
750
751/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300752 * amba_release_regions - release mem regions associated with device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * @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{
Leo Chen8afe0b92009-07-28 23:34:59 +0100759 u32 size;
760
761 size = resource_size(&dev->res);
762 release_mem_region(dev->res.start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
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);