diff options
author | Mary Ruthven <mruthven@chromium.org> | 2020-07-16 11:49:25 -0700 |
---|---|---|
committer | Edward O'Callaghan <quasisec@chromium.org> | 2020-07-21 01:47:45 +0000 |
commit | caf56e7ac94e5e266ee89ffa9f6392d7e08beac8 (patch) | |
tree | 93386ddbcfbd4cb0182dfc4f2173b18f97055b51 | |
parent | 2cb1f333c8985fca0424a3f1a5032bdfdf541968 (diff) | |
download | flashrom-caf56e7ac94e5e266ee89ffa9f6392d7e08beac8.tar.gz flashrom-caf56e7ac94e5e266ee89ffa9f6392d7e08beac8.tar.bz2 flashrom-caf56e7ac94e5e266ee89ffa9f6392d7e08beac8.zip |
raiden_debug_spi: add missing USB_SPI requests
Add the missing USB_SPI requests from platform/cr50
BUG=none
BRANCH=none
TEST=none
Signed-off-by: Mary Ruthven <mruthven@chromium.org>
Change-Id: I49c0c28566ed36af6fa03e23a878d19462c55f70
Reviewed-on: https://review.coreboot.org/c/flashrom/+/43525
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Brian Nemec <bnemec@google.com>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
-rw-r--r-- | raiden_debug_spi.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/raiden_debug_spi.c b/raiden_debug_spi.c index b8e19fe3..f167a3a0 100644 --- a/raiden_debug_spi.c +++ b/raiden_debug_spi.c @@ -399,10 +399,17 @@ enum usb_spi_error { }; enum raiden_debug_spi_request { - RAIDEN_DEBUG_SPI_REQ_ENABLE = 0x0000, - RAIDEN_DEBUG_SPI_REQ_DISABLE = 0x0001, - RAIDEN_DEBUG_SPI_REQ_ENABLE_AP = 0x0002, - RAIDEN_DEBUG_SPI_REQ_ENABLE_EC = 0x0003, + RAIDEN_DEBUG_SPI_REQ_ENABLE = 0x0000, + RAIDEN_DEBUG_SPI_REQ_DISABLE = 0x0001, + RAIDEN_DEBUG_SPI_REQ_ENABLE_AP = 0x0002, + RAIDEN_DEBUG_SPI_REQ_ENABLE_EC = 0x0003, + RAIDEN_DEBUG_SPI_REQ_ENABLE_H1 = 0x0004, + RAIDEN_DEBUG_SPI_REQ_RESET = 0x0005, + RAIDEN_DEBUG_SPI_REQ_BOOT_CFG = 0x0006, + RAIDEN_DEBUG_SPI_REQ_SOCKET = 0x0007, + RAIDEN_DEBUG_SPI_REQ_SIGNING_START = 0x0008, + RAIDEN_DEBUG_SPI_REQ_SIGNING_SIGN = 0x0009, + }; /* |