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