summaryrefslogtreecommitdiff
path: root/zephyr/shim/include/zephyr_adc.h
blob: d4139692f70f083e1f9c4a94e7ab3344a7601fcd (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
/* Copyright 2021 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef __CROS_EC_ZEPHYR_ADC_H
#define __CROS_EC_ZEPHYR_ADC_H

#include <zephyr/drivers/adc.h>

#ifdef CONFIG_ADC

#define ZSHIM_ADC_ID(node_id) DT_STRING_UPPER_TOKEN(node_id, enum_name)

enum adc_channel {
#if DT_NODE_EXISTS(DT_INST(0, named_adc_channels))
	DT_FOREACH_CHILD_SEP(DT_INST(0, named_adc_channels), ZSHIM_ADC_ID,
			     (, )),
#endif /* named_adc_channels */
	ADC_CH_COUNT
};

struct adc_t {
	const char *name;
	const struct device *dev;
	uint8_t input_ch;
	int factor_mul;
	int factor_div;
	struct adc_channel_cfg channel_cfg;
};

#ifndef CONFIG_ADC_CHANNELS_RUNTIME_CONFIG
extern const struct adc_t adc_channels[];
#else
extern struct adc_t adc_channels[];
#endif /* CONFIG_ADC_CHANNELS_RUNTIME_CONFIG */
#else
/* Empty declaration to avoid warnings if adc.h is included */
enum adc_channel { ADC_CH_COUNT };
#endif /* CONFIG_ADC */

#endif /* __CROS_EC_ZEPHYR_ADC_H */