Sean Rhodes has submitted this change. ( https://review.coreboot.org/c/coreboot/+/85866?usp=email )
Change subject: drivers/usb/acpi: Don't add GPIOs to _CRS for Intel Bluetooth ......................................................................
drivers/usb/acpi: Don't add GPIOs to _CRS for Intel Bluetooth
These are not needed as they are controlled via a power resource that is specific to Intel Bluetooth.
Change-Id: I8502d03db3d43385ac19bc3c17a79232bde1aa94 Signed-off-by: Sean Rhodes sean@starlabs.systems Reviewed-on: https://review.coreboot.org/c/coreboot/+/85866 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Matt DeVillier matt.devillier@gmail.com --- M src/drivers/usb/acpi/usb_acpi.c 1 file changed, 3 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Matt DeVillier: Looks good to me, approved
diff --git a/src/drivers/usb/acpi/usb_acpi.c b/src/drivers/usb/acpi/usb_acpi.c index 6408a88..a920fa1 100644 --- a/src/drivers/usb/acpi/usb_acpi.c +++ b/src/drivers/usb/acpi/usb_acpi.c @@ -10,6 +10,9 @@
static bool usb_acpi_add_gpios_to_crs(struct drivers_usb_acpi_config *cfg) { + if (cfg->is_intel_bluetooth) + return false; + if (cfg->privacy_gpio.pin_count) return true;