Lines Matching defs:cluster
28 void sspm_cluster_pwr_off_notify(uint32_t cluster)
30 mcdi_mbox_write(MCDI_MBOX_CLUSTER_0_ATF_ACTION_DONE + cluster, 1);
33 void sspm_cluster_pwr_on_notify(uint32_t cluster)
35 mcdi_mbox_write(MCDI_MBOX_CLUSTER_0_ATF_ACTION_DONE + cluster, 0);
88 static uint32_t target_mask(int cluster, int cpu_idx, bool on)
93 if (cluster >= 0)
94 t |= BIT(cluster + CLUSTER_ON_OFS);
99 if (cluster >= 0)
100 t |= BIT(cluster + CLUSTER_OFF_OFS);
109 void mcdi_pause_clr(int cluster, int cpu_idx, bool on)
111 uint32_t tgt = target_mask(cluster, cpu_idx, on);
118 void mcdi_pause_set(int cluster, int cpu_idx, bool on)
120 uint32_t tgt = target_mask(cluster, cpu_idx, on);
155 void mcdi_hotplug_wait_ack(int cluster, int cpu_idx, bool on)
157 uint32_t tgt = target_mask(cluster, cpu_idx, on);
165 void mcdi_hotplug_clr(int cluster, int cpu_idx, bool on)
167 uint32_t tgt = target_mask(cluster, cpu_idx, on);
183 void mcdi_hotplug_set(int cluster, int cpu_idx, bool on)
185 uint32_t tgt = target_mask(cluster, cpu_idx, on);