1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/common/amba.c
5 * Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved.
7 #include <linux/module.h>
8 #include <linux/init.h>
9 #include <linux/device.h>
10 #include <linux/string.h>
11 #include <linux/slab.h>
14 #include <linux/pm_runtime.h>
15 #include <linux/pm_domain.h>
16 #include <linux/amba/bus.h>
17 #include <linux/sizes.h>
18 #include <linux/limits.h>
19 #include <linux/clk/clk-conf.h>
20 #include <linux/platform_device.h>
21 #include <linux/reset.h>
22 #include <linux/of_irq.h>
23 #include <linux/of_device.h>
24 #include <linux/acpi.h>
25 #include <linux/iommu.h>
26 #include <linux/dma-map-ops.h>
28 #define to_amba_driver(d) container_of(d, struct amba_driver, drv)
30 /* called on periphid match and class 0x9 coresight device. */
32 amba_cs_uci_id_match(const struct amba_id *table, struct amba_device *dev)
35 struct amba_cs_uci_id *uci;
39 /* no table data or zero mask - return match on periphid */
40 if (!uci || (uci->devarch_mask == 0))
43 /* test against read devtype and masked devarch value */
44 ret = (dev->uci.devtype == uci->devtype) &&
45 ((dev->uci.devarch & uci->devarch_mask) == uci->devarch);
49 static const struct amba_id *
50 amba_lookup(const struct amba_id *table, struct amba_device *dev)
53 if (((dev->periphid & table->mask) == table->id) &&
54 ((dev->cid != CORESIGHT_CID) ||
55 (amba_cs_uci_id_match(table, dev))))
62 static int amba_get_enable_pclk(struct amba_device *pcdev)
66 pcdev->pclk = clk_get(&pcdev->dev, "apb_pclk");
67 if (IS_ERR(pcdev->pclk))
68 return PTR_ERR(pcdev->pclk);
70 ret = clk_prepare_enable(pcdev->pclk);
77 static void amba_put_disable_pclk(struct amba_device *pcdev)
79 clk_disable_unprepare(pcdev->pclk);
84 static ssize_t driver_override_show(struct device *_dev,
85 struct device_attribute *attr, char *buf)
87 struct amba_device *dev = to_amba_device(_dev);
91 len = sprintf(buf, "%s\n", dev->driver_override);
96 static ssize_t driver_override_store(struct device *_dev,
97 struct device_attribute *attr,
98 const char *buf, size_t count)
100 struct amba_device *dev = to_amba_device(_dev);
103 ret = driver_set_override(_dev, &dev->driver_override, buf, count);
109 static DEVICE_ATTR_RW(driver_override);
111 #define amba_attr_func(name,fmt,arg...) \
112 static ssize_t name##_show(struct device *_dev, \
113 struct device_attribute *attr, char *buf) \
115 struct amba_device *dev = to_amba_device(_dev); \
116 return sprintf(buf, fmt, arg); \
118 static DEVICE_ATTR_RO(name)
120 amba_attr_func(id, "%08x\n", dev->periphid);
121 amba_attr_func(resource, "\t%016llx\t%016llx\t%016lx\n",
122 (unsigned long long)dev->res.start, (unsigned long long)dev->res.end,
125 static struct attribute *amba_dev_attrs[] = {
127 &dev_attr_resource.attr,
128 &dev_attr_driver_override.attr,
131 ATTRIBUTE_GROUPS(amba_dev);
133 static int amba_read_periphid(struct amba_device *dev)
135 struct reset_control *rstc;
140 ret = dev_pm_domain_attach(&dev->dev, true);
142 dev_dbg(&dev->dev, "can't get PM domain: %d\n", ret);
146 ret = amba_get_enable_pclk(dev);
148 dev_dbg(&dev->dev, "can't get pclk: %d\n", ret);
153 * Find reset control(s) of the amba bus and de-assert them.
155 rstc = of_reset_control_array_get_optional_shared(dev->dev.of_node);
158 if (ret != -EPROBE_DEFER)
159 dev_err(&dev->dev, "can't get reset: %d\n", ret);
162 reset_control_deassert(rstc);
163 reset_control_put(rstc);
165 size = resource_size(&dev->res);
166 tmp = ioremap(dev->res.start, size);
173 * Read pid and cid based on size of resource
174 * they are located at end of region
176 for (pid = 0, i = 0; i < 4; i++)
177 pid |= (readl(tmp + size - 0x20 + 4 * i) & 255) << (i * 8);
178 for (cid = 0, i = 0; i < 4; i++)
179 cid |= (readl(tmp + size - 0x10 + 4 * i) & 255) << (i * 8);
181 if (cid == CORESIGHT_CID) {
182 /* set the base to the start of the last 4k block */
183 void __iomem *csbase = tmp + size - 4096;
185 dev->uci.devarch = readl(csbase + UCI_REG_DEVARCH_OFFSET);
186 dev->uci.devtype = readl(csbase + UCI_REG_DEVTYPE_OFFSET) & 0xff;
189 if (cid == AMBA_CID || cid == CORESIGHT_CID) {
200 amba_put_disable_pclk(dev);
202 dev_pm_domain_detach(&dev->dev, true);
207 static int amba_match(struct device *dev, struct device_driver *drv)
209 struct amba_device *pcdev = to_amba_device(dev);
210 struct amba_driver *pcdrv = to_amba_driver(drv);
212 if (!pcdev->periphid) {
213 int ret = amba_read_periphid(pcdev);
216 * Returning any error other than -EPROBE_DEFER from bus match
217 * can cause driver registration failure. So, if there's a
218 * permanent failure in reading pid and cid, simply map it to
222 return -EPROBE_DEFER;
223 dev_set_uevent_suppress(dev, false);
224 kobject_uevent(&dev->kobj, KOBJ_ADD);
227 /* When driver_override is set, only bind to the matching driver */
228 if (pcdev->driver_override)
229 return !strcmp(pcdev->driver_override, drv->name);
231 return amba_lookup(pcdrv->id_table, pcdev) != NULL;
234 static int amba_uevent(struct device *dev, struct kobj_uevent_env *env)
236 struct amba_device *pcdev = to_amba_device(dev);
239 retval = add_uevent_var(env, "AMBA_ID=%08x", pcdev->periphid);
243 retval = add_uevent_var(env, "MODALIAS=amba:d%08X", pcdev->periphid);
247 static int of_amba_device_decode_irq(struct amba_device *dev)
249 struct device_node *node = dev->dev.of_node;
252 if (IS_ENABLED(CONFIG_OF_IRQ) && node) {
253 /* Decode the IRQs and address ranges */
254 for (i = 0; i < AMBA_NR_IRQS; i++) {
255 irq = of_irq_get(node, i);
257 if (irq == -EPROBE_DEFER)
270 * These are the device model conversion veneers; they convert the
271 * device model structures to our more specific structures.
273 static int amba_probe(struct device *dev)
275 struct amba_device *pcdev = to_amba_device(dev);
276 struct amba_driver *pcdrv = to_amba_driver(dev->driver);
277 const struct amba_id *id = amba_lookup(pcdrv->id_table, pcdev);
281 ret = of_amba_device_decode_irq(pcdev);
285 ret = of_clk_set_defaults(dev->of_node, false);
289 ret = dev_pm_domain_attach(dev, true);
293 ret = amba_get_enable_pclk(pcdev);
295 dev_pm_domain_detach(dev, true);
299 pm_runtime_get_noresume(dev);
300 pm_runtime_set_active(dev);
301 pm_runtime_enable(dev);
303 ret = pcdrv->probe(pcdev, id);
307 pm_runtime_disable(dev);
308 pm_runtime_set_suspended(dev);
309 pm_runtime_put_noidle(dev);
311 amba_put_disable_pclk(pcdev);
312 dev_pm_domain_detach(dev, true);
318 static void amba_remove(struct device *dev)
320 struct amba_device *pcdev = to_amba_device(dev);
321 struct amba_driver *drv = to_amba_driver(dev->driver);
323 pm_runtime_get_sync(dev);
326 pm_runtime_put_noidle(dev);
328 /* Undo the runtime PM settings in amba_probe() */
329 pm_runtime_disable(dev);
330 pm_runtime_set_suspended(dev);
331 pm_runtime_put_noidle(dev);
333 amba_put_disable_pclk(pcdev);
334 dev_pm_domain_detach(dev, true);
337 static void amba_shutdown(struct device *dev)
339 struct amba_driver *drv;
344 drv = to_amba_driver(dev->driver);
346 drv->shutdown(to_amba_device(dev));
349 static int amba_dma_configure(struct device *dev)
351 struct amba_driver *drv = to_amba_driver(dev->driver);
352 enum dev_dma_attr attr;
356 ret = of_dma_configure(dev, dev->of_node, true);
357 } else if (has_acpi_companion(dev)) {
358 attr = acpi_get_dma_attr(to_acpi_device_node(dev->fwnode));
359 ret = acpi_dma_configure(dev, attr);
362 if (!ret && !drv->driver_managed_dma) {
363 ret = iommu_device_use_default_domain(dev);
365 arch_teardown_dma_ops(dev);
371 static void amba_dma_cleanup(struct device *dev)
373 struct amba_driver *drv = to_amba_driver(dev->driver);
375 if (!drv->driver_managed_dma)
376 iommu_device_unuse_default_domain(dev);
381 * Hooks to provide runtime PM of the pclk (bus clock). It is safe to
382 * enable/disable the bus clock at runtime PM suspend/resume as this
383 * does not result in loss of context.
385 static int amba_pm_runtime_suspend(struct device *dev)
387 struct amba_device *pcdev = to_amba_device(dev);
388 int ret = pm_generic_runtime_suspend(dev);
390 if (ret == 0 && dev->driver) {
391 if (pm_runtime_is_irq_safe(dev))
392 clk_disable(pcdev->pclk);
394 clk_disable_unprepare(pcdev->pclk);
400 static int amba_pm_runtime_resume(struct device *dev)
402 struct amba_device *pcdev = to_amba_device(dev);
406 if (pm_runtime_is_irq_safe(dev))
407 ret = clk_enable(pcdev->pclk);
409 ret = clk_prepare_enable(pcdev->pclk);
410 /* Failure is probably fatal to the system, but... */
415 return pm_generic_runtime_resume(dev);
417 #endif /* CONFIG_PM */
419 static const struct dev_pm_ops amba_pm = {
420 .suspend = pm_generic_suspend,
421 .resume = pm_generic_resume,
422 .freeze = pm_generic_freeze,
423 .thaw = pm_generic_thaw,
424 .poweroff = pm_generic_poweroff,
425 .restore = pm_generic_restore,
427 amba_pm_runtime_suspend,
428 amba_pm_runtime_resume,
434 * Primecells are part of the Advanced Microcontroller Bus Architecture,
435 * so we call the bus "amba".
436 * DMA configuration for platform and AMBA bus is same. So here we reuse
437 * platform's DMA config routine.
439 struct bus_type amba_bustype = {
441 .dev_groups = amba_dev_groups,
443 .uevent = amba_uevent,
445 .remove = amba_remove,
446 .shutdown = amba_shutdown,
447 .dma_configure = amba_dma_configure,
448 .dma_cleanup = amba_dma_cleanup,
451 EXPORT_SYMBOL_GPL(amba_bustype);
453 static int __init amba_init(void)
455 return bus_register(&amba_bustype);
458 postcore_initcall(amba_init);
460 static int amba_proxy_probe(struct amba_device *adev,
461 const struct amba_id *id)
463 WARN(1, "Stub driver should never match any device.\n");
467 static const struct amba_id amba_stub_drv_ids[] = {
471 static struct amba_driver amba_proxy_drv = {
473 .name = "amba-proxy",
475 .probe = amba_proxy_probe,
476 .id_table = amba_stub_drv_ids,
479 static int __init amba_stub_drv_init(void)
481 if (!IS_ENABLED(CONFIG_MODULES))
485 * The amba_match() function will get called only if there is at least
486 * one amba driver registered. If all amba drivers are modules and are
487 * only loaded based on uevents, then we'll hit a chicken-and-egg
488 * situation where amba_match() is waiting on drivers and drivers are
489 * waiting on amba_match(). So, register a stub driver to make sure
490 * amba_match() is called even if no amba driver has been registered.
492 return amba_driver_register(&amba_proxy_drv);
494 late_initcall_sync(amba_stub_drv_init);
497 * amba_driver_register - register an AMBA device driver
498 * @drv: amba device driver structure
500 * Register an AMBA device driver with the Linux device model
501 * core. If devices pre-exist, the drivers probe function will
504 int amba_driver_register(struct amba_driver *drv)
509 drv->drv.bus = &amba_bustype;
511 return driver_register(&drv->drv);
513 EXPORT_SYMBOL(amba_driver_register);
516 * amba_driver_unregister - remove an AMBA device driver
517 * @drv: AMBA device driver structure to remove
519 * Unregister an AMBA device driver from the Linux device
520 * model. The device model will call the drivers remove function
521 * for each device the device driver is currently handling.
523 void amba_driver_unregister(struct amba_driver *drv)
525 driver_unregister(&drv->drv);
527 EXPORT_SYMBOL(amba_driver_unregister);
529 static void amba_device_release(struct device *dev)
531 struct amba_device *d = to_amba_device(dev);
534 release_resource(&d->res);
539 * amba_device_add - add a previously allocated AMBA device structure
540 * @dev: AMBA device allocated by amba_device_alloc
541 * @parent: resource parent for this devices resources
543 * Claim the resource, and read the device cell ID if not already
544 * initialized. Register the AMBA device with the Linux device
547 int amba_device_add(struct amba_device *dev, struct resource *parent)
551 ret = request_resource(parent, &dev->res);
555 /* If primecell ID isn't hard-coded, figure it out */
556 if (!dev->periphid) {
558 * AMBA device uevents require reading its pid and cid
559 * registers. To do this, the device must be on, clocked and
560 * out of reset. However in some cases those resources might
561 * not yet be available. If that's the case, we suppress the
562 * generation of uevents until we can read the pid and cid
563 * registers. See also amba_match().
565 if (amba_read_periphid(dev))
566 dev_set_uevent_suppress(&dev->dev, true);
569 ret = device_add(&dev->dev);
571 release_resource(&dev->res);
575 EXPORT_SYMBOL_GPL(amba_device_add);
577 static void amba_device_initialize(struct amba_device *dev, const char *name)
579 device_initialize(&dev->dev);
581 dev_set_name(&dev->dev, "%s", name);
582 dev->dev.release = amba_device_release;
583 dev->dev.bus = &amba_bustype;
584 dev->dev.dma_mask = &dev->dev.coherent_dma_mask;
585 dev->dev.dma_parms = &dev->dma_parms;
586 dev->res.name = dev_name(&dev->dev);
590 * amba_device_alloc - allocate an AMBA device
591 * @name: sysfs name of the AMBA device
592 * @base: base of AMBA device
593 * @size: size of AMBA device
595 * Allocate and initialize an AMBA device structure. Returns %NULL
598 struct amba_device *amba_device_alloc(const char *name, resource_size_t base,
601 struct amba_device *dev;
603 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
605 amba_device_initialize(dev, name);
606 dev->res.start = base;
607 dev->res.end = base + size - 1;
608 dev->res.flags = IORESOURCE_MEM;
613 EXPORT_SYMBOL_GPL(amba_device_alloc);
616 * amba_device_register - register an AMBA device
617 * @dev: AMBA device to register
618 * @parent: parent memory resource
620 * Setup the AMBA device, reading the cell ID if present.
621 * Claim the resource, and register the AMBA device with
622 * the Linux device manager.
624 int amba_device_register(struct amba_device *dev, struct resource *parent)
626 amba_device_initialize(dev, dev->dev.init_name);
627 dev->dev.init_name = NULL;
629 return amba_device_add(dev, parent);
631 EXPORT_SYMBOL(amba_device_register);
634 * amba_device_put - put an AMBA device
635 * @dev: AMBA device to put
637 void amba_device_put(struct amba_device *dev)
639 put_device(&dev->dev);
641 EXPORT_SYMBOL_GPL(amba_device_put);
644 * amba_device_unregister - unregister an AMBA device
645 * @dev: AMBA device to remove
647 * Remove the specified AMBA device from the Linux device
648 * manager. All files associated with this object will be
649 * destroyed, and device drivers notified that the device has
650 * been removed. The AMBA device's resources including
651 * the amba_device structure will be freed once all
652 * references to it have been dropped.
654 void amba_device_unregister(struct amba_device *dev)
656 device_unregister(&dev->dev);
658 EXPORT_SYMBOL(amba_device_unregister);
661 * amba_request_regions - request all mem regions associated with device
662 * @dev: amba_device structure for device
663 * @name: name, or NULL to use driver name
665 int amba_request_regions(struct amba_device *dev, const char *name)
671 name = dev->dev.driver->name;
673 size = resource_size(&dev->res);
675 if (!request_mem_region(dev->res.start, size, name))
680 EXPORT_SYMBOL(amba_request_regions);
683 * amba_release_regions - release mem regions associated with device
684 * @dev: amba_device structure for device
686 * Release regions claimed by a successful call to amba_request_regions.
688 void amba_release_regions(struct amba_device *dev)
692 size = resource_size(&dev->res);
693 release_mem_region(dev->res.start, size);
695 EXPORT_SYMBOL(amba_release_regions);