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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Definitions for the interrupt related bits in the I/O ASIC
  7.  * interrupt status register (and the interrupt mask register, of course)
  8.  *
  9.  * Created with Information from:
  10.  *
  11.  * "DEC 3000 300/400/500/600/700/800/900 AXP Models System Programmer's Manual"
  12.  *
  13.  * and the Mach Sources
  14.  *
  15.  * Copyright (C) 199x  the Anonymous
  16.  * Copyright (C) 2002  Maciej W. Rozycki
  17.  */
  18. #ifndef __ASM_DEC_IOASIC_INTS_H
  19. #define __ASM_DEC_IOASIC_INTS_H
  20. /*
  21.  * The upper 16 bits are a part of the I/O ASIC's internal DMA engine
  22.  * and thus are common to all I/O ASIC machines.  The exception is
  23.  * the Maxine, which makes use of the FLOPPY and ISDN bits (otherwise
  24.  * unused) and has a different SCC wiring.
  25.  */
  26. /* all systems */
  27. #define IO_INR_SCC0A_TXDMA 31 /* SCC0A transmit page end */
  28. #define IO_INR_SCC0A_TXERR 30 /* SCC0A transmit memory read error */
  29. #define IO_INR_SCC0A_RXDMA 29 /* SCC0A receive half page */
  30. #define IO_INR_SCC0A_RXERR 28 /* SCC0A receive overrun */
  31. #define IO_INR_ASC_DMA 19 /* ASC buffer pointer loaded */
  32. #define IO_INR_ASC_ERR 18 /* ASC page overrun */
  33. #define IO_INR_ASC_MERR 17 /* ASC memory read error */
  34. #define IO_INR_LANCE_MERR 16 /* LANCE memory read error */
  35. /* except Maxine */
  36. #define IO_INR_SCC1A_TXDMA 27 /* SCC1A transmit page end */
  37. #define IO_INR_SCC1A_TXERR 26 /* SCC1A transmit memory read error */
  38. #define IO_INR_SCC1A_RXDMA 25 /* SCC1A receive half page */
  39. #define IO_INR_SCC1A_RXERR 24 /* SCC1A receive overrun */
  40. #define IO_INR_RES_23 23 /* unused */
  41. #define IO_INR_RES_22 22 /* unused */
  42. #define IO_INR_RES_21 21 /* unused */
  43. #define IO_INR_RES_20 20 /* unused */
  44. /* Maxine */
  45. #define IO_INR_SCC0B_TXDMA 27 /* SCC0B transmit page end */
  46. #define IO_INR_SCC0B_TXERR 26 /* SCC0B transmit memory read error */
  47. #define IO_INR_SCC0B_RXDMA 25 /* SCC0B receive half page */
  48. #define IO_INR_SCC0B_RXERR 24 /* SCC0B receive overrun */
  49. #define IO_INR_FLOPPY_ERR 23 /* FDC error */
  50. #define IO_INR_ISDN_TXDMA 22 /* ISDN xmit buffer pointer loaded */
  51. #define IO_INR_ISDN_RXDMA 21 /* ISDN recv buffer pointer loaded */
  52. #define IO_INR_ISDN_ERR 20 /* ISDN memory read/overrun error */
  53. #define IO_INR_DMA 16 /* first DMA IRQ */
  54. /*
  55.  * The lower 16 bits are system-specific and thus defined in
  56.  * system-specific headers.
  57.  */
  58. #define IO_IRQ_BASE 8 /* first IRQ assigned to I/O ASIC */
  59. #define IO_IRQ_LINES 32 /* number of I/O ASIC interrupts */
  60. #define IO_IRQ_NR(n) ((n) + IO_IRQ_BASE)
  61. #define IO_IRQ_MASK(n) (1 << (n))
  62. #define IO_IRQ_ALL 0x0000ffff
  63. #define IO_IRQ_DMA 0xffff0000
  64. #endif /* __ASM_DEC_IOASIC_INTS_H */