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