static void tpd_down(int raw_x, int raw_y, int x, int y, int p) { input_report_abs(tpd->dev, ABS_PRESSURE, p); input_report_key(tpd->dev, BTN_TOUCH, 1); input_report_abs(tpd->dev, ABS_MT_TOUCH_MAJOR, p); input_report_abs(tpd->dev, ABS_MT_POSITION_X, x); input_report_abs(tpd->dev, ABS_MT_POSITION_Y, y); //printk("D[%4d %4d %4d] ", x, y, p); input_mt_sync(tpd->dev); TPD_DOWN_DEBUG_TRACK(x,y); TPD_EM_PRINT(raw_x, raw_y, x, y, p, 1); }
static void tpd_down(tinno_ts_data *ts, int x, int y, int pressure, int trackID) { CTP_DBG("x=%03d, y=%03d, pressure=%03d, ID=%03d", x, y, pressure, trackID); input_report_abs(tpd->dev, ABS_PRESSURE, pressure); input_report_abs(tpd->dev, ABS_MT_PRESSURE, pressure); input_report_key(tpd->dev, BTN_TOUCH, 1); input_report_abs(tpd->dev, ABS_MT_POSITION_X, x); input_report_abs(tpd->dev, ABS_MT_POSITION_Y, y); #ifdef FTS_SUPPORT_TRACK_ID input_report_abs(tpd->dev, ABS_MT_TRACKING_ID, trackID); #endif input_report_abs(tpd->dev, ABS_MT_WIDTH_MAJOR, pressure*pressure/112); input_report_abs(tpd->dev, ABS_MT_TOUCH_MAJOR, pressure*pressure/112); input_mt_sync(tpd->dev); __set_bit(trackID, &ts->fingers_flag); ts->touch_point_pre[trackID].x=x; ts->touch_point_pre[trackID].y=y; if (FACTORY_BOOT == get_boot_mode() || RECOVERY_BOOT == get_boot_mode()) { tpd_button(x, y, 1); } TPD_DOWN_DEBUG_TRACK(x,y); }
static void tpd_down(tinno_ts_data *ts, int x, int y, int pressure, int trackID) { int iPressure = pressure*pressure/110; if ( iPressure < 1 ){ iPressure = 1; } CTP_DBG("x=%03d, y=%03d, pressure=%03d, ID=%03d", x, y, pressure, trackID); input_report_abs(tpd->dev, ABS_PRESSURE, iPressure); input_report_abs(tpd->dev, ABS_MT_PRESSURE, iPressure); input_report_key(tpd->dev, BTN_TOUCH, 1); input_report_abs(tpd->dev, ABS_MT_TOUCH_MAJOR, 20); input_report_abs(tpd->dev, ABS_MT_POSITION_X, x); input_report_abs(tpd->dev, ABS_MT_POSITION_Y, y); printk("[SWEEP2WAKE]: tpd down\n"); #ifdef CONFIG_TOUCHSCREEN_SWEEP2WAKE if (sweep2wake) { //printk("[SWEEP2WAKE]: detecting sweep\n"); detect_sweep2wake(x, y, jiffies, trackID); } #endif #ifdef FTS_SUPPORT_TRACK_ID input_report_abs(tpd->dev, ABS_MT_TRACKING_ID, trackID); #endif input_report_abs(tpd->dev, ABS_MT_WIDTH_MAJOR, iPressure); input_report_abs(tpd->dev, ABS_MT_TOUCH_MAJOR, iPressure); input_mt_sync(tpd->dev); __set_bit(trackID, &ts->fingers_flag); ts->touch_point_pre[trackID].x=x; ts->touch_point_pre[trackID].y=y; if (FACTORY_BOOT == get_boot_mode() || RECOVERY_BOOT == get_boot_mode()) { tpd_button(x, y, 1); } TPD_DOWN_DEBUG_TRACK(x,y); }