blob: 85308f572c236974663b482f4106d473f1029316 [file]
#ifndef PARISC_LASIPS2_H
#define PARISC_LASIPS2_H
void ps2port_setup(void);
int lasips2_kbd_in(char *c, int max);
#define LASIPS2_KBD_IO (lasi_hpa + LASI_PS2)
#define LASIPS2_KBD_RESET ((void *)(LASIPS2_KBD_IO + 0x00))
#define LASIPS2_KBD_DATA ((void *)(LASIPS2_KBD_IO + 0x04))
#define LASIPS2_KBD_CONTROL ((void *)(LASIPS2_KBD_IO + 0x08))
#define LASIPS2_KBD_STATUS ((void *)(LASIPS2_KBD_IO + 0x0c))
#define LASIPS2_KBD_CONTROL_EN 0x01
#define LASIPS2_KBD_STATUS_RBNE 0x01
#define LASIPS2_KBD_STATUS_TBNE 0x02
#endif