diff options
author | Pali Rohár <pali@kernel.org> | 2022-05-02 18:29:25 +0200 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2022-06-20 09:18:26 +0800 |
commit | 39f42fe20a8239c6a878f7fac03e758b2117009e (patch) | |
tree | ea17028082af7e00767ed1e14d5265f6a9f73167 /arch/Kconfig | |
parent | 26153d0b054874c8ed2f5ef98231e4397175f8bd (diff) | |
download | u-boot-39f42fe20a8239c6a878f7fac03e758b2117009e.tar.gz u-boot-39f42fe20a8239c6a878f7fac03e758b2117009e.tar.bz2 u-boot-39f42fe20a8239c6a878f7fac03e758b2117009e.zip |
powerpc: mpc85xx: Set default SYS_IMMR value for P1/P2 CPUs
This reduce usage of per-board custom settings.
Signed-off-by: Pali Rohár <pali@kernel.org>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 12de8a1165..b396263e3b 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -371,6 +371,9 @@ config SYS_IMMR default 0xF0000000 if ARCH_MPC8313 default 0xE0000000 if MPC83xx && !ARCH_MPC8313 default 0x01000000 if ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3 + default 0xFFE00000 if ARCH_P1010 || ARCH_P1011 || ARCH_P1020 || \ + ARCH_P1021 || ARCH_P1024 || ARCH_P1025 || \ + ARCH_P2020 default SYS_CCSRBAR_DEFAULT help Address for the Internal Memory-Mapped Registers (IMMR) window used |