As a first step towards removing hardcodes from the FUI support, change the haswell call to i915_lightup to panel_lightup, and pass the intel_dp * as a parameter. Get rid of the scalar arguments and make them part of intel_dp. Get rid of file-scope variables and use the ones in the intel_dp struct. In falco, use functions that peppy uses. Drop slippy support for FUI, it's a dead board; if this is ok I'll remove the files next. And, incidentally, fix the broken RGBX constant and change it to BGRX. Change-Id: I46ef5a9ed8433382d042066ee3542af04cfc319a Signed-off-by: Ronald G. Minnich <rminnich@google.com> Reviewed-on: https://chromium-review.googlesource.com/174932 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Commit-Queue: Ronald Minnich <rminnich@chromium.org> Tested-by: Ronald Minnich <rminnich@chromium.org> (cherry picked from commit 1e1ed410b445c8e2b7411e163d9d6f61499dc3f6) Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com> Reviewed-on: http://review.coreboot.org/6833 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins)
62 lines
999 B
Plaintext
62 lines
999 B
Plaintext
if BOARD_GOOGLE_SLIPPY
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select CPU_INTEL_SOCKET_RPGA989
|
|
select NORTHBRIDGE_INTEL_HASWELL
|
|
select SOUTHBRIDGE_INTEL_LYNXPOINT
|
|
select INTEL_LYNXPOINT_LP
|
|
select BOARD_ROMSIZE_KB_8192
|
|
select EC_GOOGLE_CHROMEEC
|
|
select EC_SOFTWARE_SYNC
|
|
select VIRTUAL_DEV_SWITCH
|
|
select HAVE_ACPI_TABLES
|
|
select HAVE_OPTION_TABLE
|
|
select HAVE_ACPI_RESUME
|
|
select MMCONF_SUPPORT
|
|
select HAVE_SMI_HANDLER
|
|
select MAINBOARD_HAS_CHROMEOS
|
|
select EXTERNAL_MRC_BLOB
|
|
select MONOTONIC_TIMER_MSR
|
|
select INTEL_DP
|
|
select INTEL_DDI
|
|
select INTEL_INT15
|
|
|
|
config VBOOT_RAMSTAGE_INDEX
|
|
hex
|
|
default 0x2
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default google/slippy
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "Slippy"
|
|
|
|
config MMCONF_BASE_ADDRESS
|
|
hex
|
|
default 0xf0000000
|
|
|
|
config IRQ_SLOT_COUNT
|
|
int
|
|
default 18
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 8
|
|
|
|
config VGA_BIOS_FILE
|
|
string
|
|
default "pci8086,0166.rom"
|
|
|
|
config HAVE_IFD_BIN
|
|
bool
|
|
default n
|
|
|
|
config HAVE_ME_BIN
|
|
bool
|
|
default n
|
|
|
|
endif
|