summaryrefslogtreecommitdiff
path: root/src/mainboard
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard')
-rw-r--r--src/mainboard/google/asurada/chromeos.c1
-rw-r--r--src/mainboard/google/asurada/gpio.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/mainboard/google/asurada/chromeos.c b/src/mainboard/google/asurada/chromeos.c
index 56a1084e81..6f8f24281a 100644
--- a/src/mainboard/google/asurada/chromeos.c
+++ b/src/mainboard/google/asurada/chromeos.c
@@ -16,6 +16,7 @@ void setup_chromeos_gpios(void)
gpio_input_pullup(GPIO_SD_CD);
gpio_output(GPIO_RESET, 0);
gpio_output(GPIO_EN_SPK_AMP, 0);
+ gpio_output(GPIO_XHCI_DONE, 0);
}
void fill_lb_gpios(struct lb_gpios *gpios)
diff --git a/src/mainboard/google/asurada/gpio.h b/src/mainboard/google/asurada/gpio.h
index ae34d33313..8c33d9c531 100644
--- a/src/mainboard/google/asurada/gpio.h
+++ b/src/mainboard/google/asurada/gpio.h
@@ -16,6 +16,8 @@
#define GPIO_RESET GPIO(CAM_PDN2)
/* EN_SPK */
#define GPIO_EN_SPK_AMP GPIO(CAM_PDN1)
+/* AP_XHCI_INIT_DONE */
+#define GPIO_XHCI_DONE GPIO(CAM_PDN5)
void setup_chromeos_gpios(void);