Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|---|
| 2 | /* |
| 3 | * Copyright (C) 2020 IBM Corporation |
| 4 | */ |
| 5 | |
| 6 | #ifndef _ASM_POWERPC_CPU_SETUP_H |
| 7 | #define _ASM_POWERPC_CPU_SETUP_H |
| 8 | void __setup_cpu_power7(unsigned long offset, struct cpu_spec *spec); |
| 9 | void __setup_cpu_power8(unsigned long offset, struct cpu_spec *spec); |
| 10 | void __setup_cpu_power9(unsigned long offset, struct cpu_spec *spec); |
| 11 | void __setup_cpu_power10(unsigned long offset, struct cpu_spec *spec); |
| 12 | void __restore_cpu_power7(void); |
| 13 | void __restore_cpu_power8(void); |
| 14 | void __restore_cpu_power9(void); |
| 15 | void __restore_cpu_power10(void); |
| 16 | |
| 17 | void __setup_cpu_e500v1(unsigned long offset, struct cpu_spec *spec); |
| 18 | void __setup_cpu_e500v2(unsigned long offset, struct cpu_spec *spec); |
| 19 | void __setup_cpu_e500mc(unsigned long offset, struct cpu_spec *spec); |
| 20 | void __setup_cpu_440ep(unsigned long offset, struct cpu_spec *spec); |
| 21 | void __setup_cpu_440epx(unsigned long offset, struct cpu_spec *spec); |
| 22 | void __setup_cpu_440gx(unsigned long offset, struct cpu_spec *spec); |
| 23 | void __setup_cpu_440grx(unsigned long offset, struct cpu_spec *spec); |
| 24 | void __setup_cpu_440spe(unsigned long offset, struct cpu_spec *spec); |
| 25 | void __setup_cpu_440x5(unsigned long offset, struct cpu_spec *spec); |
| 26 | void __setup_cpu_460ex(unsigned long offset, struct cpu_spec *spec); |
| 27 | void __setup_cpu_460gt(unsigned long offset, struct cpu_spec *spec); |
| 28 | void __setup_cpu_460sx(unsigned long offset, struct cpu_spec *spec); |
| 29 | void __setup_cpu_apm821xx(unsigned long offset, struct cpu_spec *spec); |
| 30 | void __setup_cpu_603(unsigned long offset, struct cpu_spec *spec); |
| 31 | void __setup_cpu_604(unsigned long offset, struct cpu_spec *spec); |
| 32 | void __setup_cpu_750(unsigned long offset, struct cpu_spec *spec); |
| 33 | void __setup_cpu_750cx(unsigned long offset, struct cpu_spec *spec); |
| 34 | void __setup_cpu_750fx(unsigned long offset, struct cpu_spec *spec); |
| 35 | void __setup_cpu_7400(unsigned long offset, struct cpu_spec *spec); |
| 36 | void __setup_cpu_7410(unsigned long offset, struct cpu_spec *spec); |
| 37 | void __setup_cpu_745x(unsigned long offset, struct cpu_spec *spec); |
| 38 | |
| 39 | void __setup_cpu_ppc970(unsigned long offset, struct cpu_spec *spec); |
| 40 | void __setup_cpu_ppc970MP(unsigned long offset, struct cpu_spec *spec); |
| 41 | void __setup_cpu_pa6t(unsigned long offset, struct cpu_spec *spec); |
| 42 | void __restore_cpu_pa6t(void); |
| 43 | void __restore_cpu_ppc970(void); |
| 44 | |
| 45 | void __setup_cpu_e5500(unsigned long offset, struct cpu_spec *spec); |
| 46 | void __setup_cpu_e6500(unsigned long offset, struct cpu_spec *spec); |
| 47 | void __restore_cpu_e5500(void); |
| 48 | void __restore_cpu_e6500(void); |
| 49 | #endif /* _ASM_POWERPC_CPU_SETUP_H */ |
| 50 |
Warning: This file is not a C or C++ file. It does not have highlighting.
