summaryrefslogtreecommitdiff
path: root/util/ec_sb_firmware_update.h
blob: 8737756cd4b91c759950f40b628a6bafec439241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* Copyright (c) 2014 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.
 *
 * Smart battery Firmware Update driver.
 * Ref: Common Smart Battery System Interface Specification v8.0.
 *
 * cmd.0x35, Write Word
 *   0x1000: Prepare to Update
 *   0x2000: End of Update
 *   0xF000: Update Firmware
 *
 * cmd.0x35, Read Word
 *   Firmware Update Status
 *
 * cmd.0x36 Write Block
 *   Send 32 byte firmware image
 *
 * cmd.0x37 Read Word
 *   Get Battery Information
 *   sequence:=b1,b0,b3,b2,b5,b5,b7,b6
 *
 * Command Sequence for Battery FW Update
 *
 *  0. cmd.0x35.read
 *  1. cmd.0x37.read
 *  2. cmd.0x35.write.0x1000
 *  3. cmd.0x35.read.status (optional)
 *  4. cmd.0x35.write.0xF000
 *  5. cmd.0x35.read.status
 *     if bit8-0, go to step 2
 *  6. cmd.0x36.write.32byte
 *  7. cmd.0x35.read.status
 *     if FEC.b13=1, go to step 6
 *     if fatal.b12=1, go to step 2
 *     if b11,b10,b9,b2,b1,b0; go to step 1
 *     if b5,b3; go to step 8
 *    (repeat 6,7)
 *  8. cmd.0x36.write.0x2000
 *  9. cmd.0x35.read.status
 */

#ifndef __CROS_EC_SB_FIRMWARE_UPDATE_H__
#define __CROS_EC_SB_FIRMWARE_UPDATE_H__

struct sb_fw_header {
	uint8_t signature[4]; /* "BTFW" */
	uint16_t hdr_version; /* 0x0100 */
	uint16_t pkg_version_major_minor;

	uint16_t vendor_id; /* 8,9 */
	uint16_t battery_type; /* A B */

	uint16_t fw_version; /* C D */
	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 */
};

/**
 * sb.fw.update.cmd.0x35, Read Word
 *    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 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_fatal_error:1; /* b12 */
	uint16_t fec_error:1; /* b13 */
	uint16_t busy:1; /* b14 */
	uint16_t rsvd15:1; /* b15 */
} __packed;

/**
 * sb.fw.update.cmd.0x37 Read Word
 *     Get Battery Information
 *     sequence:=b1,b0,b3,b2,b5,b5,b7,b6
 */
struct sb_fw_update_info {
	uint16_t maker_id;    /* b0, b1 */
	uint16_t hardware_id; /* b2, b3 */
	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_panasonic = 0x0002,
	sb_maker_id_sanyo     = 0x0003,
	sb_maker_id_sony      = 0x0004,
	sb_maker_id_simplo    = 0x0005,
	sb_maker_id_celxpert  = 0x0006,
};

/* if permanent error:b5,b3; go to setp8 */
#define SB_FW_UPDATE_PERMANENT_ERROR_MASK 0x0028

/* if firmware update fatal error:b12; go to step2 */
#define SB_FW_UPDATE_FW_FATAL_ERROR_MASK    0x1000
#define SB_FW_UPDATE_FW_FATAL_ERROR_RETRY_CNT 1  /* Retry Error cnt*/

/* if error:b11,b10,b9 b2,b1,b0; go to step1 */
#define SB_FW_UPDATE_ERROR_MASK           0x0E07
#define SB_FW_UPDATE_ERROR_RETRY_CNT      1  /* Retry Error cnt*/

/* if FEC.b13=1, go to step6 */
#define SB_FW_UPDATE_FEC_ERROR_MASK       0x2000 /* b13 */
#define SB_FW_UPDATE_FEC_ERROR_RETRY_CNT  1  /* b13.FEC retry cnt*/

/* if busy; retry 10 times */
#define SB_FW_UPDATE_BUSY_ERROR_MASK      0x4000 /* b14 */
#define SB_FW_UPDATE_BUSY_ERROR_RETRY_CNT 1  /* b14.busy retry cnt*/

/**
 * Update Smart Battery Firmware
 *
 * @param fw_image_name  firmware image name
 *
 * @return 0 if success, negative if error.
 */
int ec_sb_firmware_update(const char *fw_image_name);

#endif