Sean Rhodes has submitted this change. ( https://review.coreboot.org/c/coreboot/+/86128?usp=email )
Change subject: mb/starlabs/starlite_adl: Disable CNVi vUART Pins ......................................................................
mb/starlabs/starlite_adl: Disable CNVi vUART Pins
This board is using the USB interface for Bluetooth so these can be disabled.
Change-Id: Iee80595e9e7d0652a723d44b11d9dc7a1c79417a Signed-off-by: Sean Rhodes sean@starlabs.systems Reviewed-on: https://review.coreboot.org/c/coreboot/+/86128 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Matt DeVillier matt.devillier@gmail.com --- M src/mainboard/starlabs/starlite_adl/variants/mk_v/gpio.c 1 file changed, 12 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Matt DeVillier: Looks good to me, approved
diff --git a/src/mainboard/starlabs/starlite_adl/variants/mk_v/gpio.c b/src/mainboard/starlabs/starlite_adl/variants/mk_v/gpio.c index 1890bdb..60bfc23 100644 --- a/src/mainboard/starlabs/starlite_adl/variants/mk_v/gpio.c +++ b/src/mainboard/starlabs/starlite_adl/variants/mk_v/gpio.c @@ -451,6 +451,18 @@
/* BT_EN */ PAD_CFG_GPO_GPIO_DRIVER(GPP_VGPIO_0, 1, DEEP, NONE), + + /* CNVi BT UART0 */ + PAD_NC(GPP_VGPIO_6, NONE), + PAD_NC(GPP_VGPIO_7, NONE), + PAD_NC(GPP_VGPIO_8, NONE), + PAD_NC(GPP_VGPIO_9, NONE), + + /* CNVi UART0 */ + PAD_NC(GPP_VGPIO_18, NONE), + PAD_NC(GPP_VGPIO_19, NONE), + PAD_NC(GPP_VGPIO_20, NONE), + PAD_NC(GPP_VGPIO_21, NONE), };
const struct pad_config *variant_gpio_table(size_t *num)