mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-29 10:00:51 +00:00
This adds the CCD configuration module, and the console commands to control it. It is not wired up to any of the CCD capabilities; that's coming in the next CL. Briefly: * CCD configuration is persistently stored in nvmem_vars. Use ccdinfo to print it. * CCD can be Locked, Unlocked (some capabilities), or Opened (all capabilities), using the ccdlock / ccdunlock / ccdopen commands. * CCD config can be restricted by setting a password via ccdpass. * Individual config capabilities can be set via ccdset. Some of those will be used to gate access to things like write protect and UARTs. Others affect the requirements for ccdunlock / ccdopen (for example, is physical presenc required). * The entire config can be reset via ccdreset. If only unlocked, config that is restricted to Opened is not reset. * If CR50_DEV=1, ccdoops will force-reset and open the config. See go/cr50-ccd-wp for more information. BUG=b:62537474 BRANCH=none TEST=manual with CR50_DEV=1 build gpioget # make sure GPIO_BATT_PRES_L=0 ccdlock # lock, because CR50_DEV=1 builds start unlocked ccdinfo # locked, flags=0, all capabilities default ccdpass # access denied (we're locked) ccdreset # access denied ccdset flashap always # access denied ccdunlock ccdinfo # unlocked ccdpass foo ccdinfo # flags=2 (password set when unlocked) ccdset flashap always # access denied ccdset uartectx unlesslocked ccdinfo # yes, uartectx permission changed ccdlock ccdunlock # fails without password ccdunlock bar # wrong password ccdunlock foo # busy (wait 3 sec) ccdunlock foo ccdreset ccdinfo # no password, flags 0, capabilities all default ccdopen # requires physical presence; tap power or use 'pp' ccdset uartectx unlesslocked ccdset batterybypasspp ifopened ccdpass baz ccdinfo # password set, flag 0, ccdset changes worked ccdunlock ccdreset ccdinfo # uartectx back to ifopened, password still set ccdopen baz # still requires physical presence ccdset opennolongpp always ccdlock ccdopen baz # no pp required ccdset unlocknoshortpp unlesslocked ccdlock ccdopen baz # short pp sequence required (3 taps) ccdlock ccdunlock baz # short pp sequence required ccdopen baz # pp not required ccdset unlocknoshortpp always ccdlock testlab open # access denied testlab enable # access denied ccdunlock baz testlab open # access denied testlab enable # access denied ccdopen baz testlab enable # requires short pp ccdinfo # flags 1 ccdreset ccdinfo # no password, flags=1, caps all default ccdlock testlab open ccdinfo # opened testlab disable # requires short pp; let it time out ccdinfo # still opened, flags=1 ccdlock ccdoops # backdoor in CR50_DEV images to force-reset CCD ccdinfo # opened, flags=0, all defaults (yes, oops wipes out testlab) ccdreset rma ccdinfo # flags = 0x400000, everything but Cr50FullConsole always ccdreset # back to flags=0, all default Change-Id: I24e8d8f361874671e6e94f27492ae00db919bea9 Reviewed-on: https://chromium-review.googlesource.com/569439 Commit-Ready: Randall Spangler <rspangler@chromium.org> Tested-by: Randall Spangler <rspangler@chromium.org> Reviewed-by: Vadim Bendebury <vbendeb@chromium.org>
104 lines
3.8 KiB
C
104 lines
3.8 KiB
C
/* Copyright (c) 2013 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.
|
|
*
|
|
* Symbols from linker definitions
|
|
*/
|
|
|
|
#ifndef __CROS_EC_LINK_DEFS_H
|
|
#define __CROS_EC_LINK_DEFS_H
|
|
|
|
#include "console.h"
|
|
#include "hooks.h"
|
|
#include "host_command.h"
|
|
#include "mkbp_event.h"
|
|
#include "task.h"
|
|
#include "test_util.h"
|
|
|
|
/* Console commands */
|
|
extern const struct console_command __cmds[];
|
|
extern const struct console_command __cmds_end[];
|
|
|
|
/* Extension commands. */
|
|
extern const void *__extension_cmds;
|
|
extern const void *__extension_cmds_end;
|
|
|
|
/* Hooks */
|
|
extern const struct hook_data __hooks_init[];
|
|
extern const struct hook_data __hooks_init_end[];
|
|
extern const struct hook_data __hooks_pre_freq_change[];
|
|
extern const struct hook_data __hooks_pre_freq_change_end[];
|
|
extern const struct hook_data __hooks_freq_change[];
|
|
extern const struct hook_data __hooks_freq_change_end[];
|
|
extern const struct hook_data __hooks_sysjump[];
|
|
extern const struct hook_data __hooks_sysjump_end[];
|
|
extern const struct hook_data __hooks_chipset_pre_init[];
|
|
extern const struct hook_data __hooks_chipset_pre_init_end[];
|
|
extern const struct hook_data __hooks_chipset_startup[];
|
|
extern const struct hook_data __hooks_chipset_startup_end[];
|
|
extern const struct hook_data __hooks_chipset_resume[];
|
|
extern const struct hook_data __hooks_chipset_resume_end[];
|
|
extern const struct hook_data __hooks_chipset_suspend[];
|
|
extern const struct hook_data __hooks_chipset_suspend_end[];
|
|
extern const struct hook_data __hooks_chipset_shutdown[];
|
|
extern const struct hook_data __hooks_chipset_shutdown_end[];
|
|
extern const struct hook_data __hooks_chipset_reset[];
|
|
extern const struct hook_data __hooks_chipset_reset_end[];
|
|
extern const struct hook_data __hooks_ac_change[];
|
|
extern const struct hook_data __hooks_ac_change_end[];
|
|
extern const struct hook_data __hooks_lid_change[];
|
|
extern const struct hook_data __hooks_lid_change_end[];
|
|
extern const struct hook_data __hooks_tablet_mode_change[];
|
|
extern const struct hook_data __hooks_tablet_mode_change_end[];
|
|
extern const struct hook_data __hooks_pwrbtn_change[];
|
|
extern const struct hook_data __hooks_pwrbtn_change_end[];
|
|
extern const struct hook_data __hooks_battery_soc_change[];
|
|
extern const struct hook_data __hooks_battery_soc_change_end[];
|
|
#ifdef CONFIG_CASE_CLOSED_DEBUG
|
|
extern const struct hook_data __hooks_ccd_change[];
|
|
extern const struct hook_data __hooks_ccd_change_end[];
|
|
#endif
|
|
extern const struct hook_data __hooks_tick[];
|
|
extern const struct hook_data __hooks_tick_end[];
|
|
extern const struct hook_data __hooks_second[];
|
|
extern const struct hook_data __hooks_second_end[];
|
|
|
|
/* Deferrable functions and firing times*/
|
|
extern const struct deferred_data __deferred_funcs[];
|
|
extern const struct deferred_data __deferred_funcs_end[];
|
|
extern uint64_t __deferred_until[];
|
|
extern uint64_t __deferred_until_end[];
|
|
|
|
/* I2C fake devices for unit testing */
|
|
extern const struct test_i2c_xfer __test_i2c_xfer[];
|
|
extern const struct test_i2c_xfer __test_i2c_xfer_end[];
|
|
|
|
/* Host commands */
|
|
extern const struct host_command __hcmds[];
|
|
extern const struct host_command __hcmds_end[];
|
|
|
|
/* MKBP events */
|
|
extern const struct mkbp_event_source __mkbp_evt_srcs[];
|
|
extern const struct mkbp_event_source __mkbp_evt_srcs_end[];
|
|
|
|
/* IRQs (interrupt handlers) */
|
|
extern const struct irq_priority __irqprio[];
|
|
extern const struct irq_priority __irqprio_end[];
|
|
extern const void *__irqhandler[];
|
|
|
|
/* Shared memory buffer. Use via shared_mem.h interface. */
|
|
extern uint8_t __shared_mem_buf[];
|
|
|
|
/* Image sections used by the TPM2 library */
|
|
extern uint8_t *__bss_libtpm2_start;
|
|
extern uint8_t *__bss_libtpm2_end;
|
|
extern uint8_t *__data_libtpm2_start;
|
|
extern uint8_t *__data_libtpm2_end;
|
|
|
|
/* Image sections. */
|
|
extern const void *__ro_end;
|
|
extern const void *__data_start;
|
|
extern const void *__data_end;
|
|
|
|
#endif /* __CROS_EC_LINK_DEFS_H */
|