Kconfig 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. if ARCH_UNIPHIER
  2. config SYS_CONFIG_NAME
  3. default "uniphier"
  4. choice
  5. prompt "UniPhier SoC select"
  6. default ARCH_UNIPHIER_PH1_PRO4
  7. config ARCH_UNIPHIER_PH1_SLD3
  8. bool "UniPhier PH1-sLD3 SoC"
  9. select CPU_V7
  10. config ARCH_UNIPHIER_LD4_SLD8
  11. bool "UniPhier PH1-LD4/PH1-sLD8 SoC"
  12. select CPU_V7
  13. config ARCH_UNIPHIER_PH1_PRO4
  14. bool "UniPhier PH1-Pro4 SoC"
  15. select CPU_V7
  16. config ARCH_UNIPHIER_PRO5_PXS2_LD6B
  17. bool "UniPhier PH1-Pro5/ProXstream2/PH1-LD6b SoC"
  18. select CPU_V7
  19. endchoice
  20. config ARCH_UNIPHIER_PH1_LD4
  21. bool "Enable UniPhier PH1-LD4 SoC support"
  22. depends on ARCH_UNIPHIER_LD4_SLD8
  23. default y
  24. config ARCH_UNIPHIER_PH1_SLD8
  25. bool "Enable UniPhier PH1-sLD8 SoC support"
  26. depends on ARCH_UNIPHIER_LD4_SLD8
  27. default y
  28. config ARCH_UNIPHIER_PH1_PRO5
  29. bool "Enable UniPhier PH1-Pro5 SoC support"
  30. depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
  31. default y
  32. config ARCH_UNIPHIER_PROXSTREAM2
  33. bool "Enable UniPhier ProXstream2 SoC support"
  34. depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
  35. default y
  36. config ARCH_UNIPHIER_PH1_LD6B
  37. bool "Enable UniPhier PH1-LD6b SoC support"
  38. depends on ARCH_UNIPHIER_PRO5_PXS2_LD6B
  39. default y
  40. config MICRO_SUPPORT_CARD
  41. bool "Use Micro Support Card"
  42. help
  43. This option provides support for the expansion board, available
  44. on some UniPhier reference boards.
  45. Say Y to use the on-board UART, Ether, LED devices.
  46. config CMD_PINMON
  47. bool "Enable boot mode pins monitor command"
  48. default y
  49. help
  50. The command "pinmon" shows the state of the boot mode pins.
  51. The boot mode pins are latched when the system reset is deasserted
  52. and determine which device the system should load a boot image from.
  53. config CMD_DDRPHY_DUMP
  54. bool "Enable dump command of DDR PHY parameters"
  55. depends on ARCH_UNIPHIER_PH1_LD4 || ARCH_UNIPHIER_PH1_PRO4 || \
  56. ARCH_UNIPHIER_PH1_SLD8
  57. help
  58. The command "ddrphy" shows the resulting parameters of DDR PHY
  59. training; it is useful for the evaluation of DDR PHY training.
  60. config CMD_DDRMPHY_DUMP
  61. bool "Enable dump command of DDR Multi PHY parameters"
  62. depends on ARCH_UNIPHIER_PROXSTREAM2 || ARCH_UNIPHIER_PH1_LD6B
  63. help
  64. The command "ddrmphy" shows the resulting parameters of DDR Multi PHY
  65. training; it is useful for the evaluation of DDR Multi PHY training.
  66. endif