summaryrefslogtreecommitdiff
path: root/driver/temp_sensor/ec_adc.c
blob: 196d191e47d71d57ec6c0b1654cf92328ddead9d (plain)
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
/* Copyright 2015 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.
 */

/* EC_ADC driver for Chrome EC */

#include "adc.h"
#include "common.h"
#include "console.h"
#include "ec_adc.h"
#include "temp_sensor/thermistor.h"
#include "util.h"

/* Get temperature from requested sensor */
static int get_temp(int idx, int *temp_ptr)
{
	int temp_raw = 0;

	/* Read 10-bit ADC result */
	temp_raw = adc_read_channel(idx);

	if (temp_raw == ADC_READ_ERROR)
		return EC_ERROR_UNKNOWN;

	/* TODO : Need modification here if the result is not 10-bit */

	/* If there is no thermistor calculation function.
	 *  1. Add adjusting function like thermistor_ncp15wb.c
	 *  2. Place function here with ifdef
	 *  3. define it on board.h
	 */
#ifdef CONFIG_THERMISTOR_NCP15WB
	*temp_ptr = ncp15wb_calculate_temp((uint16_t) temp_raw);
#else
#error "Unknown thermistor for ec_adc"
	return EC_ERROR_UNKNOWN;
#endif

	return EC_SUCCESS;
}

int ec_adc_get_val(int idx, int *temp_ptr)
{
	int ret;
	int temp_c;

	if(idx < 0 || idx >= ADC_CH_COUNT)
		return EC_ERROR_INVAL;

	ret = get_temp(idx, &temp_c);
	if (ret == EC_SUCCESS)
		*temp_ptr = C_TO_K(temp_c);

	return ret;
}