tizen 2.4 release
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / include / linux / input / zt7554_platform_data.h
1 /*
2  * Zinitix zt7554 touchscreen driver - Platform Data
3  *
4  * Copyright (C) 2013 Samsung Electronics Co.Ltd
5  *
6  * Default path : linux/input/zt7554_platform_data.h
7  *
8  */
9
10 #ifndef _LINUX_ZT7554_TOUCH_H
11 #define _LINUX_ZT7554_TOUCH_H
12
13 struct zt7554_ts_platform_data {
14         int             gpio_int;
15         int             gpio_scl;
16         int             gpio_sda;
17         int             gpio_ldo_en;
18         int             (*tsp_power)(struct i2c_client *client, int on, int gpio_ctrl_pin);
19         u32             x_resolution;
20         u32             y_resolution;
21         const char      *fw_name;
22         const char      *ext_fw_name;
23         u32             page_size;
24         u32             orientation;
25         u32             tsp_supply_type;
26         int             gpio_ctrl_pin;
27 };
28
29 #endif
30