1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef _TEGRA210_FLOW_CTRL_H_ 4 #define _TEGRA210_FLOW_CTRL_H_ 5 6 #include <stdint.h> 7 8 void flowctrl_cpu_off(int cpu); 9 void flowctrl_cpu_on(int cpu); 10 void flowctrl_cpu_suspend(int cpu); 11 void flowctrl_write_cc4_ctrl(int cpu, uint32_t val); 12 void flowctrl_write_cpu_csr(int cpu, uint32_t val); 13 void flowctrl_write_cpu_halt(int cpu, uint32_t val); 14 15 #endif 16