Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. menu "Panasonic UniPhier platform"
  2. depends on ARCH_UNIPHIER
  3. config SYS_SOC
  4. default "uniphier"
  5. config SYS_CONFIG_NAME
  6. default "uniphier"
  7. config UNIPHIER_SMP
  8. bool
  9. choice
  10. prompt "UniPhier SoC select"
  11. config MACH_PH1_PRO4
  12. bool "PH1-Pro4"
  13. select UNIPHIER_SMP
  14. config MACH_PH1_LD4
  15. bool "PH1-LD4"
  16. config MACH_PH1_SLD8
  17. bool "PH1-sLD8"
  18. endchoice
  19. choice
  20. prompt "UniPhier Support Card select"
  21. optional
  22. config PFC_MICRO_SUPPORT_CARD
  23. bool "Support card with PFC CPLD"
  24. help
  25. This option provides support for the expansion board with PFC
  26. original address mapping.
  27. Say Y to use the on-board UART, Ether, LED devices.
  28. config DCC_MICRO_SUPPORT_CARD
  29. bool "Support card with DCC CPLD"
  30. help
  31. This option provides support for the expansion board with DCC-
  32. arranged address mapping that is compatible with legacy UniPhier
  33. reference boards.
  34. Say Y to use the on-board UART, Ether, LED devices.
  35. endchoice
  36. config SYS_MALLOC_F
  37. default y
  38. config SYS_MALLOC_F_LEN
  39. default 0x400
  40. config CMD_PINMON
  41. bool "Enable boot mode pins monitor command"
  42. default y
  43. help
  44. The command "pinmon" shows the state of the boot mode pins.
  45. The boot mode pins are latched when the system reset is deasserted
  46. and determine which device the system should load a boot image from.
  47. config CMD_DDRPHY_DUMP
  48. bool "Enable dump command of DDR PHY parameters"
  49. depends on !SPL_BUILD
  50. help
  51. The command "ddrphy" shows the resulting parameters of DDR PHY
  52. training; it is useful for the evaluation of DDR PHY training.
  53. choice
  54. prompt "DDR3 Frequency select"
  55. config DDR_FREQ_1600
  56. bool "DDR3 1600"
  57. depends on MACH_PH1_PRO4 || MACH_PH1_LD4
  58. config DDR_FREQ_1333
  59. bool "DDR3 1333"
  60. depends on MACH_PH1_LD4 || MACH_PH1_SLD8
  61. endchoice
  62. config DDR_FREQ
  63. int
  64. default 1333 if DDR_FREQ_1333
  65. default 1600 if DDR_FREQ_1600
  66. endmenu