kn03.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Hardware info about DECstation 5000/2x0 systems (otherwise known as
  3.  * 3max+) and DECsystem 5900 systems (otherwise known as bigmax) which
  4.  * differ mechanically but are otherwise identical (both are known as
  5.  * KN03).
  6.  *
  7.  * This file is subject to the terms and conditions of the GNU General Public
  8.  * License.  See the file "COPYING" in the main directory of this archive
  9.  * for more details.
  10.  *
  11.  * Copyright (C) 1995,1996 by Paul M. Antoine, some code and definitions
  12.  * are by courtesy of Chris Fraser.
  13.  * Copyright (C) 2000, 2002  Maciej W. Rozycki
  14.  *
  15.  * These are addresses which have to be known early in the boot process.
  16.  * For other addresses refer to tc.h ioasic_addrs.h and friends.
  17.  */
  18. #ifndef __ASM_MIPS_DEC_KN03_H
  19. #define __ASM_MIPS_DEC_KN03_H
  20. #include <asm/addrspace.h>
  21. /*
  22.  * Some port addresses...
  23.  */
  24. #define KN03_IOASIC_BASE KSEG1ADDR(0x1f840000) /* I/O ASIC */
  25. #define KN03_RTC_BASE KSEG1ADDR(0x1fa00000) /* RTC */
  26. #define KN03_MCR_BASE KSEG1ADDR(0x1fac0000) /* MCR */
  27. #define KN03_MCR_BNK32M (1<<10) /* 32M stride */
  28. #define KN03_MCR_ECCEN (1<<13) /* ECC enabled */
  29. #define KN03_IOASIC_REG(r) (KN03_IOASIC_BASE+(r))
  30. /*
  31.  * CPU interrupt bits.
  32.  */
  33. #define KN03_CPU_INR_HALT 6 /* HALT button */
  34. #define KN03_CPU_INR_MEMORY 5 /* memory, I/O bus write errors */
  35. #define KN03_CPU_INR_RES_4 4 /* unused */
  36. #define KN03_CPU_INR_RTC 3 /* DS1287 RTC */
  37. #define KN03_CPU_INR_CASCADE 2 /* I/O ASIC cascade */
  38. /*
  39.  * I/O ASIC interrupt bits.  Star marks denote non-IRQ status bits.
  40.  */
  41. #define KN03_IO_INR_3MAXP 15 /* (*) 3max+/bigmax ID */
  42. #define KN03_IO_INR_NVRAM 14 /* (*) NVRAM clear jumper */
  43. #define KN03_IO_INR_TC2 13 /* TURBOchannel slot #2 */
  44. #define KN03_IO_INR_TC1 12 /* TURBOchannel slot #1 */
  45. #define KN03_IO_INR_TC0 11 /* TURBOchannel slot #0 */
  46. #define KN03_IO_INR_NRMOD 10 /* (*) NRMOD manufacturing jumper */
  47. #define KN03_IO_INR_ASC 9 /* ASC (NCR53C94) SCSI */
  48. #define KN03_IO_INR_LANCE 8 /* LANCE (Am7990) Ethernet */
  49. #define KN03_IO_INR_SCC1 7 /* SCC (Z85C30) serial #1 */
  50. #define KN03_IO_INR_SCC0 6 /* SCC (Z85C30) serial #0 */
  51. #define KN03_IO_INR_RTC 5 /* DS1287 RTC (?) */
  52. #define KN03_IO_INR_PSU 4 /* power supply unit warning */
  53. #define KN03_IO_INR_RES_3 3 /* unused */
  54. #define KN03_IO_INR_ASC_DATA 2 /* SCSI data ready (discouraged?) (?) */
  55. #define KN03_IO_INR_PBNC 1 /* HALT button debouncer */
  56. #define KN03_IO_INR_PBNO 0 /* ~HALT button debouncer */
  57. #endif /* __ASM_MIPS_DEC_KN03_H */