x86/xen: resume timer irqs early
[linux/fpc-iii.git] / drivers / input / mouse / cypress_ps2.c
blob0aaea7ad6cee22116b269fdd9f200e66746c2a75
1 /*
2 * Cypress Trackpad PS/2 mouse driver
4 * Copyright (c) 2012 Cypress Semiconductor Corporation.
6 * Author:
7 * Dudley Du <dudl@cypress.com>
9 * Additional contributors include:
10 * Kamal Mostafa <kamal@canonical.com>
11 * Kyle Fazzari <git@status.e4ward.com>
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License version 2 as published by
15 * the Free Software Foundation.
18 #include <linux/init.h>
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/slab.h>
22 #include <linux/serio.h>
23 #include <linux/libps2.h>
24 #include <linux/input.h>
25 #include <linux/input/mt.h>
26 #include <linux/sched.h>
27 #include <linux/wait.h>
29 #include "cypress_ps2.h"
31 #undef CYTP_DEBUG_VERBOSE /* define this and DEBUG for more verbose dump */
33 static void cypress_set_packet_size(struct psmouse *psmouse, unsigned int n)
35 struct cytp_data *cytp = psmouse->private;
36 cytp->pkt_size = n;
39 static const unsigned char cytp_rate[] = {10, 20, 40, 60, 100, 200};
40 static const unsigned char cytp_resolution[] = {0x00, 0x01, 0x02, 0x03};
42 static int cypress_ps2_sendbyte(struct psmouse *psmouse, int value)
44 struct ps2dev *ps2dev = &psmouse->ps2dev;
46 if (ps2_sendbyte(ps2dev, value & 0xff, CYTP_CMD_TIMEOUT) < 0) {
47 psmouse_dbg(psmouse,
48 "sending command 0x%02x failed, resp 0x%02x\n",
49 value & 0xff, ps2dev->nak);
50 if (ps2dev->nak == CYTP_PS2_RETRY)
51 return CYTP_PS2_RETRY;
52 else
53 return CYTP_PS2_ERROR;
56 #ifdef CYTP_DEBUG_VERBOSE
57 psmouse_dbg(psmouse, "sending command 0x%02x succeeded, resp 0xfa\n",
58 value & 0xff);
59 #endif
61 return 0;
64 static int cypress_ps2_ext_cmd(struct psmouse *psmouse, unsigned short cmd,
65 unsigned char data)
67 struct ps2dev *ps2dev = &psmouse->ps2dev;
68 int tries = CYTP_PS2_CMD_TRIES;
69 int rc;
71 ps2_begin_command(ps2dev);
73 do {
75 * Send extension command byte (0xE8 or 0xF3).
76 * If sending the command fails, send recovery command
77 * to make the device return to the ready state.
79 rc = cypress_ps2_sendbyte(psmouse, cmd & 0xff);
80 if (rc == CYTP_PS2_RETRY) {
81 rc = cypress_ps2_sendbyte(psmouse, 0x00);
82 if (rc == CYTP_PS2_RETRY)
83 rc = cypress_ps2_sendbyte(psmouse, 0x0a);
85 if (rc == CYTP_PS2_ERROR)
86 continue;
88 rc = cypress_ps2_sendbyte(psmouse, data);
89 if (rc == CYTP_PS2_RETRY)
90 rc = cypress_ps2_sendbyte(psmouse, data);
91 if (rc == CYTP_PS2_ERROR)
92 continue;
93 else
94 break;
95 } while (--tries > 0);
97 ps2_end_command(ps2dev);
99 return rc;
102 static int cypress_ps2_read_cmd_status(struct psmouse *psmouse,
103 unsigned char cmd,
104 unsigned char *param)
106 int rc;
107 struct ps2dev *ps2dev = &psmouse->ps2dev;
108 enum psmouse_state old_state;
109 int pktsize;
111 ps2_begin_command(&psmouse->ps2dev);
113 old_state = psmouse->state;
114 psmouse->state = PSMOUSE_CMD_MODE;
115 psmouse->pktcnt = 0;
117 pktsize = (cmd == CYTP_CMD_READ_TP_METRICS) ? 8 : 3;
118 memset(param, 0, pktsize);
120 rc = cypress_ps2_sendbyte(psmouse, 0xe9);
121 if (rc < 0)
122 goto out;
124 wait_event_timeout(ps2dev->wait,
125 (psmouse->pktcnt >= pktsize),
126 msecs_to_jiffies(CYTP_CMD_TIMEOUT));
128 memcpy(param, psmouse->packet, pktsize);
130 psmouse_dbg(psmouse, "Command 0x%02x response data (0x): %*ph\n",
131 cmd, pktsize, param);
133 out:
134 psmouse->state = old_state;
135 psmouse->pktcnt = 0;
137 ps2_end_command(&psmouse->ps2dev);
139 return rc;
142 static bool cypress_verify_cmd_state(struct psmouse *psmouse,
143 unsigned char cmd, unsigned char *param)
145 bool rate_match = false;
146 bool resolution_match = false;
147 int i;
149 /* callers will do further checking. */
150 if (cmd == CYTP_CMD_READ_CYPRESS_ID ||
151 cmd == CYTP_CMD_STANDARD_MODE ||
152 cmd == CYTP_CMD_READ_TP_METRICS)
153 return true;
155 if ((~param[0] & DFLT_RESP_BITS_VALID) == DFLT_RESP_BITS_VALID &&
156 (param[0] & DFLT_RESP_BIT_MODE) == DFLT_RESP_STREAM_MODE) {
157 for (i = 0; i < sizeof(cytp_resolution); i++)
158 if (cytp_resolution[i] == param[1])
159 resolution_match = true;
161 for (i = 0; i < sizeof(cytp_rate); i++)
162 if (cytp_rate[i] == param[2])
163 rate_match = true;
165 if (resolution_match && rate_match)
166 return true;
169 psmouse_dbg(psmouse, "verify cmd state failed.\n");
170 return false;
173 static int cypress_send_ext_cmd(struct psmouse *psmouse, unsigned char cmd,
174 unsigned char *param)
176 int tries = CYTP_PS2_CMD_TRIES;
177 int rc;
179 psmouse_dbg(psmouse, "send extension cmd 0x%02x, [%d %d %d %d]\n",
180 cmd, DECODE_CMD_AA(cmd), DECODE_CMD_BB(cmd),
181 DECODE_CMD_CC(cmd), DECODE_CMD_DD(cmd));
183 do {
184 cypress_ps2_ext_cmd(psmouse,
185 PSMOUSE_CMD_SETRES, DECODE_CMD_DD(cmd));
186 cypress_ps2_ext_cmd(psmouse,
187 PSMOUSE_CMD_SETRES, DECODE_CMD_CC(cmd));
188 cypress_ps2_ext_cmd(psmouse,
189 PSMOUSE_CMD_SETRES, DECODE_CMD_BB(cmd));
190 cypress_ps2_ext_cmd(psmouse,
191 PSMOUSE_CMD_SETRES, DECODE_CMD_AA(cmd));
193 rc = cypress_ps2_read_cmd_status(psmouse, cmd, param);
194 if (rc)
195 continue;
197 if (cypress_verify_cmd_state(psmouse, cmd, param))
198 return 0;
200 } while (--tries > 0);
202 return -EIO;
205 int cypress_detect(struct psmouse *psmouse, bool set_properties)
207 unsigned char param[3];
209 if (cypress_send_ext_cmd(psmouse, CYTP_CMD_READ_CYPRESS_ID, param))
210 return -ENODEV;
212 /* Check for Cypress Trackpad signature bytes: 0x33 0xCC */
213 if (param[0] != 0x33 || param[1] != 0xCC)
214 return -ENODEV;
216 if (set_properties) {
217 psmouse->vendor = "Cypress";
218 psmouse->name = "Trackpad";
221 return 0;
224 static int cypress_read_fw_version(struct psmouse *psmouse)
226 struct cytp_data *cytp = psmouse->private;
227 unsigned char param[3];
229 if (cypress_send_ext_cmd(psmouse, CYTP_CMD_READ_CYPRESS_ID, param))
230 return -ENODEV;
232 /* Check for Cypress Trackpad signature bytes: 0x33 0xCC */
233 if (param[0] != 0x33 || param[1] != 0xCC)
234 return -ENODEV;
236 cytp->fw_version = param[2] & FW_VERSION_MASX;
237 cytp->tp_metrics_supported = (param[2] & TP_METRICS_MASK) ? 1 : 0;
240 * Trackpad fw_version 11 (in Dell XPS12) yields a bogus response to
241 * CYTP_CMD_READ_TP_METRICS so do not try to use it. LP: #1103594.
243 if (cytp->fw_version >= 11)
244 cytp->tp_metrics_supported = 0;
246 psmouse_dbg(psmouse, "cytp->fw_version = %d\n", cytp->fw_version);
247 psmouse_dbg(psmouse, "cytp->tp_metrics_supported = %d\n",
248 cytp->tp_metrics_supported);
250 return 0;
253 static int cypress_read_tp_metrics(struct psmouse *psmouse)
255 struct cytp_data *cytp = psmouse->private;
256 unsigned char param[8];
258 /* set default values for tp metrics. */
259 cytp->tp_width = CYTP_DEFAULT_WIDTH;
260 cytp->tp_high = CYTP_DEFAULT_HIGH;
261 cytp->tp_max_abs_x = CYTP_ABS_MAX_X;
262 cytp->tp_max_abs_y = CYTP_ABS_MAX_Y;
263 cytp->tp_min_pressure = CYTP_MIN_PRESSURE;
264 cytp->tp_max_pressure = CYTP_MAX_PRESSURE;
265 cytp->tp_res_x = cytp->tp_max_abs_x / cytp->tp_width;
266 cytp->tp_res_y = cytp->tp_max_abs_y / cytp->tp_high;
268 if (!cytp->tp_metrics_supported)
269 return 0;
271 memset(param, 0, sizeof(param));
272 if (cypress_send_ext_cmd(psmouse, CYTP_CMD_READ_TP_METRICS, param) == 0) {
273 /* Update trackpad parameters. */
274 cytp->tp_max_abs_x = (param[1] << 8) | param[0];
275 cytp->tp_max_abs_y = (param[3] << 8) | param[2];
276 cytp->tp_min_pressure = param[4];
277 cytp->tp_max_pressure = param[5];
280 if (!cytp->tp_max_pressure ||
281 cytp->tp_max_pressure < cytp->tp_min_pressure ||
282 !cytp->tp_width || !cytp->tp_high ||
283 !cytp->tp_max_abs_x ||
284 cytp->tp_max_abs_x < cytp->tp_width ||
285 !cytp->tp_max_abs_y ||
286 cytp->tp_max_abs_y < cytp->tp_high)
287 return -EINVAL;
289 cytp->tp_res_x = cytp->tp_max_abs_x / cytp->tp_width;
290 cytp->tp_res_y = cytp->tp_max_abs_y / cytp->tp_high;
292 #ifdef CYTP_DEBUG_VERBOSE
293 psmouse_dbg(psmouse, "Dump trackpad hardware configuration as below:\n");
294 psmouse_dbg(psmouse, "cytp->tp_width = %d\n", cytp->tp_width);
295 psmouse_dbg(psmouse, "cytp->tp_high = %d\n", cytp->tp_high);
296 psmouse_dbg(psmouse, "cytp->tp_max_abs_x = %d\n", cytp->tp_max_abs_x);
297 psmouse_dbg(psmouse, "cytp->tp_max_abs_y = %d\n", cytp->tp_max_abs_y);
298 psmouse_dbg(psmouse, "cytp->tp_min_pressure = %d\n", cytp->tp_min_pressure);
299 psmouse_dbg(psmouse, "cytp->tp_max_pressure = %d\n", cytp->tp_max_pressure);
300 psmouse_dbg(psmouse, "cytp->tp_res_x = %d\n", cytp->tp_res_x);
301 psmouse_dbg(psmouse, "cytp->tp_res_y = %d\n", cytp->tp_res_y);
303 psmouse_dbg(psmouse, "tp_type_APA = %d\n",
304 (param[6] & TP_METRICS_BIT_APA) ? 1 : 0);
305 psmouse_dbg(psmouse, "tp_type_MTG = %d\n",
306 (param[6] & TP_METRICS_BIT_MTG) ? 1 : 0);
307 psmouse_dbg(psmouse, "tp_palm = %d\n",
308 (param[6] & TP_METRICS_BIT_PALM) ? 1 : 0);
309 psmouse_dbg(psmouse, "tp_stubborn = %d\n",
310 (param[6] & TP_METRICS_BIT_STUBBORN) ? 1 : 0);
311 psmouse_dbg(psmouse, "tp_1f_jitter = %d\n",
312 (param[6] & TP_METRICS_BIT_1F_JITTER) >> 2);
313 psmouse_dbg(psmouse, "tp_2f_jitter = %d\n",
314 (param[6] & TP_METRICS_BIT_2F_JITTER) >> 4);
315 psmouse_dbg(psmouse, "tp_1f_spike = %d\n",
316 param[7] & TP_METRICS_BIT_1F_SPIKE);
317 psmouse_dbg(psmouse, "tp_2f_spike = %d\n",
318 (param[7] & TP_METRICS_BIT_2F_SPIKE) >> 2);
319 psmouse_dbg(psmouse, "tp_abs_packet_format_set = %d\n",
320 (param[7] & TP_METRICS_BIT_ABS_PKT_FORMAT_SET) >> 4);
321 #endif
323 return 0;
326 static int cypress_query_hardware(struct psmouse *psmouse)
328 int ret;
330 ret = cypress_read_fw_version(psmouse);
331 if (ret)
332 return ret;
334 ret = cypress_read_tp_metrics(psmouse);
335 if (ret)
336 return ret;
338 return 0;
341 static int cypress_set_absolute_mode(struct psmouse *psmouse)
343 struct cytp_data *cytp = psmouse->private;
344 unsigned char param[3];
346 if (cypress_send_ext_cmd(psmouse, CYTP_CMD_ABS_WITH_PRESSURE_MODE, param) < 0)
347 return -1;
349 cytp->mode = (cytp->mode & ~CYTP_BIT_ABS_REL_MASK)
350 | CYTP_BIT_ABS_PRESSURE;
351 cypress_set_packet_size(psmouse, 5);
353 return 0;
357 * Reset trackpad device.
358 * This is also the default mode when trackpad powered on.
360 static void cypress_reset(struct psmouse *psmouse)
362 struct cytp_data *cytp = psmouse->private;
364 cytp->mode = 0;
366 psmouse_reset(psmouse);
369 static int cypress_set_input_params(struct input_dev *input,
370 struct cytp_data *cytp)
372 int ret;
374 if (!cytp->tp_res_x || !cytp->tp_res_y)
375 return -EINVAL;
377 __set_bit(EV_ABS, input->evbit);
378 input_set_abs_params(input, ABS_X, 0, cytp->tp_max_abs_x, 0, 0);
379 input_set_abs_params(input, ABS_Y, 0, cytp->tp_max_abs_y, 0, 0);
380 input_set_abs_params(input, ABS_PRESSURE,
381 cytp->tp_min_pressure, cytp->tp_max_pressure, 0, 0);
382 input_set_abs_params(input, ABS_TOOL_WIDTH, 0, 255, 0, 0);
384 /* finger position */
385 input_set_abs_params(input, ABS_MT_POSITION_X, 0, cytp->tp_max_abs_x, 0, 0);
386 input_set_abs_params(input, ABS_MT_POSITION_Y, 0, cytp->tp_max_abs_y, 0, 0);
387 input_set_abs_params(input, ABS_MT_PRESSURE, 0, 255, 0, 0);
389 ret = input_mt_init_slots(input, CYTP_MAX_MT_SLOTS,
390 INPUT_MT_DROP_UNUSED|INPUT_MT_TRACK);
391 if (ret < 0)
392 return ret;
394 __set_bit(INPUT_PROP_SEMI_MT, input->propbit);
396 input_abs_set_res(input, ABS_X, cytp->tp_res_x);
397 input_abs_set_res(input, ABS_Y, cytp->tp_res_y);
399 input_abs_set_res(input, ABS_MT_POSITION_X, cytp->tp_res_x);
400 input_abs_set_res(input, ABS_MT_POSITION_Y, cytp->tp_res_y);
402 __set_bit(BTN_TOUCH, input->keybit);
403 __set_bit(BTN_TOOL_FINGER, input->keybit);
404 __set_bit(BTN_TOOL_DOUBLETAP, input->keybit);
405 __set_bit(BTN_TOOL_TRIPLETAP, input->keybit);
406 __set_bit(BTN_TOOL_QUADTAP, input->keybit);
407 __set_bit(BTN_TOOL_QUINTTAP, input->keybit);
409 __clear_bit(EV_REL, input->evbit);
410 __clear_bit(REL_X, input->relbit);
411 __clear_bit(REL_Y, input->relbit);
413 __set_bit(EV_KEY, input->evbit);
414 __set_bit(BTN_LEFT, input->keybit);
415 __set_bit(BTN_RIGHT, input->keybit);
416 __set_bit(BTN_MIDDLE, input->keybit);
418 input_set_drvdata(input, cytp);
420 return 0;
423 static int cypress_get_finger_count(unsigned char header_byte)
425 unsigned char bits6_7;
426 int finger_count;
428 bits6_7 = header_byte >> 6;
429 finger_count = bits6_7 & 0x03;
431 if (finger_count == 1)
432 return 1;
434 if (header_byte & ABS_HSCROLL_BIT) {
435 /* HSCROLL gets added on to 0 finger count. */
436 switch (finger_count) {
437 case 0: return 4;
438 case 2: return 5;
439 default:
440 /* Invalid contact (e.g. palm). Ignore it. */
441 return 0;
445 return finger_count;
449 static int cypress_parse_packet(struct psmouse *psmouse,
450 struct cytp_data *cytp, struct cytp_report_data *report_data)
452 unsigned char *packet = psmouse->packet;
453 unsigned char header_byte = packet[0];
455 memset(report_data, 0, sizeof(struct cytp_report_data));
457 report_data->contact_cnt = cypress_get_finger_count(header_byte);
458 report_data->tap = (header_byte & ABS_MULTIFINGER_TAP) ? 1 : 0;
460 if (report_data->contact_cnt == 1) {
461 report_data->contacts[0].x =
462 ((packet[1] & 0x70) << 4) | packet[2];
463 report_data->contacts[0].y =
464 ((packet[1] & 0x07) << 8) | packet[3];
465 if (cytp->mode & CYTP_BIT_ABS_PRESSURE)
466 report_data->contacts[0].z = packet[4];
468 } else if (report_data->contact_cnt >= 2) {
469 report_data->contacts[0].x =
470 ((packet[1] & 0x70) << 4) | packet[2];
471 report_data->contacts[0].y =
472 ((packet[1] & 0x07) << 8) | packet[3];
473 if (cytp->mode & CYTP_BIT_ABS_PRESSURE)
474 report_data->contacts[0].z = packet[4];
476 report_data->contacts[1].x =
477 ((packet[5] & 0xf0) << 4) | packet[6];
478 report_data->contacts[1].y =
479 ((packet[5] & 0x0f) << 8) | packet[7];
480 if (cytp->mode & CYTP_BIT_ABS_PRESSURE)
481 report_data->contacts[1].z = report_data->contacts[0].z;
484 report_data->left = (header_byte & BTN_LEFT_BIT) ? 1 : 0;
485 report_data->right = (header_byte & BTN_RIGHT_BIT) ? 1 : 0;
488 * This is only true if one of the mouse buttons were tapped. Make
489 * sure it doesn't turn into a click. The regular tap-to-click
490 * functionality will handle that on its own. If we don't do this,
491 * disabling tap-to-click won't affect the mouse button zones.
493 if (report_data->tap)
494 report_data->left = 0;
496 #ifdef CYTP_DEBUG_VERBOSE
498 int i;
499 int n = report_data->contact_cnt;
500 psmouse_dbg(psmouse, "Dump parsed report data as below:\n");
501 psmouse_dbg(psmouse, "contact_cnt = %d\n",
502 report_data->contact_cnt);
503 if (n > CYTP_MAX_MT_SLOTS)
504 n = CYTP_MAX_MT_SLOTS;
505 for (i = 0; i < n; i++)
506 psmouse_dbg(psmouse, "contacts[%d] = {%d, %d, %d}\n", i,
507 report_data->contacts[i].x,
508 report_data->contacts[i].y,
509 report_data->contacts[i].z);
510 psmouse_dbg(psmouse, "left = %d\n", report_data->left);
511 psmouse_dbg(psmouse, "right = %d\n", report_data->right);
512 psmouse_dbg(psmouse, "middle = %d\n", report_data->middle);
514 #endif
516 return 0;
519 static void cypress_process_packet(struct psmouse *psmouse, bool zero_pkt)
521 int i;
522 struct input_dev *input = psmouse->dev;
523 struct cytp_data *cytp = psmouse->private;
524 struct cytp_report_data report_data;
525 struct cytp_contact *contact;
526 struct input_mt_pos pos[CYTP_MAX_MT_SLOTS];
527 int slots[CYTP_MAX_MT_SLOTS];
528 int n;
530 cypress_parse_packet(psmouse, cytp, &report_data);
532 n = report_data.contact_cnt;
533 if (n > CYTP_MAX_MT_SLOTS)
534 n = CYTP_MAX_MT_SLOTS;
536 for (i = 0; i < n; i++) {
537 contact = &report_data.contacts[i];
538 pos[i].x = contact->x;
539 pos[i].y = contact->y;
542 input_mt_assign_slots(input, slots, pos, n);
544 for (i = 0; i < n; i++) {
545 contact = &report_data.contacts[i];
546 input_mt_slot(input, slots[i]);
547 input_mt_report_slot_state(input, MT_TOOL_FINGER, true);
548 input_report_abs(input, ABS_MT_POSITION_X, contact->x);
549 input_report_abs(input, ABS_MT_POSITION_Y, contact->y);
550 input_report_abs(input, ABS_MT_PRESSURE, contact->z);
553 input_mt_sync_frame(input);
555 input_mt_report_finger_count(input, report_data.contact_cnt);
557 input_report_key(input, BTN_LEFT, report_data.left);
558 input_report_key(input, BTN_RIGHT, report_data.right);
559 input_report_key(input, BTN_MIDDLE, report_data.middle);
561 input_sync(input);
564 static psmouse_ret_t cypress_validate_byte(struct psmouse *psmouse)
566 int contact_cnt;
567 int index = psmouse->pktcnt - 1;
568 unsigned char *packet = psmouse->packet;
569 struct cytp_data *cytp = psmouse->private;
571 if (index < 0 || index > cytp->pkt_size)
572 return PSMOUSE_BAD_DATA;
574 if (index == 0 && (packet[0] & 0xfc) == 0) {
575 /* call packet process for reporting finger leave. */
576 cypress_process_packet(psmouse, 1);
577 return PSMOUSE_FULL_PACKET;
581 * Perform validation (and adjust packet size) based only on the
582 * first byte; allow all further bytes through.
584 if (index != 0)
585 return PSMOUSE_GOOD_DATA;
588 * If absolute/relative mode bit has not been set yet, just pass
589 * the byte through.
591 if ((cytp->mode & CYTP_BIT_ABS_REL_MASK) == 0)
592 return PSMOUSE_GOOD_DATA;
594 if ((packet[0] & 0x08) == 0x08)
595 return PSMOUSE_BAD_DATA;
597 contact_cnt = cypress_get_finger_count(packet[0]);
598 if (cytp->mode & CYTP_BIT_ABS_NO_PRESSURE)
599 cypress_set_packet_size(psmouse, contact_cnt == 2 ? 7 : 4);
600 else
601 cypress_set_packet_size(psmouse, contact_cnt == 2 ? 8 : 5);
603 return PSMOUSE_GOOD_DATA;
606 static psmouse_ret_t cypress_protocol_handler(struct psmouse *psmouse)
608 struct cytp_data *cytp = psmouse->private;
610 if (psmouse->pktcnt >= cytp->pkt_size) {
611 cypress_process_packet(psmouse, 0);
612 return PSMOUSE_FULL_PACKET;
615 return cypress_validate_byte(psmouse);
618 static void cypress_set_rate(struct psmouse *psmouse, unsigned int rate)
620 struct cytp_data *cytp = psmouse->private;
622 if (rate >= 80) {
623 psmouse->rate = 80;
624 cytp->mode |= CYTP_BIT_HIGH_RATE;
625 } else {
626 psmouse->rate = 40;
627 cytp->mode &= ~CYTP_BIT_HIGH_RATE;
630 ps2_command(&psmouse->ps2dev, (unsigned char *)&psmouse->rate,
631 PSMOUSE_CMD_SETRATE);
634 static void cypress_disconnect(struct psmouse *psmouse)
636 cypress_reset(psmouse);
637 kfree(psmouse->private);
638 psmouse->private = NULL;
641 static int cypress_reconnect(struct psmouse *psmouse)
643 int tries = CYTP_PS2_CMD_TRIES;
644 int rc;
646 do {
647 cypress_reset(psmouse);
648 rc = cypress_detect(psmouse, false);
649 } while (rc && (--tries > 0));
651 if (rc) {
652 psmouse_err(psmouse, "Reconnect: unable to detect trackpad.\n");
653 return -1;
656 if (cypress_set_absolute_mode(psmouse)) {
657 psmouse_err(psmouse, "Reconnect: Unable to initialize Cypress absolute mode.\n");
658 return -1;
661 return 0;
664 int cypress_init(struct psmouse *psmouse)
666 struct cytp_data *cytp;
668 cytp = (struct cytp_data *)kzalloc(sizeof(struct cytp_data), GFP_KERNEL);
669 psmouse->private = (void *)cytp;
670 if (cytp == NULL)
671 return -ENOMEM;
673 cypress_reset(psmouse);
675 psmouse->pktsize = 8;
677 if (cypress_query_hardware(psmouse)) {
678 psmouse_err(psmouse, "Unable to query Trackpad hardware.\n");
679 goto err_exit;
682 if (cypress_set_absolute_mode(psmouse)) {
683 psmouse_err(psmouse, "init: Unable to initialize Cypress absolute mode.\n");
684 goto err_exit;
687 if (cypress_set_input_params(psmouse->dev, cytp) < 0) {
688 psmouse_err(psmouse, "init: Unable to set input params.\n");
689 goto err_exit;
692 psmouse->model = 1;
693 psmouse->protocol_handler = cypress_protocol_handler;
694 psmouse->set_rate = cypress_set_rate;
695 psmouse->disconnect = cypress_disconnect;
696 psmouse->reconnect = cypress_reconnect;
697 psmouse->cleanup = cypress_reset;
698 psmouse->resync_time = 0;
700 return 0;
702 err_exit:
704 * Reset Cypress Trackpad as a standard mouse. Then
705 * let psmouse driver commmunicating with it as default PS2 mouse.
707 cypress_reset(psmouse);
709 psmouse->private = NULL;
710 kfree(cytp);
712 return -1;
715 bool cypress_supported(void)
717 return true;