1/*
2 * Hardware info about DECstation DS2100/3100 systems (otherwise known as
3 * pmin/pmax or KN01).
4 *
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License.  See the file "COPYING" in the main directory of this archive
7 * for more details.
8 *
9 * Copyright (C) 1995,1996 by Paul M. Antoine, some code and definitions
10 * are by courtesy of Chris Fraser.
11 * Copyright (C) 2002  Maciej W. Rozycki
12 */
13#ifndef __ASM_MIPS_DEC_KN01_H
14#define __ASM_MIPS_DEC_KN01_H
15
16#include <asm/addrspace.h>
17
18/*
19 * Some port addresses...
20 */
21#define KN01_SLOT_SIZE	0x01000000
22
23#define KN01_LANCE_BASE (KSEG1ADDR(0x18000000)) /* 0xB8000000 */
24#define KN01_DZ11_BASE	(KSEG1ADDR(0x1c000000)) /* 0xBC000000 */
25#define KN01_RTC_BASE	(KSEG1ADDR(0x1d000000)) /* 0xBD000000 */
26
27
28/*
29 * CPU interrupt bits.
30 */
31#define KN01_CPU_INR_MEMORY	6	/* memory, I/O bus write errors */
32#define KN01_CPU_INR_VIDEO	6	/* framebuffer */
33#define KN01_CPU_INR_RTC	5	/* DS1287 RTC */
34#define KN01_CPU_INR_DZ11	4	/* DZ11 (DC7085) serial */
35#define KN01_CPU_INR_LANCE	3	/* LANCE (Am7990) Ethernet */
36#define KN01_CPU_INR_SII	2	/* SII (DC7061) SCSI */
37
38#endif /* __ASM_MIPS_DEC_KN01_H */
39