Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 1 | if ARCH_UNIPHIER |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 2 | |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 3 | config SYS_CONFIG_NAME |
Masahiro Yamada | f5d0b9b | 2014-12-06 00:03:22 +0900 | [diff] [blame] | 4 | default "uniphier" |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 5 | |
Masahiro Yamada | 84b3584 | 2014-12-06 00:03:20 +0900 | [diff] [blame] | 6 | config UNIPHIER_SMP |
| 7 | bool |
| 8 | |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 9 | choice |
| 10 | prompt "UniPhier SoC select" |
Masahiro Yamada | 7fff91f | 2015-05-29 17:30:06 +0900 | [diff] [blame] | 11 | default MACH_PH1_PRO4 |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 12 | |
Masahiro Yamada | 3365b4e | 2015-07-21 14:04:22 +0900 | [diff] [blame] | 13 | config MACH_PH1_SLD3 |
| 14 | bool "PH1-sLD3" |
Masahiro Yamada | 84b3584 | 2014-12-06 00:03:20 +0900 | [diff] [blame] | 15 | select UNIPHIER_SMP |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 16 | |
| 17 | config MACH_PH1_LD4 |
| 18 | bool "PH1-LD4" |
| 19 | |
Masahiro Yamada | 3365b4e | 2015-07-21 14:04:22 +0900 | [diff] [blame] | 20 | config MACH_PH1_PRO4 |
| 21 | bool "PH1-Pro4" |
| 22 | select UNIPHIER_SMP |
| 23 | |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 24 | config MACH_PH1_SLD8 |
| 25 | bool "PH1-sLD8" |
| 26 | |
| 27 | endchoice |
| 28 | |
Masahiro Yamada | 3201455 | 2014-12-06 00:03:21 +0900 | [diff] [blame] | 29 | choice |
| 30 | prompt "UniPhier Support Card select" |
| 31 | optional |
| 32 | |
| 33 | config PFC_MICRO_SUPPORT_CARD |
| 34 | bool "Support card with PFC CPLD" |
| 35 | help |
| 36 | This option provides support for the expansion board with PFC |
| 37 | original address mapping. |
| 38 | |
| 39 | Say Y to use the on-board UART, Ether, LED devices. |
| 40 | |
| 41 | config DCC_MICRO_SUPPORT_CARD |
| 42 | bool "Support card with DCC CPLD" |
| 43 | help |
| 44 | This option provides support for the expansion board with DCC- |
| 45 | arranged address mapping that is compatible with legacy UniPhier |
| 46 | reference boards. |
| 47 | |
| 48 | Say Y to use the on-board UART, Ether, LED devices. |
| 49 | |
| 50 | endchoice |
| 51 | |
Masahiro Yamada | 59ca553 | 2014-10-20 20:45:22 +0900 | [diff] [blame] | 52 | config CMD_PINMON |
| 53 | bool "Enable boot mode pins monitor command" |
Masahiro Yamada | 59ca553 | 2014-10-20 20:45:22 +0900 | [diff] [blame] | 54 | default y |
| 55 | help |
| 56 | The command "pinmon" shows the state of the boot mode pins. |
| 57 | The boot mode pins are latched when the system reset is deasserted |
| 58 | and determine which device the system should load a boot image from. |
| 59 | |
Masahiro Yamada | c67b2af | 2014-12-19 20:20:53 +0900 | [diff] [blame] | 60 | config CMD_DDRPHY_DUMP |
| 61 | bool "Enable dump command of DDR PHY parameters" |
Masahiro Yamada | c67b2af | 2014-12-19 20:20:53 +0900 | [diff] [blame] | 62 | help |
| 63 | The command "ddrphy" shows the resulting parameters of DDR PHY |
| 64 | training; it is useful for the evaluation of DDR PHY training. |
| 65 | |
Masahiro Yamada | a69e037 | 2014-11-06 20:16:42 +0900 | [diff] [blame] | 66 | choice |
| 67 | prompt "DDR3 Frequency select" |
Masahiro Yamada | a69e037 | 2014-11-06 20:16:42 +0900 | [diff] [blame] | 68 | |
| 69 | config DDR_FREQ_1600 |
| 70 | bool "DDR3 1600" |
Masahiro Yamada | 3365b4e | 2015-07-21 14:04:22 +0900 | [diff] [blame] | 71 | depends on MACH_PH1_SLD3 || MACH_PH1_LD4 || MACH_PH1_PRO4 |
Masahiro Yamada | a69e037 | 2014-11-06 20:16:42 +0900 | [diff] [blame] | 72 | |
| 73 | config DDR_FREQ_1333 |
| 74 | bool "DDR3 1333" |
Masahiro Yamada | 3365b4e | 2015-07-21 14:04:22 +0900 | [diff] [blame] | 75 | depends on MACH_PH1_SLD3 || MACH_PH1_LD4 || MACH_PH1_SLD8 |
Masahiro Yamada | a69e037 | 2014-11-06 20:16:42 +0900 | [diff] [blame] | 76 | |
| 77 | endchoice |
| 78 | |
| 79 | config DDR_FREQ |
| 80 | int |
| 81 | default 1333 if DDR_FREQ_1333 |
| 82 | default 1600 if DDR_FREQ_1600 |
| 83 | |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 84 | endif |