ec/lenovo/h8: Make trackpoint enable a CMOS option.

To be consistent with touchpad counterpart.

Change-Id: I72d09b41b964f80a81fbf409ef69dd368834a3e2
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/4654
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Vladimir Serbinenko
2014-01-11 04:22:35 +01:00
parent 1eda31c0a7
commit eada34faaa
7 changed files with 18 additions and 0 deletions

View File

@ -55,6 +55,14 @@ void pmh7_touchpad_enable(int onoff)
pmh7_register_set_bit(0x51, 2);
}
void pmh7_trackpoint_enable(int onoff)
{
if (onoff)
pmh7_register_clear_bit(0x51, 0);
else
pmh7_register_set_bit(0x51, 0);
}
void pmh7_ultrabay_power_enable(int onoff)
{
if (onoff)
@ -116,6 +124,10 @@ static void enable_dev(device_t dev)
if (get_option(&val, "touchpad") != CB_SUCCESS)
val = 1;
pmh7_touchpad_enable(val);
if (get_option(&val, "trackpoint") != CB_SUCCESS)
val = 1;
pmh7_trackpoint_enable(val);
}
struct chip_operations ec_lenovo_pmh7_ops = {

View File

@ -35,4 +35,5 @@ void pmh7_backlight_enable(int onoff);
void pmh7_dock_event_enable(int onoff);
void pmh7_touchpad_enable(int onoff);
void pmh7_ultrabay_power_enable(int onoff);
void pmh7_trackpoint_enable(int onoff);
#endif