#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/input.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/serio.h>
#include <linux/delay.h>
#include <asm/io.h>
Go to the source code of this file.
#define PS2_CTRL_CLK (1<<0) |
#define PS2_CTRL_DAT (1<<1) |
#define PS2_CTRL_ENABLE (1<<3) |
#define PS2_CTRL_RXIRQ (1<<4) |
#define PS2_CTRL_TXIRQ (1<<2) |
#define PS2_STAT_CLK (1<<0) |
#define PS2_STAT_DAT (1<<1) |
#define PS2_STAT_PARITY (1<<2) |
#define PS2_STAT_RXFULL (1<<5) |
#define PS2_STAT_TXBUSY (1<<6) |
#define PS2_STAT_TXEMPTY (1<<7) |
MODULE_DESCRIPTION |
( |
"PCI PS/2 keyboard/mouse driver" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
pcips2_ids |
|
|
) |
| |
module_pci_driver |
( |
pcips2_driver |
| ) |
|