blob: 1dfed8005cda105d92c072f9e3061668f5fb9b19 [file] [log] [blame]
/*
* Copyright (C) 2009 Samsung Electronics
* Copyright (c) 2012-2014, NVIDIA CORPORATION. All rights reserved.
* Minkyu Kang <mk7.kang@samsung.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __MAX17048_BATTERY_H_
#define __MAX17048_BATTERY_H_
#include <linux/smb349-charger.h>
#define MAX17048_DATA_SIZE 64
struct max17048_battery_model {
uint8_t rcomp;
uint8_t soccheck_A;
uint8_t soccheck_B;
uint8_t bits;
uint8_t alert_threshold;
uint8_t one_percent_alerts;
uint8_t alert_on_reset;
uint16_t rcomp_seg;
uint16_t hibernate;
uint16_t vreset;
uint16_t valert;
uint16_t ocvtest;
uint8_t data_tbl[MAX17048_DATA_SIZE];
};
struct max17048_platform_data {
struct max17048_battery_model *model_data;
const char *tz_name;
int threshold_soc;
};
#ifdef CONFIG_BATTERY_MAX17048
extern void max17048_battery_status(int status);
#else
static inline void max17048_battery_status(int status) {}
static inline int max17048_check_battery(void) { return -ENODEV; }
#endif
#endif /* __MAX17048_BATTERY_H_ */