38 lines
944 B
C
38 lines
944 B
C
/*
|
|
* include/linux/platform_data/goodix_touch.h
|
|
*
|
|
* Copyright (C) 2016 FriendlyARM (www.arm9.net)
|
|
*
|
|
* This software is licensed under the terms of the GNU General Public
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
* may be copied, distributed, and modified under those terms.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#ifndef __PLAT_GOODIX_TOUCH_H__
|
|
#define __PLAT_GOODIX_TOUCH_H__
|
|
|
|
|
|
struct goodix_i2c_platform_data {
|
|
uint32_t gpio_irq; // IRQ port
|
|
uint32_t irq_cfg;
|
|
|
|
uint32_t gpio_wakeup; // Wakeup support
|
|
uint32_t wakeup_cfg;
|
|
|
|
uint32_t gpio_reset; // Reset support
|
|
uint32_t reset_cfg;
|
|
|
|
int screen_max_x;
|
|
int screen_max_y;
|
|
int pressure_max;
|
|
};
|
|
|
|
#endif // __PLAT_GOODIX_TOUCH_H__
|
|
|