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
|
/* Copyright 2019 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.
*/
#include "battery.h"
#include "battery_fuel_gauge.h"
#include "gpio.h"
const struct board_batt_params board_battery_info[] = {
/* Dynapack HIGHPOWER DAK124960-W110703HT Battery Information */
[BATTERY_DANAPACK_HIGHPOWER] = {
.fuel_gauge = {
.manuf_name = "333-2D-14-A",
.ship_mode = {
.reg_addr = 0x0,
.reg_data = { 0x0010, 0x0010 },
},
.fet = {
.mfgacc_support = 1,
.reg_addr = 0x0,
.reg_mask = 0x0006,
.disconnect_val = 0x0,
},
},
.batt_info = {
.voltage_max = 8700, /* mV */
.voltage_normal = 7600, /* mV */
.voltage_min = 6000, /* mV */
.precharge_current = 256, /* mA */
.start_charging_min_c = 0,
.start_charging_max_c = 45,
.charging_min_c = 0,
.charging_max_c = 45,
.discharging_min_c = -10,
.discharging_max_c = 60,
},
},
/* Dynapack CosMX DAK124960-W0P0707HT Battery Information */
[BATTERY_DANAPACK_COS] = {
.fuel_gauge = {
.manuf_name = "333-2C-14-A",
.ship_mode = {
.reg_addr = 0x0,
.reg_data = { 0x0010, 0x0010 },
},
.fet = {
.mfgacc_support = 1,
.reg_addr = 0x0,
.reg_mask = 0x0006,
.disconnect_val = 0x0,
},
},
.batt_info = {
.voltage_max = 8700, /* mV */
.voltage_normal = 7600, /* mV */
.voltage_min = 6000, /* mV */
.precharge_current = 256, /* mA */
.start_charging_min_c = 0,
.start_charging_max_c = 45,
.charging_min_c = 0,
.charging_max_c = 45,
.discharging_min_c = -10,
.discharging_max_c = 60,
},
},
};
BUILD_ASSERT(ARRAY_SIZE(board_battery_info) == BATTERY_TYPE_COUNT);
const enum battery_type DEFAULT_BATTERY_TYPE = BATTERY_DANAPACK_HIGHPOWER;
enum battery_present battery_hw_present(void)
{
return gpio_get_level(GPIO_EC_BATT_PRES_ODL) ? BP_NO : BP_YES;
}
|