summaryrefslogtreecommitdiffstats
path: root/arch/ppc/mach-mpc85xx/Kconfig
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2020-04-30 02:34:19 +0900
committerSascha Hauer <s.hauer@pengutronix.de>2020-05-04 08:34:16 +0200
commite25567856667ff8472322e8c238389b62a29eaba (patch)
tree58e4b105747e705b3ebf42478df3a068f4890313 /arch/ppc/mach-mpc85xx/Kconfig
parent2665fd16d0aa0f19602585de8d865a52a0cdf12a (diff)
downloadbarebox-e25567856667ff8472322e8c238389b62a29eaba.tar.gz
barebox-e25567856667ff8472322e8c238389b62a29eaba.tar.xz
ppc: rename arch/ppc/ to arch/powerpc/
In old days, Linux supported PowerPC with two arch directories, arch/ppc/ and arch/ppc64/. Linux commit 564ee7a5668e ("[PATCH] powerpc: Move arch/ppc*/kernel/vecemu.c to arch/powerpc") started the migration to arch/powerpc/, and commit 917f0af9e5a9 ("powerpc: Remove arch/ppc and include/asm-ppc") finished it. This commit aligns the directory name with the current Linux. I did 'git mv arch/ppc/ arch/powerpc/', and fixed up some hard-coded arch/ppc paths. Barebox has stuck to arch/ppc/ for a long time. To keep the backward compatibility, I added the following to the top Makefile. # Support ARCH=ppc for backward compatibility ifeq ($(ARCH),ppc) SRCARCH := powerpc endif Both ARCH=ppc and ARCH=powerpc work in the same way. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/ppc/mach-mpc85xx/Kconfig')
-rw-r--r--arch/ppc/mach-mpc85xx/Kconfig104
1 files changed, 0 insertions, 104 deletions
diff --git a/arch/ppc/mach-mpc85xx/Kconfig b/arch/ppc/mach-mpc85xx/Kconfig
deleted file mode 100644
index aa518b98fc..0000000000
--- a/arch/ppc/mach-mpc85xx/Kconfig
+++ /dev/null
@@ -1,104 +0,0 @@
-if ARCH_MPC85XX
-
-config MMU
- default y
-
-config BTB
- bool
- default y
-
-config TEXT_BASE
- hex
- default 0xeff80000 if P1010RDB || P2020RDB || P1022DS
- default 0xfff80000 if DA923RC
-
-config RESET_VECTOR_ADDRESS
- hex
- default 0xfffffffc if DA923RC
- default 0xeffffffc if P1010RDB || P2020RDB || P1022DS
-
-config MPC85xx
- bool
- default y
-
-config BOOKE
- bool
- default y
-
-config E500
- bool
- default y
-
-choice
- prompt "Select your board"
-config P1010RDB
- bool "P1010RDB"
- select P1010
- select DDR_SPD
- select FSL_DDR3
- help
- Say Y here if you are using the Freescale P1010RDB
-
-config P2020RDB
- bool "P2020RDB"
- select P2020
- select FSL_ELBC
- help
- Say Y here if you are using the Freescale P2020RDB
-
-config P1022DS
- bool "P1022DS"
- select P1022
- select DDR_SPD
- select FSL_DDR3
- select FSL_ELBC
- help
- Say Y here if you are using the Freescale P1022DS
-
-config DA923RC
- bool "DA923RC"
- select MPC8544
- select DDR_SPD
- select FSL_DDR2
- help
- Say Y here if you are using the GE Intelligent Platforms DA923RC
-endchoice
-endif
-
-config P1010
- select FSL_IFC
- select FSL_ERRATUM_IFC_A002769
- select FSL_ERRATUM_P1010_A003549
- select FSL_ERRATUM_IFC_A003399
- bool
-
-config P2020
- bool
-
-config P1022
- bool
-
-config MPC8544
- bool
-
-config FSL_DDR2
- bool
-
-config FSL_DDR3
- bool
-
-config FSL_IFC
- bool
-
-config FSL_ELBC
- bool
-
-config FSL_ERRATUM_IFC_A002769
- bool
-
-config FSL_ERRATUM_IFC_A003399
- bool
-
-config FSL_ERRATUM_P1010_A003549
- bool
-