Kconfig 869 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 MPC8xx
  24. bool "MPC8xx"
  25. select BOARD_EARLY_INIT_F
  26. imply CMD_REGINFO
  27. imply WDT_MPC8xx
  28. endchoice
  29. config HIGH_BATS
  30. bool "Enable high BAT registers"
  31. help
  32. Enable BATs (block address translation registers) 4-7 on machines
  33. that support them.
  34. source "arch/powerpc/cpu/mpc83xx/Kconfig"
  35. source "arch/powerpc/cpu/mpc85xx/Kconfig"
  36. source "arch/powerpc/cpu/mpc8xx/Kconfig"
  37. source "arch/powerpc/lib/Kconfig"
  38. endmenu