mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 08:31:52 +00:00
This CL added the support for additional 5 adc channels on npcx7 series
ec. The pin-mux functionality of adc channels was already introduced in
CL 481561.
BRANCH=none
BUG=none
TEST=No build errors for all boards using npcx5 series.
Build poppy board and upload FW to platform. No issues found.
All 10 adc channels passed the test on npcx796f evb.
Change-Id: I2c7458958ff659fce78f265eefa160050dee7daf
Signed-off-by: Mulin Chao <mlchao@nuvoton.com>
Reviewed-on: https://chromium-review.googlesource.com/497526
Reviewed-by: Randall Spangler <rspangler@chromium.org>
49 lines
1.0 KiB
C
49 lines
1.0 KiB
C
/* Copyright (c) 2014 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.
|
|
*/
|
|
|
|
/* NPCX-specific ADC module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_ADC_CHIP_H
|
|
#define __CROS_EC_ADC_CHIP_H
|
|
|
|
/* Minimum and maximum values returned by raw ADC read. */
|
|
#define ADC_READ_MIN 0
|
|
#define ADC_READ_MAX 1023
|
|
#define ADC_MAX_VOLT 2816
|
|
|
|
/* ADC input channel select */
|
|
enum npcx_adc_input_channel {
|
|
NPCX_ADC_CH0 = 0,
|
|
NPCX_ADC_CH1,
|
|
NPCX_ADC_CH2,
|
|
NPCX_ADC_CH3,
|
|
NPCX_ADC_CH4,
|
|
#if defined(CHIP_FAMILY_NPCX7)
|
|
NPCX_ADC_CH5,
|
|
NPCX_ADC_CH6,
|
|
NPCX_ADC_CH7,
|
|
NPCX_ADC_CH8,
|
|
NPCX_ADC_CH9,
|
|
#endif
|
|
NPCX_ADC_CH_COUNT
|
|
};
|
|
|
|
/* Data structure to define ADC channels. */
|
|
struct adc_t {
|
|
const char *name;
|
|
enum npcx_adc_input_channel input_ch;
|
|
int factor_mul;
|
|
int factor_div;
|
|
int shift;
|
|
};
|
|
|
|
/*
|
|
* Boards must provide this list of ADC channel definitions. This must match
|
|
* the enum adc_channel list provided by the board.
|
|
*/
|
|
extern const struct adc_t adc_channels[];
|
|
|
|
#endif /* __CROS_EC_ADC_CHIP_H */
|