Lines Matching +full:event +full:- +full:touch
25 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
42 * Boot-time registers. This is the device map
72 uint8_t id; /* 1-15 incremented each touch */
73 } touch[CYAPA_MAX_MT]; member
77 uint8_t prod_ida[5]; /* 0x00 - 0x04 */
78 uint8_t prod_idb[6]; /* 0x05 - 0x0A */
79 uint8_t prod_idc[2]; /* 0x0B - 0x0C */
80 uint8_t reserved[6]; /* 0x0D - 0x12 */
107 #define CYAPA_TOUCH_X(regs, i) ((((regs)->touch[i].xy_high << 4) & 0x0F00) | \
108 (regs)->touch[i].x_low)
109 #define CYAPA_TOUCH_Y(regs, i) ((((regs)->touch[i].xy_high << 8) & 0x0F00) | \
110 (regs)->touch[i].y_low)
111 #define CYAPA_TOUCH_P(regs, i) ((regs)->touch[i].pressure)