blob: 21729ed1b836dbe041300e2c2d0d5bd30ef79ad6 [file] [log] [blame]
#ifndef __LINUX_I2C_TM1510_H
#define __LINUX_I2C_TM1510_H
/* linux/i2c/tm1510.h */
typedef enum
{
TM1510_FAMILY_0,
TM1510_FAMILY_1,
TM1510_FAMILY_2,
TM1510_FAMILY_END,
} tm1510_product_family_t;
struct tm1510_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 tm1510_platform_data {
struct tm1510_fix_data fix[TM1510_FAMILY_END];
int (*get_pendown_state)(void);
void (*clear_penirq)(void);
int (*init_platform_hw)(void);
void (*exit_platform_hw)(void);
};
#endif