Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. config TARGET_MPC8610HPCD
  12. bool "Support MPC8610HPCD"
  13. select ARCH_MPC8610
  14. config TARGET_MPC8641HPCN
  15. bool "Support MPC8641HPCN"
  16. select ARCH_MPC8641
  17. config TARGET_XPEDITE517X
  18. bool "Support xpedite517x"
  19. select ARCH_MPC8641
  20. endchoice
  21. config ARCH_MPC8610
  22. bool
  23. select FSL_LAW
  24. config ARCH_MPC8641
  25. bool
  26. select FSL_LAW
  27. config FSL_LAW
  28. bool
  29. help
  30. Use Freescale common code for Local Access Window
  31. config SYS_CCSRBAR_DEFAULT
  32. hex "Default CCSRBAR address"
  33. default 0xff700000 if ARCH_MPC8610 || ARCH_MPC8641
  34. help
  35. Default value of CCSRBAR comes from power-on-reset. It
  36. is fixed on each SoC. Some SoCs can have different value
  37. if changed by pre-boot regime. The value here must match
  38. the current value in SoC. If not sure, do not change.
  39. source "board/freescale/mpc8610hpcd/Kconfig"
  40. source "board/freescale/mpc8641hpcn/Kconfig"
  41. source "board/sbc8641d/Kconfig"
  42. source "board/xes/xpedite517x/Kconfig"
  43. endmenu