| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | |
| 3 | #ifdef CONFIG_PPC_47x |
| 4 | #include "cpu_specs_47x.h" |
| 5 | #elif defined(CONFIG_44x) |
| 6 | #include "cpu_specs_44x.h" |
| 7 | #endif |
| 8 | |
| 9 | #ifdef CONFIG_PPC_8xx |
| 10 | #include "cpu_specs_8xx.h" |
| 11 | #endif |
| 12 | |
| 13 | #ifdef CONFIG_PPC_E500MC |
| 14 | #include "cpu_specs_e500mc.h" |
| 15 | #elif defined(CONFIG_PPC_85xx) |
| 16 | #include "cpu_specs_85xx.h" |
| 17 | #endif |
| 18 | |
| 19 | #ifdef CONFIG_PPC_BOOK3S_32 |
| 20 | #include "cpu_specs_book3s_32.h" |
| 21 | #endif |
| 22 | |
| 23 | #ifdef CONFIG_PPC_BOOK3S_64 |
| 24 | #include "cpu_specs_book3s_64.h" |
| 25 | #endif |
| 26 | |