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