mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 10:31:02 +00:00
Added version mask field to DECLARE_HOST_COMMAND() because it's convenient to do so when I'm touching all host command implementations, but all commands simply declare version 0 and nothing checks it yet. Will add version support in a followup CL. This change is internal to the EC; it does not change the data sent over the host interface. BUG=chrome-os-partner:11275 TEST=manual ectool version && ectool echash; should get sane data from both ectool flashread 0x80 0x40 /tmp/foo && od -tx1 /tmp/foo should match data from offset 0x80 of ec.bin (od -j128 -n64 -tx1 ec.bin) Change-Id: I5699f72b8d5e1ac23929353c9a34158d76c44206 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/27172 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* Verified boot module for Chrome EC */
|
|
|
|
#include "common.h"
|
|
#include "console.h"
|
|
#include "host_command.h"
|
|
#include "system.h"
|
|
#include "vboot.h"
|
|
|
|
/* Console output macros */
|
|
#define CPUTS(outstr) cputs(CC_VBOOT, outstr)
|
|
#define CPRINTF(format, args...) cprintf(CC_VBOOT, format, ## args)
|
|
|
|
int vboot_pre_init(void)
|
|
{
|
|
/* FIXME(wfrichar): crosbug.com/p/7453: should protect flash */
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
/****************************************************************************/
|
|
/* Host commands */
|
|
|
|
static int host_cmd_vboot(struct host_cmd_handler_args *args)
|
|
{
|
|
const struct ec_params_vboot_cmd *p =
|
|
(const struct ec_params_vboot_cmd *)args->params;
|
|
struct ec_params_vboot_cmd *r =
|
|
(struct ec_params_vboot_cmd *)args->response;
|
|
uint8_t v;
|
|
|
|
switch (p->in.cmd) {
|
|
case VBOOT_CMD_GET_FLAGS:
|
|
v = VBOOT_FLAGS_IMAGE_MASK & system_get_image_copy();
|
|
r->out.get_flags.val = v;
|
|
args->response_size = sizeof(r);
|
|
break;
|
|
case VBOOT_CMD_SET_FLAGS:
|
|
v = p->in.set_flags.val;
|
|
break;
|
|
default:
|
|
CPRINTF("[%T LB bad cmd 0x%x]\n", p->in.cmd);
|
|
return EC_RES_INVALID_PARAM;
|
|
}
|
|
|
|
return EC_RES_SUCCESS;
|
|
}
|
|
|
|
DECLARE_HOST_COMMAND(EC_CMD_VBOOT_CMD,
|
|
host_cmd_vboot,
|
|
EC_VER_MASK(0));
|