OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_34/] [or1ksim/] [peripheral/] [ps2kbd.h] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 805 markom
/* ps2kbd.h -- Very simple PS/2 keyboard simulation header file
2
   Copyright (C) 2002 Marko Mlinar, markom@opencores.org
3 684 lampret
 
4 805 markom
This file is part of OpenRISC 1000 Architectural Simulator.
5
 
6
This program is free software; you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation; either version 2 of the License, or
9
(at your option) any later version.
10
 
11
This program is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
GNU General Public License for more details.
15
 
16
You should have received a copy of the GNU General Public License
17
along with this program; if not, write to the Free Software
18
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
 
20
#ifndef _PS2KBD_H_
21
#define _PS2KBD_H_
22
 
23
/* Device registers */
24
#define KBD_CTRL        4
25
#define KBD_DATA        0
26
#define KBD_SPACE       8
27
 
28 684 lampret
/* Keyboard commands */
29
#define KBD_KCMD_RST    0xFF
30
#define KBD_KCMD_DK     0xF5
31
#define KBD_KCMD_EK     0xF4
32
#define KBD_KCMD_ECHO   0xFF
33
#define KBD_KCMD_SRL    0xED
34
 
35
/* Keyboard responses */
36
#define KBD_KRESP_RSTOK 0xAA
37
#define KBD_KRESP_ECHO  0xEE
38
#define KBD_KRESP_ACK   0xFA
39
 
40
/* Controller commands */
41
#define KBD_CCMD_RCB    0x20
42
#define KBD_CCMD_WCB    0x60
43
#define KBD_CCMD_ST1    0xAA
44
#define KBD_CCMD_ST2    0xAB
45
#define KBD_CCMD_DKI    0xAD
46
#define KBD_CCMD_EKI    0xAE
47
 
48
/* Status register bits */
49
#define KBD_STATUS_OBF  0x01
50
#define KBD_STATUS_IBF  0x02
51
#define KBD_STATUS_SYS  0x04
52
#define KBD_STATUS_A2   0x08
53
#define KBD_STATUS_INH  0x10
54
#define KBD_STATUS_MOBF 0x20
55
#define KBD_STATUS_TO   0x40
56
#define KBD_STATUS_PERR 0x80
57
 
58
/* Command byte register bits */
59
#define KBD_CCMDBYTE_INT        0x01
60
#define KBD_CCMDBYTE_INT2       0x02
61
#define KBD_CCMDBYTE_SYS        0x04
62
#define KBD_CCMDBYTE_EN         0x10
63
#define KBD_CCMDBYTE_EN2        0x20
64
#define KBD_CCMDBYTE_XLAT       0x40
65
 
66 805 markom
/* Length of internal scan code fifo */
67
#define KBD_MAX_BUF     0x100
68
 
69
/* Keyboard is checked every KBD_SLOWDOWN cycle */
70
#define KBD_BAUD_RATE   1200
71
 
72
#endif /* !_PS2KBD_H_ */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.