Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Hardware info common to DECstation 5000/1xx systems (otherwise |
| 3 | * known as 3min or kn02ba) and Personal DECstations 5000/xx ones |
| 4 | * (otherwise known as maxine or kn02ca). |
| 5 | * |
| 6 | * This file is subject to the terms and conditions of the GNU General Public |
| 7 | * License. See the file "COPYING" in the main directory of this archive |
| 8 | * for more details. |
| 9 | * |
| 10 | * Copyright (C) 1995,1996 by Paul M. Antoine, some code and definitions |
| 11 | * are by courtesy of Chris Fraser. |
Maciej W. Rozycki | 64dac50 | 2005-06-22 20:56:26 +0000 | [diff] [blame^] | 12 | * Copyright (C) 2000, 2002, 2003, 2005 Maciej W. Rozycki |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
| 14 | * These are addresses which have to be known early in the boot process. |
| 15 | * For other addresses refer to tc.h, ioasic_addrs.h and friends. |
| 16 | */ |
| 17 | #ifndef __ASM_MIPS_DEC_KN02XA_H |
| 18 | #define __ASM_MIPS_DEC_KN02XA_H |
| 19 | |
| 20 | #include <asm/addrspace.h> |
| 21 | #include <asm/dec/ioasic_addrs.h> |
| 22 | |
Maciej W. Rozycki | 3bd4c90 | 2005-06-16 20:30:54 +0000 | [diff] [blame] | 23 | #define KN02XA_SLOT_BASE CKSEG1ADDR(0x1c000000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * Some port addresses... |
| 27 | */ |
| 28 | #define KN02XA_IOASIC_BASE (KN02XA_SLOT_BASE + IOASIC_IOCTL) /* I/O ASIC */ |
| 29 | #define KN02XA_RTC_BASE (KN02XA_SLOT_BASE + IOASIC_TOY) /* RTC */ |
| 30 | |
| 31 | |
| 32 | /* |
| 33 | * Memory control ASIC registers. |
| 34 | */ |
Maciej W. Rozycki | 3bd4c90 | 2005-06-16 20:30:54 +0000 | [diff] [blame] | 35 | #define KN02XA_MER CKSEG1ADDR(0x0c400000) /* memory error register */ |
| 36 | #define KN02XA_MSR CKSEG1ADDR(0x0c800000) /* memory size register */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * CPU control ASIC registers. |
| 40 | */ |
Maciej W. Rozycki | 3bd4c90 | 2005-06-16 20:30:54 +0000 | [diff] [blame] | 41 | #define KN02XA_MEM_CONF CKSEG1ADDR(0x0e000000) /* write timeout config */ |
| 42 | #define KN02XA_EAR CKSEG1ADDR(0x0e000004) /* error address register */ |
| 43 | #define KN02XA_BOOT0 CKSEG1ADDR(0x0e000008) /* boot 0 register */ |
| 44 | #define KN02XA_MEM_INTR CKSEG1ADDR(0x0e00000c) /* write err IRQ stat & ack */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | /* |
| 47 | * Memory Error Register bits, common definitions. |
| 48 | * The rest is defined in system-specific headers. |
| 49 | */ |
| 50 | #define KN02XA_MER_RES_28 (0xf<<28) /* unused */ |
| 51 | #define KN02XA_MER_RES_17 (0x3ff<<17) /* unused */ |
| 52 | #define KN02XA_MER_PAGERR (1<<16) /* 2k page boundary error */ |
| 53 | #define KN02XA_MER_TRANSERR (1<<15) /* transfer length error */ |
| 54 | #define KN02XA_MER_PARDIS (1<<14) /* parity error disable */ |
Maciej W. Rozycki | 64dac50 | 2005-06-22 20:56:26 +0000 | [diff] [blame^] | 55 | #define KN02XA_MER_SIZE (1<<13) /* r/o mirror of MSR_SIZE */ |
| 56 | #define KN02XA_MER_RES_12 (1<<12) /* unused */ |
| 57 | #define KN02XA_MER_BYTERR (0xf<<8) /* byte lane error bitmask: */ |
| 58 | #define KN02XA_MER_BYTERR_3 (0x8<<8) /* byte lane #3 */ |
| 59 | #define KN02XA_MER_BYTERR_2 (0x4<<8) /* byte lane #2 */ |
| 60 | #define KN02XA_MER_BYTERR_1 (0x2<<8) /* byte lane #1 */ |
| 61 | #define KN02XA_MER_BYTERR_0 (0x1<<8) /* byte lane #0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #define KN02XA_MER_RES_0 (0xff<<0) /* unused */ |
| 63 | |
| 64 | /* |
| 65 | * Memory Size Register bits, common definitions. |
| 66 | * The rest is defined in system-specific headers. |
| 67 | */ |
| 68 | #define KN02XA_MSR_RES_27 (0x1f<<27) /* unused */ |
| 69 | #define KN02XA_MSR_RES_14 (0x7<<14) /* unused */ |
| 70 | #define KN02XA_MSR_SIZE (1<<13) /* 16M/4M stride */ |
| 71 | #define KN02XA_MSR_RES_0 (0x1fff<<0) /* unused */ |
| 72 | |
| 73 | /* |
| 74 | * Error Address Register bits. |
| 75 | */ |
| 76 | #define KN02XA_EAR_RES_29 (0x7<<29) /* unused */ |
| 77 | #define KN02XA_EAR_ADDRESS (0x7ffffff<<2) /* address involved */ |
| 78 | #define KN02XA_EAR_RES_0 (0x3<<0) /* unused */ |
| 79 | |
Maciej W. Rozycki | 64dac50 | 2005-06-22 20:56:26 +0000 | [diff] [blame^] | 80 | |
| 81 | #ifndef __ASSEMBLY__ |
| 82 | |
| 83 | #include <linux/interrupt.h> |
| 84 | |
| 85 | struct pt_regs; |
| 86 | |
| 87 | extern void dec_kn02xa_be_init(void); |
| 88 | extern int dec_kn02xa_be_handler(struct pt_regs *regs, int is_fixup); |
| 89 | extern irqreturn_t dec_kn02xa_be_interrupt(int irq, void *dev_id, |
| 90 | struct pt_regs *regs); |
| 91 | #endif |
| 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | #endif /* __ASM_MIPS_DEC_KN02XA_H */ |