diff options
author | Youness Alaoui <youness.alaoui@puri.sm> | 2018-05-11 13:53:07 -0400 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-11 18:23:48 +0000 |
commit | d319b982797752231d0ea37c08490ba630312bb8 (patch) | |
tree | 171b4ee44b54f6fa91499cd2bc3ae76859bd91a0 /src/mainboard/purism/librem_bdw/Kconfig | |
parent | 44f80657fd513f91f87973407b3474ed9f634867 (diff) |
purism/librem_bdw: Rename Broadwell baseboard from BDL to BDW
My bad, it seems the acronym for Broadwell is BDW, and not BDL, so
I'm renaming librem_bdl into librem_bdw and changing the KConfig
options accordingly.
Change-Id: I8e992aa3474863236adf8893fcbe37c1b801fa25
Signed-off-by: Youness Alaoui <youness.alaoui@puri.sm>
Reviewed-on: https://review.coreboot.org/26237
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/purism/librem_bdw/Kconfig')
-rw-r--r-- | src/mainboard/purism/librem_bdw/Kconfig | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/src/mainboard/purism/librem_bdw/Kconfig b/src/mainboard/purism/librem_bdw/Kconfig new file mode 100644 index 0000000000..726fb4a7b1 --- /dev/null +++ b/src/mainboard/purism/librem_bdw/Kconfig @@ -0,0 +1,91 @@ +config BOARD_PURISM_BASEBOARD_LIBREM_BDW + def_bool n + select SYSTEM_TYPE_LAPTOP + select BOARD_ROMSIZE_KB_8192 + select EC_PURISM_LIBREM + select HAVE_ACPI_RESUME + select HAVE_ACPI_TABLES + select INTEL_INT15 + select SOC_INTEL_BROADWELL + +if BOARD_PURISM_BASEBOARD_LIBREM_BDW + +config VARIANT_DIR + string + default "librem13v1" if BOARD_PURISM_LIBREM13_V1 + default "librem15v2" if BOARD_PURISM_LIBREM15_V2 + +config DEVICETREE + string + default "variants/librem13v1/devicetree.cb" if BOARD_PURISM_LIBREM13_V1 + default "variants/librem15v2/devicetree.cb" if BOARD_PURISM_LIBREM15_V2 + +config DRIVERS_PS2_KEYBOARD + def_bool y + help + Default PS/2 Keyboard to enabled on this board. + +config DRIVERS_UART_8250IO + def_bool n + help + This platform does not have any way to get standard + serial output so disable it by default. + +config PCIEXP_L1_SUB_STATE + def_bool n + +config PCIEXP_AER + def_bool n + +config HAVE_IFD_BIN + bool + default n + +config HAVE_ME_BIN + bool + default n + +config MAINBOARD_DIR + string + default purism/librem_bdw + +config MAINBOARD_VENDOR + string + default "Purism" + +config MAINBOARD_PART_NUMBER + string + default "Librem 13 v1" if BOARD_PURISM_LIBREM13_V1 + default "Librem 15 v2" if BOARD_PURISM_LIBREM15_V2 + +config MAINBOARD_FAMILY + string + default "Librem 13" if BOARD_PURISM_LIBREM13_V1 + default "Librem 15" if BOARD_PURISM_LIBREM15_V2 + +config MAINBOARD_VERSION + string + default "1.0" if BOARD_PURISM_LIBREM13_V1 + default "2.0" if BOARD_PURISM_LIBREM15_V2 + +config MAX_CPUS + int + default 8 + +config NO_POST + def_bool y + help + This platform does not have any way to see POST codes + so disable them by default. + +config PRE_GRAPHICS_DELAY + int + default 50 + +config VGA_BIOS_ID + string + default "8086,1616" if BOARD_PURISM_LIBREM13_V1 + default "8086,162b" if BOARD_PURISM_LIBREM15_V2 + + +endif |