81 lines
1.7 KiB
C
81 lines
1.7 KiB
C
|
/* 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.
|
||
|
*
|
||
|
* Battery pack vendor provided charging profile
|
||
|
*/
|
||
|
|
||
|
#include "battery.h"
|
||
|
#include "battery_fuel_gauge.h"
|
||
|
#include "battery_smart.h"
|
||
|
#include "gpio.h"
|
||
|
#include "system.h"
|
||
|
|
||
|
static enum battery_present batt_pres_prev = BP_NOT_SURE;
|
||
|
|
||
|
enum battery_present __attribute__((weak)) variant_battery_present(void)
|
||
|
{
|
||
|
return BP_NOT_SURE;
|
||
|
}
|
||
|
|
||
|
enum battery_present battery_hw_present(void)
|
||
|
{
|
||
|
enum battery_present bp = variant_battery_present();
|
||
|
|
||
|
if (bp != BP_NOT_SURE)
|
||
|
return bp;
|
||
|
|
||
|
return gpio_get_level(GPIO_EC_BATT_PRES_ODL) ? BP_NO : BP_YES;
|
||
|
}
|
||
|
|
||
|
static int battery_init(void)
|
||
|
{
|
||
|
int batt_status;
|
||
|
|
||
|
return battery_status(&batt_status) ? 0 :
|
||
|
!!(batt_status & STATUS_INITIALIZED);
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Physical detection of battery.
|
||
|
*/
|
||
|
static enum battery_present battery_check_present_status(void)
|
||
|
{
|
||
|
enum battery_present batt_pres;
|
||
|
|
||
|
/* Get the physical hardware status */
|
||
|
batt_pres = battery_hw_present();
|
||
|
|
||
|
/*
|
||
|
* If the battery is not physically connected, then no need to perform
|
||
|
* any more checks.
|
||
|
*/
|
||
|
if (batt_pres != BP_YES)
|
||
|
return batt_pres;
|
||
|
|
||
|
/*
|
||
|
* If the battery is present now and was present last time we checked,
|
||
|
* return early.
|
||
|
*/
|
||
|
if (batt_pres == batt_pres_prev)
|
||
|
return batt_pres;
|
||
|
|
||
|
/*
|
||
|
* Ensure that battery is:
|
||
|
* 1. Not in cutoff
|
||
|
* 2. Initialized
|
||
|
*/
|
||
|
if (battery_is_cut_off() != BATTERY_CUTOFF_STATE_NORMAL ||
|
||
|
battery_init() == 0) {
|
||
|
batt_pres = BP_NO;
|
||
|
}
|
||
|
|
||
|
return batt_pres;
|
||
|
}
|
||
|
|
||
|
enum battery_present battery_is_present(void)
|
||
|
{
|
||
|
batt_pres_prev = battery_check_present_status();
|
||
|
return batt_pres_prev;
|
||
|
}
|