summaryrefslogtreecommitdiff
path: root/board/pompom/battery.c
blob: 7ce8eec202d98610a84000e863aec89b237b9964 (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
/* Copyright 2020 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.
 *
 * Battery pack vendor provided charging profile
 */

#include "battery_fuel_gauge.h"
#include "common.h"

const struct board_batt_params board_battery_info[] = {
	[BATTERY_BYD] = {
		.fuel_gauge = {
			.manuf_name = "BYD",
			.ship_mode = {
				.reg_addr = 0x00,
				.reg_data = { 0x0010, 0x0010 },
			},
			.fet = {
				.reg_addr = 0x0,
				.reg_mask = 0x2000,
				.disconnect_val = 0x2000,
			}
		},
		.batt_info = {
			.voltage_max        = 8800, /* mV */
			.voltage_normal     = 7700, /* mV */
			.voltage_min        = 6000, /* mV */
			.precharge_current  = 256,  /* mA */
			.start_charging_min_c = 0,
			.start_charging_max_c = 50,
			.charging_min_c     = 0,
			.charging_max_c     = 60,
			.discharging_min_c  = -20,
			.discharging_max_c  = 70,
		},
	},
};
BUILD_ASSERT(ARRAY_SIZE(board_battery_info) == BATTERY_TYPE_COUNT);

const enum battery_type DEFAULT_BATTERY_TYPE = BATTERY_BYD;