summaryrefslogtreecommitdiff
path: root/common/host_command.c
diff options
context:
space:
mode:
authorAlec Berg <alecaberg@chromium.org>2014-08-14 18:31:05 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-08-26 23:06:23 +0000
commite913bc15b8a631757b362da09fc1385a7f509def (patch)
tree166afea132ba5e162988cb5346eeb48ba054d1a8 /common/host_command.c
parentb22c10ce2e5d8186cff4623dbf6fb18ee6a62017 (diff)
downloadchrome-ec-e913bc15b8a631757b362da09fc1385a7f509def.tar.gz
samus: add host commands for flashing zinger RW
This adds a new host commmand for sending RW updates to PD devices. The host command has a variety of sub-commands for performing the update, including: erase RW, reboot, write new hash, write flash. To program zinger RW, you should send host commands in this order: write new hash to all 0's reboot (zinger boots into RO since RW hash doesn't match) erase RW write flash write new hash to match contents of RW reboot This also adds an ectool command to write a new RW. Just pass it the RW .flat or .bin file. BUG=chrome-os-partner:31361 BRANCH=none TEST=ectool --dev=1 --interface=lpc flashpd 0 0 zinger.RW.flat Change-Id: Ia81615001b83ad7ee69b1af2bf1d7059177cde04 Signed-off-by: Alec Berg <alecaberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/213239 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'common/host_command.c')
-rw-r--r--common/host_command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/host_command.c b/common/host_command.c
index 22374059c6..6bb6176afd 100644
--- a/common/host_command.c
+++ b/common/host_command.c
@@ -531,7 +531,7 @@ static void host_command_debug_request(struct host_cmd_handler_args *args)
enum ec_status host_command_process(struct host_cmd_handler_args *args)
{
const struct host_command *cmd;
- enum ec_status rv;
+ int rv;
if (hcdebug)
host_command_debug_request(args);