mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-27 15:12:21 +00:00
51e9dad296
Support running U-Boot as a coreboot payload. Tested peripherals include: - Video (HDMI and DisplayPort) - SATA disk - Gigabit Ethernet - SPI flash USB3 does not work. This may be a problem with the USB3 PCI driver or something in the USB3 stack and has not been investigated So far this is disabled. The SD card slot also does not work. For video, coreboot will need to run the OPROM to set this up. With this board, bare support (running without coreboot) is not available as yet. Signed-off-by: Simon Glass <sjg@chromium.org>
34 lines
640 B
Text
34 lines
640 B
Text
if TARGET_CHROMEBOX_PANTHER
|
|
|
|
config SYS_BOARD
|
|
default "chromebox_panther"
|
|
|
|
config SYS_VENDOR
|
|
default "google"
|
|
|
|
config SYS_SOC
|
|
default "ivybridge"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "chromebox_panther"
|
|
|
|
# Panther actually uses haswell, not ivybridge, so this is just a placeholder
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select X86_RESET_VECTOR
|
|
select CPU_INTEL_SOCKET_RPGA989
|
|
select NORTHBRIDGE_INTEL_IVYBRIDGE
|
|
select SOUTHBRIDGE_INTEL_C216
|
|
select HAVE_ACPI_RESUME
|
|
select MARK_GRAPHICS_MEM_WRCOMB
|
|
select BOARD_ROMSIZE_KB_8192
|
|
|
|
config SYS_CAR_ADDR
|
|
hex
|
|
default 0xff7e0000
|
|
|
|
config SYS_CAR_SIZE
|
|
hex
|
|
default 0x20000
|
|
|
|
endif
|