Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LIBPS2_H |
| 2 | #define _LIBPS2_H |
| 3 | |
| 4 | /* |
| 5 | * Copyright (C) 1999-2002 Vojtech Pavlik |
| 6 | * Copyright (C) 2004 Dmitry Torokhov |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU General Public License version 2 as published by |
| 10 | * the Free Software Foundation. |
| 11 | */ |
| 12 | |
Dmitry Torokhov | b28bad6 | 2018-01-04 10:58:48 -0800 | [diff] [blame^] | 13 | #include <linux/mutex.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/wait.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | #define PS2_CMD_GETID 0x02f2 |
| 18 | #define PS2_CMD_RESET_BAT 0x02ff |
| 19 | |
| 20 | #define PS2_RET_BAT 0xaa |
| 21 | #define PS2_RET_ID 0x00 |
| 22 | #define PS2_RET_ACK 0xfa |
| 23 | #define PS2_RET_NAK 0xfe |
Dmitry Torokhov | a2d781f | 2008-11-19 17:02:24 -0500 | [diff] [blame] | 24 | #define PS2_RET_ERR 0xfc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | #define PS2_FLAG_ACK 1 /* Waiting for ACK/NAK */ |
| 27 | #define PS2_FLAG_CMD 2 /* Waiting for command to finish */ |
| 28 | #define PS2_FLAG_CMD1 4 /* Waiting for the first byte of command response */ |
| 29 | #define PS2_FLAG_WAITID 8 /* Command execiting is GET ID */ |
Dmitry Torokhov | a2d781f | 2008-11-19 17:02:24 -0500 | [diff] [blame] | 30 | #define PS2_FLAG_NAK 16 /* Last transmission was NAKed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | struct ps2dev { |
| 33 | struct serio *serio; |
| 34 | |
| 35 | /* Ensures that only one command is executing at a time */ |
Arjan van de Ven | c4e32e9 | 2006-02-19 00:21:55 -0500 | [diff] [blame] | 36 | struct mutex cmd_mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | /* Used to signal completion from interrupt handler */ |
| 39 | wait_queue_head_t wait; |
| 40 | |
| 41 | unsigned long flags; |
Dmitry Torokhov | b28bad6 | 2018-01-04 10:58:48 -0800 | [diff] [blame^] | 42 | u8 cmdbuf[8]; |
| 43 | u8 cmdcnt; |
| 44 | u8 nak; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | void ps2_init(struct ps2dev *ps2dev, struct serio *serio); |
Dmitry Torokhov | b28bad6 | 2018-01-04 10:58:48 -0800 | [diff] [blame^] | 48 | int ps2_sendbyte(struct ps2dev *ps2dev, u8 byte, unsigned int timeout); |
| 49 | void ps2_drain(struct ps2dev *ps2dev, size_t maxbytes, unsigned int timeout); |
Dmitry Torokhov | 181d683 | 2009-09-16 01:06:43 -0700 | [diff] [blame] | 50 | void ps2_begin_command(struct ps2dev *ps2dev); |
| 51 | void ps2_end_command(struct ps2dev *ps2dev); |
Dmitry Torokhov | b28bad6 | 2018-01-04 10:58:48 -0800 | [diff] [blame^] | 52 | int __ps2_command(struct ps2dev *ps2dev, u8 *param, unsigned int command); |
| 53 | int ps2_command(struct ps2dev *ps2dev, u8 *param, unsigned int command); |
| 54 | bool ps2_handle_ack(struct ps2dev *ps2dev, u8 data); |
| 55 | bool ps2_handle_response(struct ps2dev *ps2dev, u8 data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | void ps2_cmd_aborted(struct ps2dev *ps2dev); |
Dmitry Torokhov | b28bad6 | 2018-01-04 10:58:48 -0800 | [diff] [blame^] | 57 | bool ps2_is_keyboard_id(u8 id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | #endif /* _LIBPS2_H */ |