]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/asm-i386/i8254.h
* Patch by Daniel Engström, 13 Nov 2002:
[karo-tx-uboot.git] / include / asm-i386 / i8254.h
1 /*
2  * (C) Copyright 2002
3  * Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24
25 /* i8254.h Intel 8254 PIT registers */
26
27
28 #ifndef _ASMI386_I8254_H_
29 #define _ASMI386_I8954_H_       1
30
31
32
33 #define PIT_T0          0x00            /* PIT channel 0 count/status */
34 #define PIT_T1          0x01            /* PIT channel 1 count/status */
35 #define PIT_T2          0x02            /* PIT channel 2 count/status */
36 #define PIT_COMMAND     0x03            /* PIT mode control, latch and read back */
37
38 /* PIT Command Register Bit Definitions */
39
40 #define PIT_CMD_CTR0    0x00            /* Select PIT counter 0 */
41 #define PIT_CMD_CTR1    0x40            /* Select PIT counter 1 */
42 #define PIT_CMD_CTR2    0x80            /* Select PIT counter 2 */
43
44 #define PIT_CMD_LATCH   0x00            /* Counter Latch Command */
45 #define PIT_CMD_LOW     0x10            /* Access counter bits 7-0 */
46 #define PIT_CMD_HIGH    0x20            /* Access counter bits 15-8 */
47 #define PIT_CMD_BOTH    0x30            /* Access counter bits 15-0 in two accesses */
48
49 #define PIT_CMD_MODE0   0x00            /* Select mode 0 */
50 #define PIT_CMD_MODE1   0x02            /* Select mode 1 */
51 #define PIT_CMD_MODE2   0x04            /* Select mode 2 */
52 #define PIT_CMD_MODE3   0x06            /* Select mode 3 */
53 #define PIT_CMD_MODE4   0x08            /* Select mode 4 */
54 #define PIT_CMD_MODE5   0x0A            /* Select mode 5 */
55
56 #endif