Lines Matching +full:coresight +full:- +full:dynamic +full:- +full:replicator
1 // SPDX-License-Identifier: GPL-2.0-only
13 #include <linux/clk-provider.h>
24 {"ARMH0330", 0}, /* ARM DMA Controller DMA-330 */
25 {"ARMHC501", 0}, /* ARM CoreSight ETR */
26 {"ARMHC502", 0}, /* ARM CoreSight STM */
27 {"ARMHC503", 0}, /* ARM CoreSight Debug */
28 {"ARMHC979", 0}, /* ARM CoreSight TPIU */
29 {"ARMHC97C", 0}, /* ARM CoreSight SoC-400 TMC, SoC-600 ETF/ETB */
30 {"ARMHC98D", 0}, /* ARM CoreSight Dynamic Replicator */
31 {"ARMHC9CA", 0}, /* ARM CoreSight CATU */
32 {"ARMHC9FF", 0}, /* ARM CoreSight Dynamic Funnel */
60 if (adev->physical_node_count) in amba_handler_attach()
63 dev = amba_device_alloc(dev_name(&adev->dev), 0, 0); in amba_handler_attach()
65 dev_err(&adev->dev, "%s(): amba_device_alloc() failed\n", in amba_handler_attach()
67 return -ENOMEM; in amba_handler_attach()
76 switch (resource_type(rentry->res)) { in amba_handler_attach()
79 dev->res = *rentry->res; in amba_handler_attach()
80 dev->res.name = dev_name(&dev->dev); in amba_handler_attach()
86 dev->irq[irq_no++] = rentry->res->start; in amba_handler_attach()
89 dev_warn(&adev->dev, "Invalid resource\n"); in amba_handler_attach()
102 dev->dev.parent = acpi_get_first_physical_node(parent); in amba_handler_attach()
104 device_set_node(&dev->dev, acpi_fwnode_handle(adev)); in amba_handler_attach()
108 dev_err(&adev->dev, "%s(): amba_device_add() failed (%d)\n", in amba_handler_attach()