xref: /linux/arch/powerpc/kernel/cpu_specs.h (revision e320a76db4b02e1160eb4bfb17d8d1bc57979955)
1*e320a76dSChristophe Leroy /* SPDX-License-Identifier: GPL-2.0-or-later */
2*e320a76dSChristophe Leroy 
3*e320a76dSChristophe Leroy #ifdef CONFIG_40x
4*e320a76dSChristophe Leroy #include "cpu_specs_40x.h"
5*e320a76dSChristophe Leroy #endif
6*e320a76dSChristophe Leroy 
7*e320a76dSChristophe Leroy #ifdef CONFIG_PPC_47x
8*e320a76dSChristophe Leroy #include "cpu_specs_47x.h"
9*e320a76dSChristophe Leroy #elif defined(CONFIG_44x)
10*e320a76dSChristophe Leroy #include "cpu_specs_44x.h"
11*e320a76dSChristophe Leroy #endif
12*e320a76dSChristophe Leroy 
13*e320a76dSChristophe Leroy #ifdef CONFIG_PPC_8xx
14*e320a76dSChristophe Leroy #include "cpu_specs_8xx.h"
15*e320a76dSChristophe Leroy #endif
16*e320a76dSChristophe Leroy 
17*e320a76dSChristophe Leroy #ifdef CONFIG_E500
18*e320a76dSChristophe Leroy #include "cpu_specs_e500.h"
19*e320a76dSChristophe Leroy #endif
20*e320a76dSChristophe Leroy 
21*e320a76dSChristophe Leroy #ifdef CONFIG_PPC_BOOK3S_32
22*e320a76dSChristophe Leroy #include "cpu_specs_book3s_32.h"
23*e320a76dSChristophe Leroy #endif
24*e320a76dSChristophe Leroy 
25*e320a76dSChristophe Leroy #ifdef CONFIG_PPC_BOOK3S_64
26*e320a76dSChristophe Leroy #include "cpu_specs_book3s_64.h"
27*e320a76dSChristophe Leroy #endif
28