116 lines
2.9 KiB
C
Executable file
116 lines
2.9 KiB
C
Executable file
/* SPDX-License-Identifier: GPL-2.0
|
|
* aw87xxx_monitor.h
|
|
*
|
|
* Copyright (c) 2021 AWINIC Technology CO., LTD
|
|
*
|
|
* Author: Barry <zhaozhongbo@awinic.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version.
|
|
*/
|
|
|
|
#ifndef __AW87XXX_MONITOR_H__
|
|
#define __AW87XXX_MONITOR_H__
|
|
|
|
#define AW_WAIT_DSP_OPEN_TIME (3000)
|
|
#define AW_VBAT_CAPACITY_MIN (0)
|
|
#define AW_VBAT_CAPACITY_MAX (100)
|
|
#define AW_VMAX_INIT_VAL (0xFFFFFFFF)
|
|
#define AW_VBAT_MAX (100)
|
|
#define AW_VMAX_MAX (0)
|
|
#define AW_DEFAULT_MONITOR_TIME (3000)
|
|
#define AW_WAIT_TIME (3000)
|
|
#define REG_STATUS_CHECK_MAX (5)
|
|
#define AW_ESD_CHECK_DELAY (1)
|
|
#define AW_MONOTOR_ESD_ERR_CNT_MAX (3)
|
|
|
|
|
|
#define AW_MONITOR_TIME_MIN (0)
|
|
#define AW_MONITOR_TIME_MAX (50000)
|
|
|
|
|
|
#define AW_ESD_ENABLE (true)
|
|
#define AW_ESD_DISABLE (false)
|
|
#define AW_ESD_ENABLE_STRLEN (16)
|
|
|
|
enum aw_monitor_init {
|
|
AW_MONITOR_CFG_WAIT = 0,
|
|
AW_MONITOR_CFG_OK = 1,
|
|
};
|
|
|
|
enum aw_monitor_hdr_info {
|
|
AW_MONITOR_HDR_DATA_SIZE = 0x00000004,
|
|
AW_MONITOR_HDR_DATA_BYTE_LEN = 0x00000004,
|
|
};
|
|
|
|
enum aw_monitor_data_ver {
|
|
AW_MONITOR_DATA_VER = 0x00000001,
|
|
AW_MONITOR_DATA_VER_MAX,
|
|
};
|
|
|
|
enum aw_monitor_first_enter {
|
|
AW_FIRST_ENTRY = 0,
|
|
AW_NOT_FIRST_ENTRY = 1,
|
|
};
|
|
|
|
struct aw_bin_header {
|
|
uint32_t check_sum;
|
|
uint32_t header_ver;
|
|
uint32_t bin_data_type;
|
|
uint32_t bin_data_ver;
|
|
uint32_t bin_data_size;
|
|
uint32_t ui_ver;
|
|
char product[8];
|
|
uint32_t addr_byte_len;
|
|
uint32_t data_byte_len;
|
|
uint32_t device_addr;
|
|
uint32_t reserve[4];
|
|
};
|
|
|
|
struct aw_monitor_header {
|
|
uint32_t monitor_switch;
|
|
uint32_t monitor_time;
|
|
uint32_t monitor_count;
|
|
uint32_t step_count;
|
|
uint32_t reserve[4];
|
|
};
|
|
|
|
struct vmax_step_config {
|
|
uint32_t vbat_min;
|
|
uint32_t vbat_max;
|
|
int vmax_vol;
|
|
};
|
|
|
|
struct aw_monitor {
|
|
bool open_dsp_en;
|
|
bool esd_enable;
|
|
int32_t dev_index;
|
|
uint8_t first_entry;
|
|
uint8_t timer_cnt;
|
|
uint32_t vbat_sum;
|
|
int32_t custom_capacity;
|
|
uint32_t pre_vmax;
|
|
uint32_t esd_err_cnt;
|
|
|
|
int bin_status;
|
|
struct aw_monitor_header monitor_hdr;
|
|
struct vmax_step_config *vmax_cfg;
|
|
|
|
struct delayed_work with_dsp_work;
|
|
};
|
|
|
|
void aw87xxx_monitor_cfg_free(struct aw_monitor *monitor);
|
|
int aw87xxx_monitor_bin_parse(struct device *dev,
|
|
char *monitor_data, uint32_t data_len);
|
|
void aw87xxx_monitor_stop(struct aw_monitor *monitor);
|
|
void aw87xxx_monitor_start(struct aw_monitor *monitor);
|
|
int aw87xxx_monitor_no_dsp_get_vmax(struct aw_monitor *monitor,
|
|
int32_t *vmax);
|
|
void aw87xxx_monitor_init(struct device *dev, struct aw_monitor *monitor,
|
|
struct device_node *dev_node);
|
|
void aw87xxx_monitor_exit(struct aw_monitor *monitor);
|
|
int aw87xxx_dev_monitor_switch_set(struct aw_monitor *monitor, uint32_t enable);
|
|
|
|
#endif
|