/linux-4.1.27/drivers/input/touchscreen/ |
D | penmount.c | 203 int max_x, max_y; in pm_connect() local 235 max_x = max_y = 0x3ff; in pm_connect() 242 max_x = max_y = 0x3ff; in pm_connect() 249 max_x = max_y = 0x7ff; in pm_connect() 257 max_x = max_y = 0x3ff; in pm_connect() 263 input_set_abs_params(pm->dev, ABS_Y, 0, max_y, 0, 0); in pm_connect() 270 ABS_MT_POSITION_Y, 0, max_y, 0, 0); in pm_connect()
|
D | chipone_icn8318.c | 56 u32 max_y; member 134 y = data->max_y - y; in icn8318_irq() 227 of_property_read_u32(np, "touchscreen-size-y", &data->max_y)) { in icn8318_probe() 253 data->max_y, fuzz_y, 0); in icn8318_probe() 256 data->max_y, fuzz_y, 0); in icn8318_probe()
|
D | bcm_iproc_tsc.c | 133 u32 max_y; member 163 .max_y = Y_MAX, 247 y = priv->cfg_params.max_y - y; in iproc_touchscreen_interrupt() 398 of_property_read_u32(np, "touchscreen-size-y", &priv->cfg_params.max_y); in iproc_get_tsc_config() 472 input_set_abs_params(idev, ABS_Y, Y_MIN, priv->cfg_params.max_y, in iproc_ts_probe()
|
D | atmel_mxt_ts.c | 278 unsigned int max_y; member 767 if (data->max_y < 1024) in mxt_proc_t9_message() 1734 data->max_y = range.x; in mxt_read_t9_resolution() 1737 data->max_y = range.y; in mxt_read_t9_resolution() 1741 "Touchscreen size X%uY%u\n", data->max_x, data->max_y); in mxt_read_t9_resolution() 1796 data->max_y = range_x; in mxt_read_t100_config() 1799 data->max_y = range_y; in mxt_read_t100_config() 1819 "T100 Touchscreen size X%uY%u\n", data->max_x, data->max_y); in mxt_read_t100_config() 1896 input_set_abs_params(input_dev, ABS_Y, 0, data->max_y, 0, 0); in mxt_initialize_input_device() 1929 0, data->max_y, 0, 0); in mxt_initialize_input_device()
|
D | cyttsp4_core.c | 347 si->si_ofs.max_y = merge_bytes((si->si_ptrs.pcfg->res_yh in cyttsp4_si_get_pcfg_data() 639 si->si_ofs.max_y, si->si_ofs.max_y); in cyttsp4_si_put_log_data() 802 touch->abs[CY_TCH_X] = md->si->si_ofs.max_y - in cyttsp4_get_touch() 813 touch->abs[CY_TCH_Y] = md->si->si_ofs.max_y - in cyttsp4_get_touch() 1881 int max_x, max_y, max_p, min, max; in cyttsp4_setup_input_device() local 1892 max_y_tmp = md->si->si_ofs.max_y; in cyttsp4_setup_input_device() 1897 max_y = max_x_tmp - 1; in cyttsp4_setup_input_device() 1900 max_y = max_y_tmp - 1; in cyttsp4_setup_input_device() 1921 max = max_y; in cyttsp4_setup_input_device()
|
D | tsc2005.c | 600 unsigned int max_y = MAX_12BIT; in tsc2005_probe() local 624 max_y = pdata->ts_y_max; in tsc2005_probe() 708 input_set_abs_params(input_dev, ABS_Y, 0, max_y, fudge_y, 0); in tsc2005_probe()
|
D | cyttsp4_core.h | 287 size_t max_y; member
|
/linux-4.1.27/drivers/input/tablet/ |
D | wacom_serial4.c | 177 unsigned int max_x, max_y; member 242 wacom->max_y = 3711; in wacom_handle_model_response() 282 r = sscanf(wacom->data, "~C%u,%u", &wacom->max_x, &wacom->max_y); in wacom_handle_coordinates_response() 510 if (!(wacom->max_x && wacom->max_y)) { in wacom_setup() 578 input_set_abs_params(wacom->dev, ABS_Y, 0, wacom->max_y, 0, 0); in wacom_connect()
|
D | hanwang.c | 87 int max_y; member 400 0, hanwang->features->max_y, 4, 0); in hanwang_probe()
|
/linux-4.1.27/drivers/input/mouse/ |
D | elan_i2c_core.c | 73 unsigned int max_y; member 258 error = data->ops->get_max(data->client, &data->max_x, &data->max_y); in elan_query_device_parameters() 267 data->width_y = data->max_y / y_traces; in elan_query_device_parameters() 746 if (pos_x > data->max_x || pos_y > data->max_y) { in elan_report_contact() 750 data->max_x, data->max_y); in elan_report_contact() 772 input_report_abs(input, ABS_MT_POSITION_Y, data->max_y - pos_y); in elan_report_contact() 875 input_set_abs_params(input, ABS_Y, 0, data->max_y, 0, 0); in elan_setup_input_device() 883 input_set_abs_params(input, ABS_MT_POSITION_Y, 0, data->max_y, 0, 0); in elan_setup_input_device() 1001 data->max_x, data->max_y, in elan_probe()
|
D | elan_i2c.h | 66 unsigned int *max_x, unsigned int *max_y);
|
D | elan_i2c_smbus.c | 221 unsigned int *max_x, unsigned int *max_y) in elan_smbus_get_max() argument 233 *max_y = (0xf0 & val[0]) << 4 | val[2]; in elan_smbus_get_max()
|
D | elan_i2c_i2c.c | 313 unsigned int *max_x, unsigned int *max_y) in elan_i2c_get_max() argument 332 *max_y = le16_to_cpup((__le16 *)val) & 0x0fff; in elan_i2c_get_max()
|
/linux-4.1.27/drivers/hid/ |
D | hid-rmi.c | 113 unsigned int max_y; member 338 y = hdata->max_y - y; in rmi_f11_process_touch() 920 data->max_y = buf[8] | (buf[9] << 8); in rmi_populate_f11() 1083 input_set_abs_params(input, ABS_MT_POSITION_Y, 1, data->max_y, 0, 0); in rmi_input_configured() 1087 res_y = (data->max_y - 1) / data->y_size_mm; in rmi_input_configured()
|
/linux-4.1.27/drivers/video/fbdev/core/ |
D | modedb.c | 1210 if (specs->max_x && specs->max_y) { in fb_find_best_display() 1215 var.yres = (specs->max_y * 7200)/254; in fb_find_best_display()
|
D | fbmon.c | 837 specs->max_y = block[2]; in get_monspecs() 844 if (specs->max_y) in get_monspecs() 845 DPRINTK("%d\n", specs->max_y); in get_monspecs()
|
/linux-4.1.27/drivers/media/i2c/ |
D | s5k6aa.c | 1193 unsigned int max_x, max_y; in s5k6aa_set_selection() local 1214 max_y = (S5K6AA_WIN_HEIGHT_MAX - sel->r.height) & ~1; in s5k6aa_set_selection() 1217 sel->r.top = clamp_t(unsigned int, sel->r.top, 0, max_y); in s5k6aa_set_selection()
|
/linux-4.1.27/drivers/tty/vt/ |
D | vt.c | 1054 int min_y, max_y; in gotoxy() local 1067 max_y = vc->vc_bottom; in gotoxy() 1070 max_y = vc->vc_rows; in gotoxy() 1074 else if (new_y >= max_y) in gotoxy() 1075 vc->vc_y = max_y - 1; in gotoxy()
|
/linux-4.1.27/include/linux/ |
D | fb.h | 89 __u8 max_y; /* Maximum vertical size (cm) */ member
|
/linux-4.1.27/drivers/video/fbdev/ |
D | sh_mobile_lcdcfb.c | 582 ch->display.height = monspec->max_y * 10; in sh_mobile_lcdc_display_notify()
|