blob: a55f2ba61ce25561636522cc1408250b6bac28de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* $OpenBSD: iocreg.h,v 1.2 2009/04/12 17:56:58 miod Exp $ */
/*
* Copyright (c) 2008 Joel Sing.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Register definitions for SGI IOC ASIC.
*/
#define IOC_NDEVS 6
#define IOCDEV_SERIAL_A 0
#define IOCDEV_SERIAL_B 1
#define IOCDEV_PARPORT 2
#define IOCDEV_KEYBOARD 3
#define IOCDEV_RTC 4
#define IOCDEV_EF 5
#define IOC3_SIO_IR 0x0000001c
#define IOC3_SIO_IES 0x00000020
#define IOC3_SIO_IEC 0x00000024
#define IOC3_SIO_CR 0x00000028
#define IOC3_MCR 0x00000030
#define IOC3_EF_BASE 0x000000f0
#define IOC3_EF_SIZE 0x60
#define IOC3_RTC_BASE 0x00020168
#define IOC3_UARTA_BASE 0x00020178
#define IOC3_UARTB_BASE 0x00020170
#define IOC3_BYTEBUS_0 0x00080000
#define IOC3_BYTEBUS_1 0x000a0000
#define IOC3_BYTEBUS_2 0x000c0000
#define IOC3_BYTEBUS_3 0x000e0000
|