mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
mainboard/google/poppy: Generate digitizer node in SSDT
Add support for generating digitizer node in SSDT using wacom i2c driver. BUG=None BRANCH=None TEST=Verified that the node shows up in SSDT. Change-Id: If7e1e2463778c2ff7263eff995def149457edcde Signed-off-by: Furquan Shaikh <furquan@chromium.org> Reviewed-on: https://review.coreboot.org/18373 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
231c198e2c
commit
c57c48bd36
2 changed files with 15 additions and 1 deletions
|
@ -21,6 +21,9 @@ config CHROMEOS
|
||||||
config DRIVERS_I2C_GENERIC
|
config DRIVERS_I2C_GENERIC
|
||||||
def_bool y
|
def_bool y
|
||||||
|
|
||||||
|
config DRIVERS_I2C_WACOM
|
||||||
|
def_bool y
|
||||||
|
|
||||||
config GBB_HWID
|
config GBB_HWID
|
||||||
string
|
string
|
||||||
depends on CHROMEOS
|
depends on CHROMEOS
|
||||||
|
|
|
@ -208,7 +208,18 @@ chip soc/intel/skylake
|
||||||
end # I2C #0
|
end # I2C #0
|
||||||
device pci 15.1 on end # I2C #1
|
device pci 15.1 on end # I2C #1
|
||||||
device pci 15.2 on end # I2C #2
|
device pci 15.2 on end # I2C #2
|
||||||
device pci 15.3 on end # I2C #3
|
device pci 15.3 on
|
||||||
|
chip drivers/i2c/wacom
|
||||||
|
register "generic" = "{
|
||||||
|
.hid = WCOM50C1_HID,
|
||||||
|
.cid = PNP0C50_CID,
|
||||||
|
.desc = WCOM_DT_DESC,
|
||||||
|
.irq = IRQ_LEVEL_LOW(GPP_D1_IRQ),
|
||||||
|
}"
|
||||||
|
register "hid_desc_reg_offset" = "0x1"
|
||||||
|
device i2c 0x9 on end
|
||||||
|
end
|
||||||
|
end # I2C #3
|
||||||
device pci 16.0 on end # Management Engine Interface 1
|
device pci 16.0 on end # Management Engine Interface 1
|
||||||
device pci 16.1 off end # Management Engine Interface 2
|
device pci 16.1 off end # Management Engine Interface 2
|
||||||
device pci 16.2 off end # Management Engine IDE-R
|
device pci 16.2 off end # Management Engine IDE-R
|
||||||
|
|
Loading…
Add table
Reference in a new issue