18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * Hardware info common to DECstation 5000/1xx systems (otherwise 38c2ecf20Sopenharmony_ci * known as 3min or kn02ba) and Personal DECstations 5000/xx ones 48c2ecf20Sopenharmony_ci * (otherwise known as maxine or kn02ca). 58c2ecf20Sopenharmony_ci * 68c2ecf20Sopenharmony_ci * This file is subject to the terms and conditions of the GNU General Public 78c2ecf20Sopenharmony_ci * License. See the file "COPYING" in the main directory of this archive 88c2ecf20Sopenharmony_ci * for more details. 98c2ecf20Sopenharmony_ci * 108c2ecf20Sopenharmony_ci * Copyright (C) 1995,1996 by Paul M. Antoine, some code and definitions 118c2ecf20Sopenharmony_ci * are by courtesy of Chris Fraser. 128c2ecf20Sopenharmony_ci * Copyright (C) 2000, 2002, 2003, 2005 Maciej W. Rozycki 138c2ecf20Sopenharmony_ci * 148c2ecf20Sopenharmony_ci * These are addresses which have to be known early in the boot process. 158c2ecf20Sopenharmony_ci * For other addresses refer to tc.h, ioasic_addrs.h and friends. 168c2ecf20Sopenharmony_ci */ 178c2ecf20Sopenharmony_ci#ifndef __ASM_MIPS_DEC_KN02XA_H 188c2ecf20Sopenharmony_ci#define __ASM_MIPS_DEC_KN02XA_H 198c2ecf20Sopenharmony_ci 208c2ecf20Sopenharmony_ci#include <asm/dec/ioasic_addrs.h> 218c2ecf20Sopenharmony_ci 228c2ecf20Sopenharmony_ci#define KN02XA_SLOT_BASE 0x1c000000 238c2ecf20Sopenharmony_ci 248c2ecf20Sopenharmony_ci/* 258c2ecf20Sopenharmony_ci * Memory control ASIC registers. 268c2ecf20Sopenharmony_ci */ 278c2ecf20Sopenharmony_ci#define KN02XA_MER 0x0c400000 /* memory error register */ 288c2ecf20Sopenharmony_ci#define KN02XA_MSR 0x0c800000 /* memory size register */ 298c2ecf20Sopenharmony_ci 308c2ecf20Sopenharmony_ci/* 318c2ecf20Sopenharmony_ci * CPU control ASIC registers. 328c2ecf20Sopenharmony_ci */ 338c2ecf20Sopenharmony_ci#define KN02XA_MEM_CONF 0x0e000000 /* write timeout config */ 348c2ecf20Sopenharmony_ci#define KN02XA_EAR 0x0e000004 /* error address register */ 358c2ecf20Sopenharmony_ci#define KN02XA_BOOT0 0x0e000008 /* boot 0 register */ 368c2ecf20Sopenharmony_ci#define KN02XA_MEM_INTR 0x0e00000c /* write err IRQ stat & ack */ 378c2ecf20Sopenharmony_ci 388c2ecf20Sopenharmony_ci/* 398c2ecf20Sopenharmony_ci * Memory Error Register bits, common definitions. 408c2ecf20Sopenharmony_ci * The rest is defined in system-specific headers. 418c2ecf20Sopenharmony_ci */ 428c2ecf20Sopenharmony_ci#define KN02XA_MER_RES_28 (0xf<<28) /* unused */ 438c2ecf20Sopenharmony_ci#define KN02XA_MER_RES_17 (0x3ff<<17) /* unused */ 448c2ecf20Sopenharmony_ci#define KN02XA_MER_PAGERR (1<<16) /* 2k page boundary error */ 458c2ecf20Sopenharmony_ci#define KN02XA_MER_TRANSERR (1<<15) /* transfer length error */ 468c2ecf20Sopenharmony_ci#define KN02XA_MER_PARDIS (1<<14) /* parity error disable */ 478c2ecf20Sopenharmony_ci#define KN02XA_MER_SIZE (1<<13) /* r/o mirror of MSR_SIZE */ 488c2ecf20Sopenharmony_ci#define KN02XA_MER_RES_12 (1<<12) /* unused */ 498c2ecf20Sopenharmony_ci#define KN02XA_MER_BYTERR (0xf<<8) /* byte lane error bitmask: */ 508c2ecf20Sopenharmony_ci#define KN02XA_MER_BYTERR_3 (0x8<<8) /* byte lane #3 */ 518c2ecf20Sopenharmony_ci#define KN02XA_MER_BYTERR_2 (0x4<<8) /* byte lane #2 */ 528c2ecf20Sopenharmony_ci#define KN02XA_MER_BYTERR_1 (0x2<<8) /* byte lane #1 */ 538c2ecf20Sopenharmony_ci#define KN02XA_MER_BYTERR_0 (0x1<<8) /* byte lane #0 */ 548c2ecf20Sopenharmony_ci#define KN02XA_MER_RES_0 (0xff<<0) /* unused */ 558c2ecf20Sopenharmony_ci 568c2ecf20Sopenharmony_ci/* 578c2ecf20Sopenharmony_ci * Memory Size Register bits, common definitions. 588c2ecf20Sopenharmony_ci * The rest is defined in system-specific headers. 598c2ecf20Sopenharmony_ci */ 608c2ecf20Sopenharmony_ci#define KN02XA_MSR_RES_27 (0x1f<<27) /* unused */ 618c2ecf20Sopenharmony_ci#define KN02XA_MSR_RES_14 (0x7<<14) /* unused */ 628c2ecf20Sopenharmony_ci#define KN02XA_MSR_SIZE (1<<13) /* 16M/4M stride */ 638c2ecf20Sopenharmony_ci#define KN02XA_MSR_RES_0 (0x1fff<<0) /* unused */ 648c2ecf20Sopenharmony_ci 658c2ecf20Sopenharmony_ci/* 668c2ecf20Sopenharmony_ci * Error Address Register bits. 678c2ecf20Sopenharmony_ci */ 688c2ecf20Sopenharmony_ci#define KN02XA_EAR_RES_29 (0x7<<29) /* unused */ 698c2ecf20Sopenharmony_ci#define KN02XA_EAR_ADDRESS (0x7ffffff<<2) /* address involved */ 708c2ecf20Sopenharmony_ci#define KN02XA_EAR_RES_0 (0x3<<0) /* unused */ 718c2ecf20Sopenharmony_ci 728c2ecf20Sopenharmony_ci 738c2ecf20Sopenharmony_ci#ifndef __ASSEMBLY__ 748c2ecf20Sopenharmony_ci 758c2ecf20Sopenharmony_ci#include <linux/interrupt.h> 768c2ecf20Sopenharmony_ci 778c2ecf20Sopenharmony_cistruct pt_regs; 788c2ecf20Sopenharmony_ci 798c2ecf20Sopenharmony_ciextern void dec_kn02xa_be_init(void); 808c2ecf20Sopenharmony_ciextern int dec_kn02xa_be_handler(struct pt_regs *regs, int is_fixup); 818c2ecf20Sopenharmony_ciextern irqreturn_t dec_kn02xa_be_interrupt(int irq, void *dev_id); 828c2ecf20Sopenharmony_ci#endif 838c2ecf20Sopenharmony_ci 848c2ecf20Sopenharmony_ci#endif /* __ASM_MIPS_DEC_KN02XA_H */ 85