diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-03-26 18:51:08 -0500 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-03-28 20:59:57 +0100 |
commit | fccfee3bce901dfe78af8c36656f09973c2f3846 (patch) | |
tree | 54e3181653721b407b71356ce3fadaa390b6846a /src/mainboard/hp/Kconfig | |
parent | 35a4901d3a90813514994d709cd473b4a58aa9ef (diff) |
mainboard/hp: Add initial support for Pavilion m6-1035dx
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>
Diffstat (limited to 'src/mainboard/hp/Kconfig')
-rw-r--r-- | src/mainboard/hp/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/hp/Kconfig b/src/mainboard/hp/Kconfig index 9f59ec8e90..4b391ad4d0 100644 --- a/src/mainboard/hp/Kconfig +++ b/src/mainboard/hp/Kconfig @@ -11,6 +11,9 @@ 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 @@ -18,6 +21,7 @@ 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 |