Home
last modified time | relevance | path

Searched refs:coor_data (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/input/touchscreen/gt9xx/
H A Dgt9xx.c590 u8* coor_data = NULL; in goodix_ts_work_func() local
896 coor_data = &point_data[3]; in goodix_ts_work_func()
900 id = coor_data[pos] & 0x0F; in goodix_ts_work_func()
903 id = coor_data[pos]; in goodix_ts_work_func()
907 input_x = coor_data[pos + 1] | (coor_data[pos + 2] << 8); in goodix_ts_work_func()
908 input_y = coor_data[pos + 3] | (coor_data[pos + 4] << 8); in goodix_ts_work_func()
909 input_w = coor_data[pos + 5] | (coor_data[pos + 6] << 8); in goodix_ts_work_func()
933 input_x = coor_data[pos + 1] | (coor_data[pos + 2] << 8); in goodix_ts_work_func()
934 input_y = coor_data[pos + 3] | (coor_data[pos + 4] << 8); in goodix_ts_work_func()
935 input_w = coor_data[pos + 5] | (coor_data[pos + 6] << 8); in goodix_ts_work_func()
[all …]
/OK3568_Linux_fs/kernel/drivers/input/touchscreen/gt1x/
H A Dgt1x_generic.c1133 u8 *coor_data = NULL; in gt1x_touch_event_handler() local
1224 coor_data = &touch_data[1]; in gt1x_touch_event_handler()
1225 id = coor_data[0] & 0x7F; in gt1x_touch_event_handler()
1226 input_x = coor_data[1] | (coor_data[2] << 8); in gt1x_touch_event_handler()
1227 input_y = coor_data[3] | (coor_data[4] << 8); in gt1x_touch_event_handler()
1228 input_w = coor_data[5] | (coor_data[6] << 8); in gt1x_touch_event_handler()
1271 coor_data = &touch_data[1]; in gt1x_touch_event_handler()
1272 id = coor_data[0] & 0x0F; in gt1x_touch_event_handler()
1275 input_x = coor_data[1] | (coor_data[2] << 8); in gt1x_touch_event_handler()
1276 input_y = coor_data[3] | (coor_data[4] << 8); in gt1x_touch_event_handler()
[all …]
/OK3568_Linux_fs/kernel/drivers/input/touchscreen/
H A Dgoodix.c348 static void goodix_ts_report_touch_8b(struct goodix_ts_data *ts, u8 *coor_data) in goodix_ts_report_touch_8b() argument
350 int id = coor_data[0] & 0x0F; in goodix_ts_report_touch_8b()
351 int input_x = get_unaligned_le16(&coor_data[1]); in goodix_ts_report_touch_8b()
352 int input_y = get_unaligned_le16(&coor_data[3]); in goodix_ts_report_touch_8b()
353 int input_w = get_unaligned_le16(&coor_data[5]); in goodix_ts_report_touch_8b()
363 static void goodix_ts_report_touch_9b(struct goodix_ts_data *ts, u8 *coor_data) in goodix_ts_report_touch_9b() argument
365 int id = coor_data[1] & 0x0F; in goodix_ts_report_touch_9b()
366 int input_x = get_unaligned_le16(&coor_data[3]); in goodix_ts_report_touch_9b()
367 int input_y = get_unaligned_le16(&coor_data[5]); in goodix_ts_report_touch_9b()
368 int input_w = get_unaligned_le16(&coor_data[7]); in goodix_ts_report_touch_9b()