summaryrefslogtreecommitdiff
path: root/util/ec_sb_firmware_update.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/ec_sb_firmware_update.h')
-rw-r--r--util/ec_sb_firmware_update.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/util/ec_sb_firmware_update.h b/util/ec_sb_firmware_update.h
index 5bddebaf4a..2757dca9a5 100644
--- a/util/ec_sb_firmware_update.h
+++ b/util/ec_sb_firmware_update.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.
*
@@ -55,7 +55,7 @@ struct sb_fw_header {
uint16_t data_table_version; /* E F */
uint32_t fw_binary_offset; /*0x10 0x11 0x12 0x13 */
uint32_t fw_binary_size; /* 0x14 0x15 0x16 0x17 */
- uint8_t checksum; /* 0x18 */
+ uint8_t checksum; /* 0x18 */
};
/**
@@ -63,25 +63,25 @@ struct sb_fw_header {
* Firmware Update Status
*/
struct sb_fw_update_status {
- uint16_t v_fail_maker_id:1; /* b0 */
- uint16_t v_fail_hw_id:1; /* b1 */
- uint16_t v_fail_fw_version:1; /* b2 */
- uint16_t v_fail_permanent:1; /* b3 */
+ uint16_t v_fail_maker_id : 1; /* b0 */
+ uint16_t v_fail_hw_id : 1; /* b1 */
+ uint16_t v_fail_fw_version : 1; /* b2 */
+ uint16_t v_fail_permanent : 1; /* b3 */
- uint16_t rsvd5:1; /* b4 */
- uint16_t permanent_failure:1; /* b5 */
- uint16_t abnormal_condition:1; /* b6 */
- uint16_t fw_update_supported:1; /* b7 */
+ uint16_t rsvd5 : 1; /* b4 */
+ uint16_t permanent_failure : 1; /* b5 */
+ uint16_t abnormal_condition : 1; /* b6 */
+ uint16_t fw_update_supported : 1; /* b7 */
- uint16_t fw_update_mode:1; /* b8 */
- uint16_t fw_corrupted:1; /* b9 */
- uint16_t cmd_reject:1; /* b10 */
- uint16_t invalid_data:1; /* b11 */
+ uint16_t fw_update_mode : 1; /* b8 */
+ uint16_t fw_corrupted : 1; /* b9 */
+ uint16_t cmd_reject : 1; /* b10 */
+ uint16_t invalid_data : 1; /* b11 */
- uint16_t fw_fatal_error:1; /* b12 */
- uint16_t fec_error:1; /* b13 */
- uint16_t busy:1; /* b14 */
- uint16_t rsvd15:1; /* b15 */
+ uint16_t fw_fatal_error : 1; /* b12 */
+ uint16_t fec_error : 1; /* b13 */
+ uint16_t busy : 1; /* b14 */
+ uint16_t rsvd15 : 1; /* b15 */
} __packed;
/**
@@ -90,22 +90,22 @@ struct sb_fw_update_status {
* sequence:=b1,b0,b3,b2,b5,b5,b7,b6
*/
struct sb_fw_update_info {
- uint16_t maker_id; /* b0, b1 */
+ uint16_t maker_id; /* b0, b1 */
uint16_t hardware_id; /* b2, b3 */
- uint16_t fw_version; /* b4, b5 */
- uint16_t data_version;/* b6, b7 */
+ uint16_t fw_version; /* b4, b5 */
+ uint16_t data_version; /* b6, b7 */
} __packed;
/**
* smart.battery.maker.id
*/
enum sb_maker_id {
- sb_maker_id_lgc = 0x0001, /* b0=0; b1=1 */
+ sb_maker_id_lgc = 0x0001, /* b0=0; b1=1 */
sb_maker_id_panasonic = 0x0002,
- sb_maker_id_sanyo = 0x0003,
- sb_maker_id_sony = 0x0004,
- sb_maker_id_simplo = 0x0005,
- sb_maker_id_celxpert = 0x0006,
+ sb_maker_id_sanyo = 0x0003,
+ sb_maker_id_sony = 0x0004,
+ sb_maker_id_simplo = 0x0005,
+ sb_maker_id_celxpert = 0x0006,
};
/*
@@ -119,8 +119,8 @@ enum sb_maker_id {
* case 5. If battery interface is busy, retry < 10 times.
* Delay 1 second between retries.
*/
-#define SB_FW_UPDATE_ERROR_RETRY_CNT 2
-#define SB_FW_UPDATE_FEC_ERROR_RETRY_CNT 2
+#define SB_FW_UPDATE_ERROR_RETRY_CNT 2
+#define SB_FW_UPDATE_FEC_ERROR_RETRY_CNT 2
#define SB_FW_UPDATE_BUSY_ERROR_RETRY_CNT 4
#endif