mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
7f3092d713
This converts the following to Kconfig: CONFIG_KM_COGE5UN CONFIG_KM_KIRKWOOD_128M16 CONFIG_KM_KIRKWOOD CONFIG_KM_KIRKWOOD_PCI CONFIG_KM_NUSA CONFIG_KM_SUSE2 Cc: Holger Brunck <holger.brunck@hitachienergy.com> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Holger Brunck <holger.brunck@hitachienergy.com>
86 lines
1.6 KiB
Text
86 lines
1.6 KiB
Text
menu "KM ARM Options"
|
|
depends on ARM
|
|
|
|
config KM_FPGA_CONFIG
|
|
bool "FPGA Configuration"
|
|
help
|
|
Include capability to change FPGA configuration.
|
|
|
|
config KM_FPGA_FORCE_CONFIG
|
|
bool "FPGA reconfiguration"
|
|
help
|
|
If yes we force to reconfigure the FPGA always
|
|
|
|
config KM_FPGA_NO_RESET
|
|
bool "FPGA skip reset"
|
|
help
|
|
If yes we skip triggering a reset of the FPGA
|
|
|
|
config KM_ENV_IS_IN_SPI_NOR
|
|
bool "Environment in SPI NOR"
|
|
help
|
|
Put the U-Boot environment in the SPI NOR flash.
|
|
|
|
config KM_PIGGY4_88E6061
|
|
bool "Piggy via Switch 88E6061"
|
|
help
|
|
The Piggy4 board is connected via a Marvell 88E6061 switch.
|
|
|
|
config KM_PIGGY4_88E6352
|
|
bool "Piggy via Switch 88E6352"
|
|
help
|
|
The Piggy4 board is connected via a Marvell 88E6352 switch.
|
|
|
|
endmenu
|
|
|
|
if TARGET_KM_KIRKWOOD
|
|
|
|
config SYS_BOARD
|
|
default "km_arm"
|
|
|
|
config SYS_VENDOR
|
|
default "keymile"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "km_kirkwood"
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select BOARD_LATE_INIT
|
|
select DM
|
|
select DM_ETH
|
|
select DM_SERIAL
|
|
select DM_SPI
|
|
select DM_SPI_FLASH
|
|
select USB
|
|
select USB_EHCI_HCD
|
|
select USB_EHCI_MARVELL
|
|
imply CMD_CRAMFS
|
|
imply CMD_DIAG
|
|
imply FS_CRAMFS
|
|
imply CMD_USB
|
|
|
|
choice
|
|
prompt "Board model"
|
|
|
|
config KM_COGE5UN
|
|
bool "Hitachi Power Grids COGE5UN"
|
|
|
|
config KM_KIRKWOOD_128M16
|
|
bool "Hitachi Power Grids Kirkwood 128M16"
|
|
|
|
config KM_KIRKWOOD
|
|
bool "Hitachi Power Grids Kirkwood"
|
|
|
|
config KM_KIRKWOOD_PCI
|
|
bool "Hitachi Power Grids Kirkwood PCI"
|
|
|
|
config KM_NUSA
|
|
bool "Hitachi Power Grids Kirkwood (NUSA)"
|
|
|
|
config KM_SUSE2
|
|
bool "Hitachi Power Grids Kirkwood (SUSE2)"
|
|
|
|
endchoice
|
|
|
|
endif
|