common: Move older CPU functions to their own header
[platform/kernel/u-boot.git] / include / cpu_func.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2000-2009
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  * Copyright 2019 Google LLC
6  */
7
8 #ifndef __CPU_LEGACY_H
9 #define __CPU_LEGACY_H
10
11 #include <linux/types.h>
12
13 /*
14  * Multicore arch functions
15  *
16  * These should be moved to use the CPU uclass.
17  */
18 int cpu_status(u32 nr);
19 int cpu_reset(u32 nr);
20 int cpu_disable(u32 nr);
21 int cpu_release(u32 nr, int argc, char * const argv[]);
22
23 #endif