wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 3 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __ASM_IBMPC_H_ |
| 9 | #define __ASM_IBMPC_H_ 1 |
| 10 | |
| 11 | /* misc ports in an ibm compatible pc */ |
| 12 | |
| 13 | #define MASTER_PIC 0x20 |
| 14 | #define PIT_BASE 0x40 |
| 15 | #define KBDDATA 0x60 |
| 16 | #define SYSCTLB 0x62 |
| 17 | #define KBDCMD 0x64 |
| 18 | #define SYSCTLA 0x92 |
| 19 | #define SLAVE_PIC 0xa0 |
| 20 | |
| 21 | #if 1 |
| 22 | #define UART0_BASE 0x3f8 |
| 23 | #define UART1_BASE 0x2f8 |
| 24 | #else |
| 25 | /* FixMe: uarts swapped */ |
| 26 | #define UART0_BASE 0x2f8 |
| 27 | #define UART1_BASE 0x3f8 |
| 28 | #endif |
| 29 | |
| 30 | |
| 31 | #endif |