Lines Matching full:mask
29 1, /* CPU MASK Instances */
30 10, /* HSB MASK Instances */
31 24, /* PBA MASK Instances */
32 7, /* PBB MASK Instances */
33 5, /* PBC MASK Instances */
34 6, /* PBD MASK Instances */
42 uint32_t mask; in soc_pmc_peripheral_enable() local
54 mask = *(&PM->CPUMASK + bus_id); in soc_pmc_peripheral_enable()
55 mask |= (1U << per_idx); in soc_pmc_peripheral_enable()
60 *(&PM->CPUMASK + bus_id) = mask; in soc_pmc_peripheral_enable()
68 uint32_t mask; in soc_pmc_peripheral_disable() local
80 mask = *(&PM->CPUMASK + bus_id); in soc_pmc_peripheral_disable()
81 mask &= ~(1U << per_idx); in soc_pmc_peripheral_disable()
86 *(&PM->CPUMASK + bus_id) = mask; in soc_pmc_peripheral_disable()
94 uint32_t mask; in soc_pmc_peripheral_is_enabled() local
106 mask = *(&PM->CPUMASK + bus_id); in soc_pmc_peripheral_is_enabled()
108 return ((mask & (1U << per_idx)) > 0); in soc_pmc_peripheral_is_enabled()
111 void soc_pm_enable_pba_divmask(uint32_t mask) in soc_pm_enable_pba_divmask() argument
116 temp_mask |= mask; in soc_pm_enable_pba_divmask()