Lines Matching refs:touch_data
202 u8 *touch_data; member
831 rc = gsl_ts_read(ts->client, 0x80, ts->touch_data, ts->dd->data_size); in gsl3673_ts_worker()
836 touches = ts->touch_data[ts->dd->touch_index]; in gsl3673_ts_worker()
840 cinfo.x[i] = join_bytes((ts->touch_data[ts->dd->x_index + in gsl3673_ts_worker()
841 4 * i + 1] & 0xf), ts->touch_data[ts->dd->x_index + 4 * i]); in gsl3673_ts_worker()
842 cinfo.y[i] = join_bytes(ts->touch_data[ts->dd->y_index + 4 * i + 1], in gsl3673_ts_worker()
843 ts->touch_data[ts->dd->y_index + 4 * i]); in gsl3673_ts_worker()
844 cinfo.id[i] = ((ts->touch_data[ts->dd->x_index + 4 * i + 1] in gsl3673_ts_worker()
847 cinfo.finger_num = (ts->touch_data[3] << 24) | (ts->touch_data[2] << 16) in gsl3673_ts_worker()
848 | (ts->touch_data[1] << 8) | (ts->touch_data[0]); in gsl3673_ts_worker()
879 x = join_bytes((ts->touch_data[ts->dd->x_index + 4 * i + 1] in gsl3673_ts_worker()
880 & 0xf), ts->touch_data[ts->dd->x_index + 4 * i]); in gsl3673_ts_worker()
881 y = join_bytes(ts->touch_data[ts->dd->y_index + 4 * i + 1], in gsl3673_ts_worker()
882 ts->touch_data[ts->dd->y_index + 4 * i]); in gsl3673_ts_worker()
883 id = ts->touch_data[ts->dd->id_index + 4 * i] >> 4; in gsl3673_ts_worker()
1011 ts->touch_data = devm_kzalloc(&client->dev, in gsl3673_ts_init()
1013 if (!ts->touch_data) in gsl3673_ts_init()