fccfee3bce
This was a pathetically easy port, where all the components are already supported. This is basically a verbatim copy of amd/parmer. The EC is an ENE KB932, which is a part that does surprisingly little for an EC. This also means we need almost no code to get it working. I've "select"ed the EC in Kconfig, which is the only difference from parmer, although the keyboard worked fine without it. I haven't coupled in the ACPI code from the EC yet, so battery level is not readable from the OS. Hotkeys work except for brightness control, and the CapsLock LED blinks at regular intervals instead of following the CapsLock key. Change-Id: Idfec6f848b99a52e73eac22d516f3550477ad822 Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-on: http://review.coreboot.org/5409 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
30 lines
648 B
Text
30 lines
648 B
Text
if VENDOR_HP
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config BOARD_HP_DL145_G1
|
|
bool "ProLiant DL145 G1"
|
|
config BOARD_HP_DL145_G3
|
|
bool "ProLiant DL145 G3"
|
|
config BOARD_HP_DL165_G6_FAM10
|
|
bool "ProLiant DL165 G6 Fam10"
|
|
config BOARD_HP_E_VECTRA_P2706T
|
|
bool "e-Vectra P2706T"
|
|
config BOARD_HP_PAVILION_M6_1035DX
|
|
bool "Pavilion m6 1035dx"
|
|
|
|
|
|
endchoice
|
|
|
|
source "src/mainboard/hp/dl145_g1/Kconfig"
|
|
source "src/mainboard/hp/dl145_g3/Kconfig"
|
|
source "src/mainboard/hp/dl165_g6_fam10/Kconfig"
|
|
source "src/mainboard/hp/e_vectra_p2706t/Kconfig"
|
|
source "src/mainboard/hp/pavilion_m6_1035dx/Kconfig"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "HP"
|
|
|
|
endif # VENDOR_HP
|