Lines Matching refs:cluster

18 void mcucfg_disable_gic_wakeup(unsigned int cluster, unsigned int cpu)  in mcucfg_disable_gic_wakeup()  argument
23 void mcucfg_enable_gic_wakeup(unsigned int cluster, unsigned int cpu) in mcucfg_enable_gic_wakeup() argument
30 void mcucfg_set_bootaddr(unsigned int cluster, unsigned int cpu, uintptr_t bootaddr) in mcucfg_set_bootaddr() argument
32 assert(cluster == 0U); in mcucfg_set_bootaddr()
34 mmio_write_32(per_cpu(cluster, cpu, MCUCFG_BOOTADDR), bootaddr); in mcucfg_set_bootaddr()
37 uintptr_t mcucfg_get_bootaddr(unsigned int cluster, unsigned int cpu) in mcucfg_get_bootaddr() argument
39 assert(cluster == 0U); in mcucfg_get_bootaddr()
41 return (uintptr_t)mmio_read_32(per_cpu(cluster, cpu, MCUCFG_BOOTADDR)); in mcucfg_get_bootaddr()
44 void mcucfg_init_archstate(unsigned int cluster, unsigned int cpu, bool arm64) in mcucfg_init_archstate() argument
48 assert(cluster == 0U); in mcucfg_init_archstate()
50 reg = per_cluster(cluster, MCUCFG_INITARCH); in mcucfg_init_archstate()
73 bool spm_get_cluster_powerstate(unsigned int cluster) in spm_get_cluster_powerstate() argument
75 assert(cluster == 0U); in spm_get_cluster_powerstate()
80 bool spm_get_cpu_powerstate(unsigned int cluster, unsigned int cpu) in spm_get_cpu_powerstate() argument
84 assert(cluster == 0U); in spm_get_cpu_powerstate()
124 void spm_poweron_cpu(unsigned int cluster, unsigned int cpu) in spm_poweron_cpu() argument
130 mmio_setbits_32(per_cpu(cluster, cpu, SPM_CPU_PWR), PWR_ON); in spm_poweron_cpu()
133 while (!spm_get_cpu_powerstate(cluster, cpu)) in spm_poweron_cpu()
146 void spm_poweroff_cpu(unsigned int cluster, unsigned int cpu) in spm_poweroff_cpu() argument
149 mmio_clrbits_32(per_cpu(cluster, cpu, SPM_CPU_PWR), PWR_ON); in spm_poweroff_cpu()
157 void spm_poweroff_cluster(unsigned int cluster) in spm_poweroff_cluster() argument
168 void spm_poweron_cluster(unsigned int cluster) in spm_poweron_cluster() argument