Searched refs:tsdata (Results 1 – 4 of 4) sorted by relevance
/linux/drivers/input/touchscreen/ |
H A D | edt-ft5x06.c | 339 touchscreen_report_pos(tsdata->input, &tsdata->prop, in edt_ft5x06_ts_isr() 620 tsdata->raw_bufsize = tsdata->num_x * tsdata->num_y * in edt_ft5x06_factory_mode() 756 if (!tsdata->factory_mode || !tsdata->raw_buffer) { in edt_ft5x06_debugfs_raw_data_read() 827 tsdata->debug_dir, tsdata, &debugfs_mode_fops); in edt_ft5x06_ts_prepare_debugfs() 829 tsdata->debug_dir, tsdata, &debugfs_raw_data_fops); in edt_ft5x06_ts_prepare_debugfs() 1066 tsdata->tdata_len = tsdata->point_len * tsdata->max_support_points + in edt_ft5x06_ts_set_tdata_parameters() 1154 if (!tsdata) { in edt_ft5x06_ts_probe() 1171 tsdata); in edt_ft5x06_ts_probe() 1217 tsdata); in edt_ft5x06_ts_probe() 1315 tsdata->name, tsdata->fw_version, tsdata->num_x, tsdata->num_y); in edt_ft5x06_ts_probe() [all …]
|
H A D | hycon-hy46xx.c | 135 touchscreen_report_pos(tsdata->input, &tsdata->prop, in hycon_hy46xx_isr() 140 input_sync(tsdata->input); in hycon_hy46xx_isr() 330 tsdata->gain = val; in hycon_hy46xx_get_defaults() 355 tsdata->threshold = val; in hycon_hy46xx_get_parameters() 380 tsdata->gain = val; in hycon_hy46xx_get_parameters() 447 tsdata = devm_kzalloc(&client->dev, sizeof(*tsdata), GFP_KERNEL); in hycon_hy46xx_probe() 448 if (!tsdata) in hycon_hy46xx_probe() 468 tsdata); in hycon_hy46xx_probe() 496 tsdata->client = client; in hycon_hy46xx_probe() 497 tsdata->input = input; in hycon_hy46xx_probe() [all …]
|
H A D | pixcir_i2c_ts.c | 113 dev_err(&tsdata->client->dev, in pixcir_ts_parse() 121 dev_err(&tsdata->client->dev, in pixcir_ts_parse() 196 while (tsdata->running) { in pixcir_ts_isr() 473 tsdata = devm_kzalloc(dev, sizeof(*tsdata), GFP_KERNEL); in pixcir_i2c_ts_probe() 474 if (!tsdata) in pixcir_i2c_ts_probe() 478 if (!tsdata->chip && id) in pixcir_i2c_ts_probe() 480 if (!tsdata->chip) { in pixcir_i2c_ts_probe() 491 tsdata->client = client; in pixcir_i2c_ts_probe() 492 tsdata->input = input; in pixcir_i2c_ts_probe() 540 if (tsdata->gpio_enable) in pixcir_i2c_ts_probe() [all …]
|
H A D | tsc200x-core.c | 150 if (unlikely(tsdata.x > MAX_12BIT || tsdata.y > MAX_12BIT)) in tsc200x_irq_thread() 154 if (unlikely(tsdata.z1 == 0 || tsdata.z2 > MAX_12BIT)) in tsc200x_irq_thread() 156 if (unlikely(tsdata.z1 >= tsdata.z2)) in tsc200x_irq_thread() 164 ts->in_x == tsdata.x && ts->in_y == tsdata.y && in tsc200x_irq_thread() 165 ts->in_z1 == tsdata.z1 && ts->in_z2 == tsdata.z2) { in tsc200x_irq_thread() 173 ts->in_x = tsdata.x; in tsc200x_irq_thread() 174 ts->in_y = tsdata.y; in tsc200x_irq_thread() 175 ts->in_z1 = tsdata.z1; in tsc200x_irq_thread() 176 ts->in_z2 = tsdata.z2; in tsc200x_irq_thread() 179 pressure = tsdata.x * (tsdata.z2 - tsdata.z1) / tsdata.z1; in tsc200x_irq_thread() [all …]
|