Pascal Linder | 707f06f | 2019-07-09 09:28:20 +0200 | [diff] [blame] | 1 | menu "KM ARM Options" |
| 2 | depends on ARM |
| 3 | |
| 4 | config KM_FPGA_CONFIG |
| 5 | bool "FPGA Configuration" |
| 6 | default n |
| 7 | help |
| 8 | Include capability to change FPGA configuration. |
| 9 | |
Holger Brunck | 0e1c0f3 | 2020-01-13 15:34:01 +0100 | [diff] [blame^] | 10 | config KM_FPGA_FORCE_CONFIG |
| 11 | bool "FPGA reconfiguration" |
| 12 | default n |
| 13 | help |
| 14 | If yes we force to reconfigure the FPGA always |
| 15 | |
| 16 | config KM_FPGA_NO_RESET |
| 17 | bool "FPGA skip reset" |
| 18 | default n |
| 19 | help |
| 20 | If yes we skip triggering a reset of the FPGA |
| 21 | |
Pascal Linder | 707f06f | 2019-07-09 09:28:20 +0200 | [diff] [blame] | 22 | config KM_ENV_IS_IN_SPI_NOR |
| 23 | bool "Environment in SPI NOR" |
| 24 | default n |
| 25 | help |
| 26 | Put the U-Boot environment in the SPI NOR flash. |
| 27 | |
| 28 | config KM_PIGGY4_88E6061 |
| 29 | bool "Piggy via Switch 88E6061" |
| 30 | default n |
| 31 | help |
| 32 | The Piggy4 board is connected via a Marvell 88E6061 switch. |
| 33 | |
| 34 | config KM_PIGGY4_88E6352 |
| 35 | bool "Piggy via Switch 88E6352" |
| 36 | default n |
| 37 | help |
| 38 | The Piggy4 board is connected via a Marvell 88E6352 switch. |
| 39 | |
| 40 | endmenu |
| 41 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 42 | if TARGET_KM_KIRKWOOD |
| 43 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 44 | config SYS_BOARD |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 45 | default "km_arm" |
| 46 | |
| 47 | config SYS_VENDOR |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 48 | default "keymile" |
| 49 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 50 | config SYS_CONFIG_NAME |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 51 | default "km_kirkwood" |
| 52 | |
Pascal Linder | c0fed3a | 2019-06-18 13:27:47 +0200 | [diff] [blame] | 53 | config BOARD_SPECIFIC_OPTIONS # dummy |
| 54 | def_bool y |
| 55 | select BOARD_LATE_INIT |
Pascal Linder | c2cd4ec | 2019-06-18 08:42:59 +0200 | [diff] [blame] | 56 | select DM |
Pascal Linder | abbaa8e | 2019-07-09 09:30:27 +0200 | [diff] [blame] | 57 | select DM_ETH |
Pascal Linder | b75e9e3 | 2019-07-09 09:30:26 +0200 | [diff] [blame] | 58 | select DM_SERIAL |
Pascal Linder | c2cd4ec | 2019-06-18 08:42:59 +0200 | [diff] [blame] | 59 | select DM_SPI |
| 60 | select DM_SPI_FLASH |
Pascal Linder | c0fed3a | 2019-06-18 13:27:47 +0200 | [diff] [blame] | 61 | imply CMD_CRAMFS |
| 62 | imply CMD_DIAG |
| 63 | imply FS_CRAMFS |
| 64 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 65 | endif |