summaryrefslogtreecommitdiffstats
path: root/src/soc/nvidia/tegra210/include/soc/flow_ctrl.h
blob: b810a57b85f6e5e2ccfe87b89743553a7139177a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef _TEGRA210_FLOW_CTRL_H_
#define _TEGRA210_FLOW_CTRL_H_

#include <stdint.h>

void flowctrl_cpu_off(int cpu);
void flowctrl_cpu_on(int cpu);
void flowctrl_cpu_suspend(int cpu);
void flowctrl_write_cc4_ctrl(int cpu, uint32_t val);
void flowctrl_write_cpu_csr(int cpu, uint32_t val);
void flowctrl_write_cpu_halt(int cpu, uint32_t val);

#endif