Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. menu "mpc86xx CPU"
  2. depends on MPC86xx
  3. config SYS_CPU
  4. default "mpc86xx"
  5. choice
  6. prompt "Target select"
  7. optional
  8. config TARGET_SBC8641D
  9. bool "Support sbc8641d"
  10. select ARCH_MPC8641
  11. select BOARD_EARLY_INIT_F
  12. endchoice
  13. config ARCH_MPC8610
  14. bool
  15. select FSL_LAW
  16. select SYS_FSL_HAS_DDR1
  17. select SYS_FSL_HAS_DDR2
  18. config ARCH_MPC8641
  19. bool
  20. select FSL_LAW
  21. select SYS_FSL_HAS_DDR1
  22. select SYS_FSL_HAS_DDR2
  23. config FSL_LAW
  24. bool
  25. help
  26. Use Freescale common code for Local Access Window
  27. config SYS_CCSRBAR_DEFAULT
  28. hex "Default CCSRBAR address"
  29. default 0xff700000 if ARCH_MPC8610 || ARCH_MPC8641
  30. help
  31. Default value of CCSRBAR comes from power-on-reset. It
  32. is fixed on each SoC. Some SoCs can have different value
  33. if changed by pre-boot regime. The value here must match
  34. the current value in SoC. If not sure, do not change.
  35. config SYS_FSL_NUM_LAWS
  36. int "Number of local access windows"
  37. default 10 if ARCH_MPC8610 || ARCH_MPC8641
  38. help
  39. Number of local access windows. This is fixed per SoC.
  40. If not sure, do not change.
  41. source "board/sbc8641d/Kconfig"
  42. endmenu