From 492826771e835052c1adffb6303f4e4b7bc29445 Mon Sep 17 00:00:00 2001 From: Hari L Date: Thu, 11 Sep 2025 11:39:16 +0530 Subject: [PATCH] mb/google/bluey: Enable USB support BUG=b:440996061 TEST=Ensure that pipe/utmi clocks are ON and check port link status to confirm USB connect. Change-Id: If0997ecb43eb5f687f1416abe42764fa31b1eaf5 Signed-off-by: Hari L Reviewed-on: https://review.coreboot.org/c/coreboot/+/89146 Tested-by: build bot (Jenkins) Reviewed-by: Subrata Banik Reviewed-by: Kapil Porwal --- src/mainboard/google/bluey/mainboard.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/mainboard/google/bluey/mainboard.c b/src/mainboard/google/bluey/mainboard.c index 58035a3290..1c9a87f844 100644 --- a/src/mainboard/google/bluey/mainboard.c +++ b/src/mainboard/google/bluey/mainboard.c @@ -10,6 +10,12 @@ #include #include #include "board.h" +#include + +static void setup_usb(void) +{ + setup_usb_host0(); +} void lb_add_boot_mode(struct lb_header *header) { @@ -76,6 +82,9 @@ static void mainboard_init(struct device *dev) if (CONFIG(MAINBOARD_HAS_FINGERPRINT)) gpio_output(GPIO_FP_RST_L, 1); + /* Setup USB related initial config */ + setup_usb(); + display_startup(); }