coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
tsadc.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __SOC_ROCKCHIP_RK3399_TSADC_H__
4 #define __SOC_ROCKCHIP_RK3399_TSADC_H__
5 
6 #include <stdint.h>
7 
8 enum {
9  TSHUT_POL_HIGH = 1 << 8,
10  TSHUT_POL_LOW = 0 << 8
11 };
12 
13 void tsadc_init(uint32_t polarity);
14 
15 #endif
void tsadc_init(void)
Definition: tsadc.c:66
@ TSHUT_POL_LOW
Definition: tsadc.h:10
@ TSHUT_POL_HIGH
Definition: tsadc.h:9
unsigned int uint32_t
Definition: stdint.h:14