732b32daef
Now that 40x platforms have gone, remove support for 40x in the core of powerpc arch. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20240628121201.130802-4-mpe@ellerman.id.au
26 lines
475 B
C
26 lines
475 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#ifdef CONFIG_PPC_47x
|
|
#include "cpu_specs_47x.h"
|
|
#elif defined(CONFIG_44x)
|
|
#include "cpu_specs_44x.h"
|
|
#endif
|
|
|
|
#ifdef CONFIG_PPC_8xx
|
|
#include "cpu_specs_8xx.h"
|
|
#endif
|
|
|
|
#ifdef CONFIG_PPC_E500MC
|
|
#include "cpu_specs_e500mc.h"
|
|
#elif defined(CONFIG_PPC_85xx)
|
|
#include "cpu_specs_85xx.h"
|
|
#endif
|
|
|
|
#ifdef CONFIG_PPC_BOOK3S_32
|
|
#include "cpu_specs_book3s_32.h"
|
|
#endif
|
|
|
|
#ifdef CONFIG_PPC_BOOK3S_64
|
|
#include "cpu_specs_book3s_64.h"
|
|
#endif
|