From df33ef23553fb41e0660bb75fc439af18eac2a1c Mon Sep 17 00:00:00 2001 From: Julius Werner Date: Mon, 24 Aug 2020 16:06:41 -0700 Subject: trogdor: Assert EN_PP3300_HUB Some Trogdor variants power their USB hub from a PMIC LDO that is already enabled by QcLib, and some have a discrete LDO that is controlled by GPIO_84. For the latter, let's make sure we assert that GPIO on boot. Signed-off-by: Julius Werner Change-Id: I9d206cd7154ded3bf179e68c2b1421d0a8ee89f2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/44744 Tested-by: build bot (Jenkins) Reviewed-by: mturney mturney Reviewed-by: Matthias Kaehlcke Reviewed-by: Philip Chen --- src/mainboard/google/trogdor/mainboard.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/mainboard') diff --git a/src/mainboard/google/trogdor/mainboard.c b/src/mainboard/google/trogdor/mainboard.c index c82eaa0e02..4d6e352a85 100644 --- a/src/mainboard/google/trogdor/mainboard.c +++ b/src/mainboard/google/trogdor/mainboard.c @@ -12,6 +12,9 @@ static struct usb_board_data usb0_board_data = { static void setup_usb(void) { + /* Assert EN_PP3300_HUB for those board variants that use it. */ + gpio_output(GPIO(84), 1); + setup_usb_host0(&usb0_board_data); } -- cgit v1.2.3