Kconfig 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. menu "PowerPC architecture"
  2. depends on PPC
  3. config SYS_ARCH
  4. default "powerpc"
  5. choice
  6. prompt "CPU select"
  7. optional
  8. config MPC83xx
  9. bool "MPC83xx"
  10. select CREATE_ARCH_SYMLINK
  11. select SYS_FSL_HAS_SEC
  12. select SYS_FSL_SEC_BE
  13. select SYS_FSL_SEC_COMPAT_2
  14. config MPC85xx
  15. bool "MPC85xx"
  16. select CREATE_ARCH_SYMLINK
  17. select SYS_FSL_DDR
  18. select SYS_FSL_DDR_BE
  19. select BINMAN if OF_SEPARATE
  20. imply CMD_HASH
  21. imply CMD_IRQ
  22. imply USB_EHCI_HCD if USB
  23. config MPC86xx
  24. bool "MPC86xx"
  25. select SYS_FSL_DDR
  26. select SYS_FSL_DDR_BE
  27. imply CMD_REGINFO
  28. config MPC8xx
  29. bool "MPC8xx"
  30. select BOARD_EARLY_INIT_F
  31. imply CMD_REGINFO
  32. imply WDT_MPC8xx
  33. endchoice
  34. config HIGH_BATS
  35. bool "Enable high BAT registers"
  36. help
  37. Enable BATs (block address translation registers) 4-7 on machines
  38. that support them.
  39. source "arch/powerpc/cpu/mpc83xx/Kconfig"
  40. source "arch/powerpc/cpu/mpc85xx/Kconfig"
  41. source "arch/powerpc/cpu/mpc86xx/Kconfig"
  42. source "arch/powerpc/cpu/mpc8xx/Kconfig"
  43. endmenu