blob: aa04ab824bf07e28ce990255315307b0ffcbe6c8 [file] [log] [blame]
#ifndef __LINUX_I2C_TM1927_H
#define __LINUX_I2C_TM1927_H
/* linux/i2c/tm1927.h */
typedef enum
{
TM1927_FAMILY_0,
TM1927_FAMILY_1,
TM1927_FAMILY_2,
TM1927_FAMILY_END,
} tm1927_product_family_t;
struct tm1927_fix_data {
u8 x_invert;
u8 y_invert;
u8 x_rescale;
u8 y_rescale;
u16 x_min;
u16 x_max;
u16 y_min;
u16 y_max;
u8 family_code;
u8 reserved1;
u16 reserved2;
};
struct tm1927_platform_data {
struct tm1927_fix_data fix[TM1927_FAMILY_END];
int (*get_pendown_state)(void);
void (*clear_penirq)(void);
int (*init_platform_hw)(void);
void (*exit_platform_hw)(void);
};
#endif