diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/arch/powerpc/Kconfig | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/arch/powerpc/Kconfig')
-rw-r--r-- | roms/u-boot/arch/powerpc/Kconfig | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/roms/u-boot/arch/powerpc/Kconfig b/roms/u-boot/arch/powerpc/Kconfig new file mode 100644 index 000000000..133447648 --- /dev/null +++ b/roms/u-boot/arch/powerpc/Kconfig @@ -0,0 +1,54 @@ +menu "PowerPC architecture" + depends on PPC + +config SYS_ARCH + default "powerpc" + +choice + prompt "CPU select" + optional + +config MPC83xx + bool "MPC83xx" + select CREATE_ARCH_SYMLINK + select SYS_FSL_HAS_SEC + select SYS_FSL_SEC_BE + select SYS_FSL_SEC_COMPAT_2 + +config MPC85xx + bool "MPC85xx" + select CREATE_ARCH_SYMLINK + select SYS_FSL_DDR + select SYS_FSL_DDR_BE + select BINMAN if OF_SEPARATE + imply CMD_HASH + imply CMD_IRQ + imply USB_EHCI_HCD if USB + +config MPC86xx + bool "MPC86xx" + select SYS_FSL_DDR + select SYS_FSL_DDR_BE + imply CMD_REGINFO + +config MPC8xx + bool "MPC8xx" + select BOARD_EARLY_INIT_F + imply CMD_REGINFO + imply WDT_MPC8xx + +endchoice + +config HIGH_BATS + bool "Enable high BAT registers" + help + Enable BATs (block address translation registers) 4-7 on machines + that support them. + +source "arch/powerpc/cpu/mpc83xx/Kconfig" +source "arch/powerpc/cpu/mpc85xx/Kconfig" +source "arch/powerpc/cpu/mpc86xx/Kconfig" +source "arch/powerpc/cpu/mpc8xx/Kconfig" +source "arch/powerpc/lib/Kconfig" + +endmenu |