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