44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
#ifndef __TMP_BTS_H__
|
|
#define __TMP_BTS_H__
|
|
|
|
/* chip dependent */
|
|
|
|
#define APPLY_PRECISE_NTC_TABLE
|
|
#define APPLY_AUXADC_CALI_DATA
|
|
|
|
#define AUX_IN0_NTC (0)
|
|
#define AUX_IN1_NTC (1)
|
|
|
|
#define BTS_RAP_PULL_UP_R 390000 /* 390K, pull up resister */
|
|
|
|
#define BTS_TAP_OVER_CRITICAL_LOW 4397119 /* base on 100K NTC temp
|
|
* default value -40 deg
|
|
*/
|
|
|
|
#define BTS_RAP_PULL_UP_VOLTAGE 1800 /* 1.8V ,pull up voltage */
|
|
|
|
#define BTS_RAP_NTC_TABLE 7 /* default is NCP15WF104F03RC(100K) */
|
|
|
|
#define BTS_RAP_ADC_CHANNEL AUX_IN0_NTC /* default is 0 */
|
|
|
|
#define BTSMDPA_RAP_PULL_UP_R 390000 /* 390K, pull up resister */
|
|
|
|
#define BTSMDPA_TAP_OVER_CRITICAL_LOW 4397119 /* base on 100K NTC temp
|
|
* default value -40 deg
|
|
*/
|
|
|
|
#define BTSMDPA_RAP_PULL_UP_VOLTAGE 1800 /* 1.8V ,pull up voltage */
|
|
|
|
#define BTSMDPA_RAP_NTC_TABLE 7 /* default is NCP15WF104F03RC(100K) */
|
|
|
|
#define BTSMDPA_RAP_ADC_CHANNEL AUX_IN1_NTC /* default is 1 */
|
|
|
|
extern int IMM_GetOneChannelValue(int dwChannel, int data[4], int *rawdata);
|
|
extern int IMM_IsAdcInitReady(void);
|
|
|
|
#endif /* __TMP_BTS_H__ */
|