mb/starlabs/lite/glk: Correct OverCurrent Pin
The OC pin was set to 0, which isn't connected. All USB ports are connected to OC1. This solves a strange issue where the Lite can't be powered on without the charger connected. Signed-off-by: Sean Rhodes <sean@starlabs.systems> Change-Id: I700ddde291f0e4be6e3787e2da13f6d3ece736b0 Reviewed-on: https://review.coreboot.org/c/coreboot/+/64097 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@tutanota.com>
This commit is contained in:
parent
59609784f0
commit
ff16e41b75
|
@ -88,23 +88,23 @@ chip soc/intel/apollolake
|
|||
device pci 15.0 on # XHCI
|
||||
### USB 2.0 Devices
|
||||
# Motherboard USB Type C
|
||||
register "usb2_port[0]" = "PORT_EN(OC0)"
|
||||
register "usb2_port[0]" = "PORT_EN(OC_SKIP)"
|
||||
# Motherboard USB 3.0
|
||||
register "usb2_port[3]" = "PORT_EN(OC0)"
|
||||
register "usb2_port[3]" = "PORT_EN(OC1)"
|
||||
# Internal Webcam
|
||||
register "usb2_port[4]" = "PORT_EN(OC0)"
|
||||
register "usb2_port[4]" = "PORT_EN(OC_SKIP)"
|
||||
# Daughterboard USB 3.0
|
||||
register "usb2_port[5]" = "PORT_EN(OC0)"
|
||||
register "usb2_port[5]" = "PORT_EN(OC_SKIP)"
|
||||
# Daughterboard SD Card
|
||||
register "usb2_port[6]" = "PORT_EN(OC0)"
|
||||
register "usb2_port[6]" = "PORT_EN(OC_SKIP)"
|
||||
|
||||
### USB 3.0 Devices
|
||||
# Motherboard USB 3.0
|
||||
register "usb3_port[0]" = "PORT_EN(OC0)"
|
||||
register "usb3_port[0]" = "PORT_EN(OC1)"
|
||||
# Motherboard USB Type C
|
||||
register "usb3_port[1]" = "PORT_EN(OC0)"
|
||||
register "usb3_port[1]" = "PORT_EN(OC_SKIP)"
|
||||
# Daughterboard USB 3.0
|
||||
register "usb3_port[2]" = "PORT_EN(OC0)"
|
||||
register "usb3_port[2]" = "PORT_EN(OC_SKIP)"
|
||||
end
|
||||
device pci 15.1 off end # XDCI
|
||||
device pci 16.0 off end # I2C0
|
||||
|
|
Loading…
Reference in New Issue