Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 1 | menu "Panasonic UniPhier platform" |
| 2 | depends on ARCH_UNIPHIER |
| 3 | |
Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 4 | config SYS_SOC |
Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 5 | default "uniphier" |
| 6 | |
| 7 | config SYS_CONFIG_NAME |
Masahiro Yamada | 1e72b1c | 2014-12-06 00:03:22 +0900 | [diff] [blame^] | 8 | default "uniphier" |
Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 9 | |
Masahiro Yamada | a618561 | 2014-12-06 00:03:20 +0900 | [diff] [blame] | 10 | config UNIPHIER_SMP |
| 11 | bool |
| 12 | |
Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 13 | choice |
| 14 | prompt "UniPhier SoC select" |
| 15 | |
| 16 | config MACH_PH1_PRO4 |
| 17 | bool "PH1-Pro4" |
Masahiro Yamada | a618561 | 2014-12-06 00:03:20 +0900 | [diff] [blame] | 18 | select UNIPHIER_SMP |
Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 19 | |
| 20 | config MACH_PH1_LD4 |
| 21 | bool "PH1-LD4" |
| 22 | |
| 23 | config MACH_PH1_SLD8 |
| 24 | bool "PH1-sLD8" |
| 25 | |
| 26 | endchoice |
| 27 | |
Masahiro Yamada | 39c450d | 2014-12-06 00:03:21 +0900 | [diff] [blame] | 28 | choice |
| 29 | prompt "UniPhier Support Card select" |
| 30 | optional |
| 31 | |
| 32 | config PFC_MICRO_SUPPORT_CARD |
| 33 | bool "Support card with PFC CPLD" |
| 34 | help |
| 35 | This option provides support for the expansion board with PFC |
| 36 | original address mapping. |
| 37 | |
| 38 | Say Y to use the on-board UART, Ether, LED devices. |
| 39 | |
| 40 | config DCC_MICRO_SUPPORT_CARD |
| 41 | bool "Support card with DCC CPLD" |
| 42 | help |
| 43 | This option provides support for the expansion board with DCC- |
| 44 | arranged address mapping that is compatible with legacy UniPhier |
| 45 | reference boards. |
| 46 | |
| 47 | Say Y to use the on-board UART, Ether, LED devices. |
| 48 | |
| 49 | endchoice |
| 50 | |
Masahiro Yamada | 4b5e7e3 | 2014-10-20 20:45:22 +0900 | [diff] [blame] | 51 | config CMD_PINMON |
| 52 | bool "Enable boot mode pins monitor command" |
| 53 | depends on !SPL_BUILD |
| 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 | 05154a2 | 2014-11-11 22:18:22 +0900 | [diff] [blame] | 60 | config SOC_INIT |
| 61 | bool |
| 62 | default SPL_BUILD |
| 63 | |
Masahiro Yamada | b0c7904 | 2014-11-06 20:16:42 +0900 | [diff] [blame] | 64 | config DRAM_INIT |
| 65 | bool |
| 66 | default SPL_BUILD |
| 67 | |
| 68 | choice |
| 69 | prompt "DDR3 Frequency select" |
| 70 | depends on DRAM_INIT |
| 71 | |
| 72 | config DDR_FREQ_1600 |
| 73 | bool "DDR3 1600" |
| 74 | depends on MACH_PH1_PRO4 || MACH_PH1_LD4 |
| 75 | |
| 76 | config DDR_FREQ_1333 |
| 77 | bool "DDR3 1333" |
| 78 | depends on MACH_PH1_LD4 || MACH_PH1_SLD8 |
| 79 | |
| 80 | endchoice |
| 81 | |
| 82 | config DDR_FREQ |
| 83 | int |
| 84 | default 1333 if DDR_FREQ_1333 |
| 85 | default 1600 if DDR_FREQ_1600 |
| 86 | |
Masahiro Yamada | 8206943 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 87 | endmenu |