blob: 9d222d713653b1e9774dd0def0bcf43eb7b4752a [file] [log] [blame]
Pascal Linder707f06f2019-07-09 09:28:20 +02001menu "KM ARM Options"
2 depends on ARM
3
4config KM_FPGA_CONFIG
5 bool "FPGA Configuration"
Pascal Linder707f06f2019-07-09 09:28:20 +02006 help
7 Include capability to change FPGA configuration.
8
Holger Brunck0e1c0f32020-01-13 15:34:01 +01009config KM_FPGA_FORCE_CONFIG
10 bool "FPGA reconfiguration"
Holger Brunck0e1c0f32020-01-13 15:34:01 +010011 help
12 If yes we force to reconfigure the FPGA always
13
14config KM_FPGA_NO_RESET
15 bool "FPGA skip reset"
Holger Brunck0e1c0f32020-01-13 15:34:01 +010016 help
17 If yes we skip triggering a reset of the FPGA
18
Pascal Linder707f06f2019-07-09 09:28:20 +020019config KM_ENV_IS_IN_SPI_NOR
20 bool "Environment in SPI NOR"
Pascal Linder707f06f2019-07-09 09:28:20 +020021 help
22 Put the U-Boot environment in the SPI NOR flash.
23
24config KM_PIGGY4_88E6061
25 bool "Piggy via Switch 88E6061"
Pascal Linder707f06f2019-07-09 09:28:20 +020026 help
27 The Piggy4 board is connected via a Marvell 88E6061 switch.
28
29config KM_PIGGY4_88E6352
30 bool "Piggy via Switch 88E6352"
Pascal Linder707f06f2019-07-09 09:28:20 +020031 help
32 The Piggy4 board is connected via a Marvell 88E6352 switch.
33
34endmenu
35
Masahiro Yamadadd840582014-07-30 14:08:14 +090036if TARGET_KM_KIRKWOOD
37
Masahiro Yamadadd840582014-07-30 14:08:14 +090038config SYS_BOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +090039 default "km_arm"
40
41config SYS_VENDOR
Masahiro Yamadadd840582014-07-30 14:08:14 +090042 default "keymile"
43
Masahiro Yamadadd840582014-07-30 14:08:14 +090044config SYS_CONFIG_NAME
Masahiro Yamadadd840582014-07-30 14:08:14 +090045 default "km_kirkwood"
46
Pascal Linderc0fed3a2019-06-18 13:27:47 +020047config BOARD_SPECIFIC_OPTIONS # dummy
48 def_bool y
49 select BOARD_LATE_INIT
Pascal Linderc2cd4ec2019-06-18 08:42:59 +020050 select DM
Pascal Linderabbaa8e2019-07-09 09:30:27 +020051 select DM_ETH
Pascal Linderb75e9e32019-07-09 09:30:26 +020052 select DM_SERIAL
Pascal Linderc2cd4ec2019-06-18 08:42:59 +020053 select DM_SPI
54 select DM_SPI_FLASH
Holger Brunckcbfc3b72020-11-03 15:41:25 +010055 select USB
56 select USB_EHCI_HCD
57 select USB_EHCI_MARVELL
Pascal Linderc0fed3a2019-06-18 13:27:47 +020058 imply CMD_CRAMFS
59 imply CMD_DIAG
60 imply FS_CRAMFS
Holger Brunckcbfc3b72020-11-03 15:41:25 +010061 imply CMD_USB
Pascal Linderc0fed3a2019-06-18 13:27:47 +020062
Tom Rini7f3092d2022-03-23 17:19:57 -040063choice
64 prompt "Board model"
65
66config KM_COGE5UN
67 bool "Hitachi Power Grids COGE5UN"
68
69config KM_KIRKWOOD_128M16
70 bool "Hitachi Power Grids Kirkwood 128M16"
71
72config KM_KIRKWOOD
73 bool "Hitachi Power Grids Kirkwood"
74
75config KM_KIRKWOOD_PCI
76 bool "Hitachi Power Grids Kirkwood PCI"
77
78config KM_NUSA
79 bool "Hitachi Power Grids Kirkwood (NUSA)"
80
81config KM_SUSE2
82 bool "Hitachi Power Grids Kirkwood (SUSE2)"
83
84endchoice
85
Masahiro Yamadadd840582014-07-30 14:08:14 +090086endif