summaryrefslogtreecommitdiff
path: root/chip/npcx/system_chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/npcx/system_chip.h')
-rw-r--r--chip/npcx/system_chip.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/chip/npcx/system_chip.h b/chip/npcx/system_chip.h
index 2314f1458a..2ee5f8aff0 100644
--- a/chip/npcx/system_chip.h
+++ b/chip/npcx/system_chip.h
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -9,34 +9,34 @@
#define __CROS_EC_SYSTEM_CHIP_H
/* Flags for BBRM_DATA_INDEX_WAKE */
-#define HIBERNATE_WAKE_MTC BIT(0) /* MTC alarm */
-#define HIBERNATE_WAKE_PIN BIT(1) /* Wake pin */
-#define HIBERNATE_WAKE_LCT BIT(2) /* LCT alarm */
+#define HIBERNATE_WAKE_MTC BIT(0) /* MTC alarm */
+#define HIBERNATE_WAKE_PIN BIT(1) /* Wake pin */
+#define HIBERNATE_WAKE_LCT BIT(2) /* LCT alarm */
/*
* Indicate that EC enters hibernation via PSL. When EC wakes up from
* hibernation and this flag is set, it will check the related status bit to
* know the actual wake up source. (From LCT or physical wakeup pins)
*/
-#define HIBERNATE_WAKE_PSL BIT(3)
+#define HIBERNATE_WAKE_PSL BIT(3)
/* Indices for battery-backed ram (BBRAM) data position */
enum bbram_data_index {
- BBRM_DATA_INDEX_SCRATCHPAD = 0, /* General-purpose scratchpad */
+ BBRM_DATA_INDEX_SCRATCHPAD = 0, /* General-purpose scratchpad */
BBRM_DATA_INDEX_SAVED_RESET_FLAGS = 4, /* Saved reset flags */
- BBRM_DATA_INDEX_WAKE = 8, /* Wake reasons for hibernate */
- BBRM_DATA_INDEX_PD0 = 12, /* USB-PD saved port0 state */
- BBRM_DATA_INDEX_PD1 = 13, /* USB-PD saved port1 state */
- BBRM_DATA_INDEX_TRY_SLOT = 14, /* Vboot EC try slot */
- BBRM_DATA_INDEX_PD2 = 15, /* USB-PD saved port2 state */
+ BBRM_DATA_INDEX_WAKE = 8, /* Wake reasons for hibernate */
+ BBRM_DATA_INDEX_PD0 = 12, /* USB-PD saved port0 state */
+ BBRM_DATA_INDEX_PD1 = 13, /* USB-PD saved port1 state */
+ BBRM_DATA_INDEX_TRY_SLOT = 14, /* Vboot EC try slot */
+ BBRM_DATA_INDEX_PD2 = 15, /* USB-PD saved port2 state */
/* Index 16-31 available for future use */
- BBRM_DATA_INDEX_RAMLOG = 32, /* RAM log for Booter */
- BBRM_DATA_INDEX_PANIC_FLAGS = 35, /* Flag to indicate validity of
- * panic data starting at index
- * 36.
- */
- BBRM_DATA_INDEX_PANIC_BKUP = 36, /* Panic data (index 35-63)*/
- BBRM_DATA_INDEX_LCT_TIME = 64, /* The start time of LCT(4 bytes)
- */
+ BBRM_DATA_INDEX_RAMLOG = 32, /* RAM log for Booter */
+ BBRM_DATA_INDEX_PANIC_FLAGS = 35, /* Flag to indicate validity of
+ * panic data starting at index
+ * 36.
+ */
+ BBRM_DATA_INDEX_PANIC_BKUP = 36, /* Panic data (index 35-63)*/
+ BBRM_DATA_INDEX_LCT_TIME = 64, /* The start time of LCT(4 bytes)
+ */
};
enum psl_pin_t {
@@ -69,7 +69,7 @@ void system_check_bbram_on_reset(void);
#if defined(CHIP_FAMILY_NPCX5)
/* Bypass for GMDA issue of ROM api utilities only on npcx5 series */
void system_download_from_flash(uint32_t srcAddr, uint32_t dstAddr,
- uint32_t size, uint32_t exeAddr);
+ uint32_t size, uint32_t exeAddr);
/* Begin address for hibernate utility; defined in linker script */
extern unsigned int __flash_lpfw_start;