reactos/drivers/input/i8042prt
Joachim Henze 0c22894adb [0.4.13][I8042PRT] Add service registry entry for the driver CORE-17819
CORE-17819 This allows Microsoft VirtualPC 2004/2007 to boot LiveCD SAFEMODE to desktop,
the regular mode booted also without that addition already.

Fix picked from 0.4.15-dev-1537-g b1c460d34e
This commit was part of a much bigger PR3396, which I don't pick entirely today.
For CORE-17819 only this part is actually needed.
2024-03-29 14:59:22 +01:00
..
CMakeLists.txt [0.4.13][I8042PRT] Add service registry entry for the driver CORE-17819 2024-03-29 14:59:22 +01:00
createclose.c
guid.c
hwhacks.c [I8042PRT] Add Latitude E6400 to the hack list (#1665) 2019-06-16 23:00:53 +02:00
i8042prt.c
i8042prt.h [I8042PRT] Enable keyboard clock explicitly (fixes Lenovo ACPI bug). CORE-14256 (#434) 2018-03-21 22:07:30 +01:00
i8042prt.rc
i8042prt_reg.inf [0.4.13][I8042PRT] Add service registry entry for the driver CORE-17819 2024-03-29 14:59:22 +01:00
keyboard.c [I8042PRT] Do not assert on unknown IOCTL 2019-05-02 20:06:47 +02:00
misc.c
mouse.c
pnp.c [I8042PRT] Enable keyboard clock explicitly (fixes Lenovo ACPI bug). CORE-14256 (#434) 2018-03-21 22:07:30 +01:00
ps2pp.c
README.txt
readwrite.c
registry.c

Intel 8042 port driver

This directory contains a driver for Intels 8042 and compatible controllers.
It is based on the information in the DDK documentation on MSDN. It is intended
to be compatible with keyboard and mouse drivers written for Windows. It is
not based on the i8042prt example driver that's included with the DDK.

The directory contains these files:

createclose.c: open/close devices functionnality

i8042prt.c: Main controller functionality, things shared by keyboards and mice

keyboard.c: keyboard functionality: detection, interrupt handling

misc.c: misc things, mostly related to Irp passing

mouse.c: mouse functionality: detection, interrupt handling, packet parsing for
         standard ps2 and microsoft mice

pnp.c: Plug&Play functionnality

ps2pp.c: logitech ps2++ mouse packat parsing (basic)

readwrite.c: read/write to the i8042 controller

registry.c: registry reading

setup.c: add keyboard support during the 1st stage setup

i8042prt.rc: obvious


Some parts of the driver make little sense. This is because it implements
an interface that has evolved over a long time, and because the ps/2
'standard' is really awful.

Things to add:

- Better AT (before ps2) keyboard handling
- SiS keyboard controller detection
- Mouse identification
- General robustness: reset mouse if things go wrong
- Handling all registry settings
- ACPI

Things not to add:

- Other mouse protocols, touchpad handling etc. : Write a filter driver instead
- Keyboard lights handling: Should be in win32k
- Keyboard scancode translation: Should be in win32k

Things requiring work elsewhere:

- Debugger interface (TAB + key):
  Currently this interface wants translated keycodes, which are not
  implemented by this driver. As it just uses a giant switch with
  hardcoded cases, this should not be hard to fix.

- Class drivers:
  The class drivers should be able to handle reads for more than one packet
  at a time (kbdclass should, mouclass does not). Win32k should send such
  requests.


I put a lot of work in making it work like Microsofts driver does, so third party drivers can work. Please keep it that way.


Links:

Here's a link describing most of the registry settings:

http://www.microsoft.com/resources/documentation/Windows/2000/server/reskit/en-us/Default.asp?url=/resources/documentation/Windows/2000/server/reskit/en-us/regentry/31493.asp

PS/2 protocol documentation:

http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html

It also contains a link to a description of the ps2++ protocol, which has
since disappeared. Archive.org still has it.