summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2014-08-05 14:24:57 -0500
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-08-06 00:27:53 +0000
commite1557b0f42a64eb6c973d43a34158888905e33b9 (patch)
tree1954cb3f6d3752ed90c9443a8b4a6f83e5358dc2
parent5f24869dcdbea84065770eb8ad51974ecf85e216 (diff)
downloadchrome-ec-e1557b0f42a64eb6c973d43a34158888905e33b9.tar.gz
ryu: set PD_DISABLE_DEBUG to 1 by default
In order for the AP to access the SPI part one needs to drive PD_DISABLE_DEBUG to 1. While all the closed-case debugging is being worked out set this signal 1 by default so that the AP can boot. BUG=chrome-os-partner:31149 BRANCH=None TEST=Built and flashed on ryu. SPI works from initial poweron. Change-Id: I1fdb0457da9db07063f86959d9eb969e3bcd83ec Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/211141 Reviewed-by: Vic Yang <victoryang@chromium.org> Reviewed-by: Alec Berg <alecaberg@chromium.org>
-rw-r--r--board/ryu/gpio.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ryu/gpio.inc b/board/ryu/gpio.inc
index 02bfe97693..ac2153ee88 100644
--- a/board/ryu/gpio.inc
+++ b/board/ryu/gpio.inc
@@ -91,7 +91,7 @@ GPIO(SLAVE_I2C_SCL, B, 10, GPIO_INPUT, NULL)
GPIO(SLAVE_I2C_SDA, B, 11, GPIO_INPUT, NULL)
/* Case closed debugging. */
-GPIO(PD_DISABLE_DEBUG, C, 5, GPIO_OUT_LOW, NULL)
+GPIO(PD_DISABLE_DEBUG, C, 5, GPIO_OUT_HIGH, NULL)
GPIO(SPI_FLASH_NSS, B, 12, GPIO_INPUT, NULL)
GPIO(SPI_FLASH_SCK, B, 13, GPIO_INPUT, NULL)
GPIO(SPI_FLASH_MOSI, B, 14, GPIO_INPUT, NULL)