lcareg.h revision 1.3
1/*	$OpenBSD: lcareg.h,v 1.3 1996/07/29 23:00:30 niklas Exp $	*/
2/*	$NetBSD: lcareg.h,v 1.2 1996/04/23 14:03:46 cgd Exp $	*/
3
4/*
5 * Copyright (c) 1995 Carnegie-Mellon University.
6 * All rights reserved.
7 *
8 * Author: Jeffrey Hsu
9 *
10 * Permission to use, copy, modify and distribute this software and
11 * its documentation is hereby granted, provided that both the copyright
12 * notice and this permission notice appear in all copies of the
13 * software, derivative works or modified versions, and any portions
14 * thereof, and that both notices appear in supporting documentation.
15 *
16 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
17 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
18 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
19 *
20 * Carnegie Mellon requests users of this software to return to
21 *
22 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
23 *  School of Computer Science
24 *  Carnegie Mellon University
25 *  Pittsburgh PA 15213-3890
26 *
27 * any improvements or extensions that they make and grant Carnegie the
28 * rights to redistribute these changes.
29 */
30
31/*
32 * 21066 chip registers
33 */
34
35#define REGVAL(r)	(*(int32_t *)phystok0seg(r))
36
37/*
38 * Base addresses
39 */
40#define LCA_IOC_BASE	0x180000000L		/* LCA IOC Regs */
41#define LCA_PCI_SIO	0x1c0000000L		/* PCI Sp. I/O Space */
42#define LCA_PCI_CONF	0x1e0000000L		/* PCI Conf. Space */
43#define LCA_PCI_SPARSE	0x200000000L		/* PCI Sparse Space */
44#define LCA_PCI_DENSE	0x300000000L		/* PCI Dense Space */
45
46#define LCA_IOC_HAE	LCA_IOC_BASE		/* Host Address Extension */
47
48#define LCA_IOC_CONF	(LCA_IOC_BASE + 0x020)	/* Configuration Cycle Type */
49#define LCA_IOC_STAT0	(LCA_IOC_BASE + 0x040)	/* Status 0 */
50#define LCA_IOC_STAT1	(LCA_IOC_BASE + 0x060)	/* Status 1 */
51
52#define LCA_IOC_W_BASE0	(LCA_IOC_BASE + 0x100)	/* Window Base */
53#define LCA_IOC_W_MASK0	(LCA_IOC_BASE + 0x140)	/* Window Mask */
54#define LCA_IOC_W_T_BASE0 (LCA_IOC_BASE + 0x180) /* Translated Base */
55
56#define LCA_IOC_W_BASE1	(LCA_IOC_BASE + 0x120)	/* Window Base */
57#define LCA_IOC_W_MASK1	(LCA_IOC_BASE + 0x160)	/* Window Mask */
58#define LCA_IOC_W_T_BASE1 (LCA_IOC_BASE + 0x1a0) /* Translated Base */
59