2018-09-27 07:19:34 +00:00
|
|
|
config GDSYS_LEGACY_OSD_CMDS
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Use the 'osdw', 'osdp', and 'osdsize' legacy commands required by
|
|
|
|
gdsys devices.
|
|
|
|
|
2019-03-29 09:18:10 +00:00
|
|
|
config GDSYS_LEGACY_DRIVERS
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Enable the gdsys legacy drivers under board/gdsys/common. If this
|
|
|
|
option is not set, all relevant DM drivers must be configured for the
|
|
|
|
device in question.
|
|
|
|
|
2019-03-29 09:18:08 +00:00
|
|
|
config SYS_FPGA0_BASE
|
|
|
|
hex
|
|
|
|
default E0600000
|
|
|
|
help
|
|
|
|
The base address of the first FPGA's register map.
|
|
|
|
|
|
|
|
config SYS_FPGA0_SIZE
|
|
|
|
hex
|
|
|
|
default 1
|
|
|
|
help
|
|
|
|
The base address of the first FPGA's register map.
|
|
|
|
|
|
|
|
config SYS_FPGA1_BASE
|
|
|
|
hex
|
|
|
|
help
|
|
|
|
The base address of the second FPGA's register map.
|
|
|
|
|
|
|
|
config SYS_FPGA1_SIZE
|
|
|
|
hex
|
|
|
|
help
|
|
|
|
The base address of the second FPGA's register map.
|
|
|
|
|
2014-11-13 18:21:18 +00:00
|
|
|
if TARGET_HRCON
|
|
|
|
|
|
|
|
config SYS_BOARD
|
|
|
|
default "mpc8308"
|
|
|
|
|
|
|
|
config SYS_VENDOR
|
|
|
|
default "gdsys"
|
|
|
|
|
|
|
|
config SYS_CONFIG_NAME
|
|
|
|
default "hrcon"
|
|
|
|
|
2018-09-27 07:19:34 +00:00
|
|
|
config GDSYS_LEGACY_OSD_CMDS
|
|
|
|
default y
|
|
|
|
|
2019-03-29 09:18:10 +00:00
|
|
|
config GDSYS_LEGACY_DRIVERS
|
|
|
|
default y
|
|
|
|
|
2014-11-13 18:21:18 +00:00
|
|
|
endif
|
2015-10-28 10:46:32 +00:00
|
|
|
|
|
|
|
if TARGET_STRIDER
|
|
|
|
|
|
|
|
config SYS_BOARD
|
|
|
|
default "mpc8308"
|
|
|
|
|
|
|
|
config SYS_VENDOR
|
|
|
|
default "gdsys"
|
|
|
|
|
|
|
|
config SYS_CONFIG_NAME
|
|
|
|
default "strider"
|
|
|
|
|
2018-09-27 07:19:34 +00:00
|
|
|
config GDSYS_LEGACY_OSD_CMDS
|
|
|
|
default y
|
2019-03-29 09:18:10 +00:00
|
|
|
|
|
|
|
config GDSYS_LEGACY_DRIVERS
|
|
|
|
default y
|
|
|
|
|
2015-10-28 10:46:32 +00:00
|
|
|
endif
|
2017-05-17 09:25:35 +00:00
|
|
|
|
2019-03-29 09:18:19 +00:00
|
|
|
if TARGET_GAZERBEAM
|
|
|
|
|
|
|
|
config SYS_BOARD
|
|
|
|
default "mpc8308"
|
|
|
|
|
|
|
|
config SYS_VENDOR
|
|
|
|
default "gdsys"
|
|
|
|
|
|
|
|
config SYS_CONFIG_NAME
|
|
|
|
default "gazerbeam"
|
|
|
|
|
|
|
|
config SYS_FPGA1_BASE
|
|
|
|
default E0700000
|
|
|
|
|
|
|
|
config SYS_FPGA1_SIZE
|
|
|
|
default 1
|
|
|
|
|
|
|
|
config GDSYS_LEGACY_OSD_CMDS
|
|
|
|
default y
|
|
|
|
endif
|
|
|
|
|
|
|
|
if TARGET_HRCON || TARGET_STRIDER || TARGET_GAZERBEAM
|
2019-03-29 09:18:11 +00:00
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "FPGA flavor selection"
|
|
|
|
|
|
|
|
config SYS_FPGA_FLAVOR_LEGACY
|
|
|
|
bool "Legacy flavor"
|
|
|
|
help
|
|
|
|
This enables support for the gdsys pre-Gazerbeam FPGA memory layout.
|
|
|
|
|
|
|
|
config SYS_FPGA_FLAVOR_GAZERBEAM
|
|
|
|
bool "Gazerbeam flavor"
|
|
|
|
help
|
|
|
|
This enables support for the gdsys FPGA memory layout of the
|
|
|
|
Gazerbeam board.
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2019-03-29 09:18:19 +00:00
|
|
|
config EXTENDED_FEATURES
|
|
|
|
bool "FPGA extended features"
|
|
|
|
depends on GDSYS_LEGACY_DRIVERS
|
|
|
|
help
|
|
|
|
Enable support for the extended features field of the IHS FPGA.
|
|
|
|
|
2017-05-17 09:25:35 +00:00
|
|
|
config CMD_IOLOOP
|
|
|
|
bool "Enable 'ioloop' and 'ioreflect' commands"
|
|
|
|
help
|
|
|
|
These commands provide FPGA tests.
|
2019-03-29 09:18:11 +00:00
|
|
|
|
|
|
|
endif
|