summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu-An Chen <yu-an.chen@quanta.corp-partner.google.com>2021-12-01 11:14:24 +0800
committerCommit Bot <commit-bot@chromium.org>2021-12-01 12:47:51 +0000
commit2bba58ee3dfb99c9ad3d12f91b74cb08afef72cb (patch)
tree9dfd7120211c5bd8a6d4824144a36a3f48ec1c48
parent762e1373319c42230923f7310d25a54d64697374 (diff)
downloadchrome-ec-2bba58ee3dfb99c9ad3d12f91b74cb08afef72cb.tar.gz
chronicler: Remove unused battery configuration
remove unused battery configuration BUG=b:190685811 BRANCH=volteer TEST=make BOARD=chronicler Signed-off-by: Yu-An Chen <yu-an.chen@quanta.corp-partner.google.com> Change-Id: I139f575aa6df111968580f4929d8cf328095488d Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3310019 Reviewed-by: Isaac Lee <isaaclee@google.com> Commit-Queue: Isaac Lee <isaaclee@google.com>
-rw-r--r--board/chronicler/battery.c36
-rw-r--r--board/chronicler/board.h1
2 files changed, 1 insertions, 36 deletions
diff --git a/board/chronicler/battery.c b/board/chronicler/battery.c
index 82347953ba..aee0095765 100644
--- a/board/chronicler/battery.c
+++ b/board/chronicler/battery.c
@@ -32,41 +32,7 @@
* address, mask, and disconnect value need to be provided.
*/
const struct board_batt_params board_battery_info[] = {
- /* Fujitsu CP813907-01 Battery Information */
- [BATTERY_FUJITSU_CP813907] = {
- .fuel_gauge = {
- .manuf_name = "Fujitsu",
- .device_name = "CP813907-01",
- .ship_mode = {
- .reg_addr = 0x00,
- .reg_data = { 0x10, 0x10 },
- },
- .fet = {
- .reg_addr = 0x00,
- .reg_mask = 0x2000,
- .disconnect_val = 0x2000,
- }
- },
- .batt_info = {
- .voltage_max = 13200, /* mV */
- .voltage_normal = 11550, /* mV */
- .voltage_min = 9000, /* mV */
- .precharge_current = 128, /* mA */
- .start_charging_min_c = 0,
- .start_charging_max_c = 45,
- .charging_min_c = 0,
- .charging_max_c = 55,
- .discharging_min_c = -20,
- .discharging_max_c = 60,
- },
- },
-
/* NVT CP813907-01 Battery Information */
- /*
- * NVT CP813907-01 Battery only use to support early
- * stage battery, all battery for PVT will update
- * manufacturer name to Fujitsu. See b/190685811.
- */
[BATTERY_NVT_CP813907] = {
.fuel_gauge = {
.manuf_name = "NVT",
@@ -97,4 +63,4 @@ const struct board_batt_params board_battery_info[] = {
};
BUILD_ASSERT(ARRAY_SIZE(board_battery_info) == BATTERY_TYPE_COUNT);
-const enum battery_type DEFAULT_BATTERY_TYPE = BATTERY_FUJITSU_CP813907;
+const enum battery_type DEFAULT_BATTERY_TYPE = BATTERY_NVT_CP813907;
diff --git a/board/chronicler/board.h b/board/chronicler/board.h
index 1a205d06ae..87d1c2a21f 100644
--- a/board/chronicler/board.h
+++ b/board/chronicler/board.h
@@ -137,7 +137,6 @@
#include "usbc_config.h"
enum battery_type {
- BATTERY_FUJITSU_CP813907,
BATTERY_NVT_CP813907,
BATTERY_TYPE_COUNT
};