Lines Matching refs:cluster

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