RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / input / serio / i8042-jazzio.h
blob5750c033ea5f4cc4f020e1702df5e5d0d4b930ea
1 #ifndef _I8042_JAZZ_H
2 #define _I8042_JAZZ_H
4 #include <asm/jazz.h>
6 /*
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
13 * Names.
16 #define I8042_KBD_PHYS_DESC "R4030/serio0"
17 #define I8042_AUX_PHYS_DESC "R4030/serio1"
18 #define I8042_MUX_PHYS_DESC "R4030/serio%d"
21 * IRQs.
24 #define I8042_KBD_IRQ JAZZ_KEYBOARD_IRQ
25 #define I8042_AUX_IRQ JAZZ_MOUSE_IRQ
27 #define I8042_COMMAND_REG ((unsigned long)&jazz_kh->command)
28 #define I8042_STATUS_REG ((unsigned long)&jazz_kh->command)
29 #define I8042_DATA_REG ((unsigned long)&jazz_kh->data)
31 static inline int i8042_read_data(void)
33 return jazz_kh->data;
36 static inline int i8042_read_status(void)
38 return jazz_kh->command;
41 static inline void i8042_write_data(int val)
43 jazz_kh->data = val;
46 static inline void i8042_write_command(int val)
48 jazz_kh->command = val;
51 static inline int i8042_platform_init(void)
54 return 0;
57 static inline void i8042_platform_exit(void)
61 #endif /* _I8042_JAZZ_H */