Lines Matching refs:bus_id
41 uint32_t bus_id; in soc_pmc_peripheral_enable() local
48 bus_id = bridge_peripheral_ids[bus_grp]; in soc_pmc_peripheral_enable()
50 if (per_idx >= bridge_peripheral_instances[bus_id]) { in soc_pmc_peripheral_enable()
54 mask = *(&PM->CPUMASK + bus_id); in soc_pmc_peripheral_enable()
59 (4 * bus_id)); in soc_pmc_peripheral_enable()
60 *(&PM->CPUMASK + bus_id) = mask; in soc_pmc_peripheral_enable()
67 uint32_t bus_id; in soc_pmc_peripheral_disable() local
74 bus_id = bridge_peripheral_ids[bus_grp]; in soc_pmc_peripheral_disable()
76 if (per_idx >= bridge_peripheral_instances[bus_id]) { in soc_pmc_peripheral_disable()
80 mask = *(&PM->CPUMASK + bus_id); in soc_pmc_peripheral_disable()
85 (4 * bus_id)); in soc_pmc_peripheral_disable()
86 *(&PM->CPUMASK + bus_id) = mask; in soc_pmc_peripheral_disable()
93 uint32_t bus_id; in soc_pmc_peripheral_is_enabled() local
100 bus_id = bridge_peripheral_ids[bus_grp]; in soc_pmc_peripheral_is_enabled()
102 if (per_idx >= bridge_peripheral_instances[bus_id]) { in soc_pmc_peripheral_is_enabled()
106 mask = *(&PM->CPUMASK + bus_id); in soc_pmc_peripheral_is_enabled()