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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: irq.h,v 1.32 2000/08/26 02:42:28 anton Exp $
  2.  * irq.h: IRQ registers on the Sparc.
  3.  *
  4.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5.  */
  6. #ifndef _SPARC_IRQ_H
  7. #define _SPARC_IRQ_H
  8. #include <linux/config.h>
  9. #include <linux/linkage.h>
  10. #include <linux/threads.h>     /* For NR_CPUS */
  11. #include <asm/system.h>     /* For SUN4M_NCPUS */
  12. #include <asm/btfixup.h>
  13. #define __irq_ino(irq) irq
  14. #define __irq_pil(irq) irq
  15. BTFIXUPDEF_CALL(char *, __irq_itoa, unsigned int)
  16. #define __irq_itoa(irq) BTFIXUP_CALL(__irq_itoa)(irq)
  17. #define NR_IRQS    15
  18. /* Dave Redman (djhr@tadpole.co.uk)
  19.  * changed these to function pointers.. it saves cycles and will allow
  20.  * the irq dependencies to be split into different files at a later date
  21.  * sun4c_irq.c, sun4m_irq.c etc so we could reduce the kernel size.
  22.  * Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  23.  * Changed these to btfixup entities... It saves cycles :)
  24.  */
  25. BTFIXUPDEF_CALL(void, disable_irq, unsigned int)
  26. BTFIXUPDEF_CALL(void, enable_irq, unsigned int)
  27. BTFIXUPDEF_CALL(void, disable_pil_irq, unsigned int)
  28. BTFIXUPDEF_CALL(void, enable_pil_irq, unsigned int)
  29. BTFIXUPDEF_CALL(void, clear_clock_irq, void)
  30. BTFIXUPDEF_CALL(void, clear_profile_irq, int)
  31. BTFIXUPDEF_CALL(void, load_profile_irq, int, unsigned int)
  32. #define disable_irq_nosync disable_irq
  33. #define disable_irq(irq) BTFIXUP_CALL(disable_irq)(irq)
  34. #define enable_irq(irq) BTFIXUP_CALL(enable_irq)(irq)
  35. #define disable_pil_irq(irq) BTFIXUP_CALL(disable_pil_irq)(irq)
  36. #define enable_pil_irq(irq) BTFIXUP_CALL(enable_pil_irq)(irq)
  37. #define clear_clock_irq() BTFIXUP_CALL(clear_clock_irq)()
  38. #define clear_profile_irq(cpu) BTFIXUP_CALL(clear_profile_irq)(cpu)
  39. #define load_profile_irq(cpu,limit) BTFIXUP_CALL(load_profile_irq)(cpu,limit)
  40. extern void (*init_timers)(void (*lvl10_irq)(int, void *, struct pt_regs *));
  41. extern void claim_ticker14(void (*irq_handler)(int, void *, struct pt_regs *),
  42.    int irq,
  43.    unsigned int timeout);
  44. #ifdef CONFIG_SMP
  45. BTFIXUPDEF_CALL(void, set_cpu_int, int, int)
  46. BTFIXUPDEF_CALL(void, clear_cpu_int, int, int)
  47. BTFIXUPDEF_CALL(void, set_irq_udt, int)
  48. #define set_cpu_int(cpu,level) BTFIXUP_CALL(set_cpu_int)(cpu,level)
  49. #define clear_cpu_int(cpu,level) BTFIXUP_CALL(clear_cpu_int)(cpu,level)
  50. #define set_irq_udt(cpu) BTFIXUP_CALL(set_irq_udt)(cpu)
  51. #endif
  52. extern int request_fast_irq(unsigned int irq, void (*handler)(int, void *, struct pt_regs *), unsigned long flags, __const__ char *devname);
  53. /* On the sun4m, just like the timers, we have both per-cpu and master
  54.  * interrupt registers.
  55.  */
  56. /* These registers are used for sending/receiving irqs from/to
  57.  * different cpu's.
  58.  */
  59. struct sun4m_intreg_percpu {
  60. unsigned int tbt;        /* Interrupts still pending for this cpu. */
  61. /* These next two registers are WRITE-ONLY and are only
  62.  * "on bit" sensitive, "off bits" written have NO affect.
  63.  */
  64. unsigned int clear;  /* Clear this cpus irqs here. */
  65. unsigned int set;    /* Set this cpus irqs here. */
  66. unsigned char space[PAGE_SIZE - 12];
  67. };
  68. /*
  69.  * djhr
  70.  * Actually the clear and set fields in this struct are misleading..
  71.  * according to the SLAVIO manual (and the same applies for the SEC)
  72.  * the clear field clears bits in the mask which will ENABLE that IRQ
  73.  * the set field sets bits in the mask to DISABLE the IRQ.
  74.  *
  75.  * Also the undirected_xx address in the SLAVIO is defined as
  76.  * RESERVED and write only..
  77.  *
  78.  * DAVEM_NOTE: The SLAVIO only specifies behavior on uniprocessor
  79.  *             sun4m machines, for MP the layout makes more sense.
  80.  */
  81. struct sun4m_intregs {
  82. struct sun4m_intreg_percpu cpu_intregs[SUN4M_NCPUS];
  83. unsigned int tbt;                /* IRQ's that are still pending. */
  84. unsigned int irqs;               /* Master IRQ bits. */
  85. /* Again, like the above, two these registers are WRITE-ONLY. */
  86. unsigned int clear;              /* Clear master IRQ's by setting bits here. */
  87. unsigned int set;                /* Set master IRQ's by setting bits here. */
  88. /* This register is both READ and WRITE. */
  89. unsigned int undirected_target;  /* Which cpu gets undirected irqs. */
  90. };
  91. extern struct sun4m_intregs *sun4m_interrupts;
  92. /* 
  93.  * Bit field defines for the interrupt registers on various
  94.  * Sparc machines.
  95.  */
  96. /* The sun4c interrupt register. */
  97. #define SUN4C_INT_ENABLE  0x01     /* Allow interrupts. */
  98. #define SUN4C_INT_E14     0x80     /* Enable level 14 IRQ. */
  99. #define SUN4C_INT_E10     0x20     /* Enable level 10 IRQ. */
  100. #define SUN4C_INT_E8      0x10     /* Enable level 8 IRQ. */
  101. #define SUN4C_INT_E6      0x08     /* Enable level 6 IRQ. */
  102. #define SUN4C_INT_E4      0x04     /* Enable level 4 IRQ. */
  103. #define SUN4C_INT_E1      0x02     /* Enable level 1 IRQ. */
  104. /* Dave Redman (djhr@tadpole.co.uk)
  105.  * The sun4m interrupt registers.
  106.  */
  107. #define SUN4M_INT_ENABLE   0x80000000
  108. #define SUN4M_INT_E14      0x00000080
  109. #define SUN4M_INT_E10      0x00080000
  110. #define SUN4M_HARD_INT(x) (0x000000001 << (x))
  111. #define SUN4M_SOFT_INT(x) (0x000010000 << (x))
  112. #define SUN4M_INT_MASKALL 0x80000000   /* mask all interrupts */
  113. #define SUN4M_INT_MODULE_ERR 0x40000000   /* module error */
  114. #define SUN4M_INT_M2S_WRITE 0x20000000   /* write buffer error */
  115. #define SUN4M_INT_ECC 0x10000000   /* ecc memory error */
  116. #define SUN4M_INT_FLOPPY 0x00400000   /* floppy disk */
  117. #define SUN4M_INT_MODULE 0x00200000   /* module interrupt */
  118. #define SUN4M_INT_VIDEO 0x00100000   /* onboard video */
  119. #define SUN4M_INT_REALTIME 0x00080000   /* system timer */
  120. #define SUN4M_INT_SCSI 0x00040000   /* onboard scsi */
  121. #define SUN4M_INT_AUDIO 0x00020000   /* audio/isdn */
  122. #define SUN4M_INT_ETHERNET 0x00010000   /* onboard ethernet */
  123. #define SUN4M_INT_SERIAL 0x00008000   /* serial ports */
  124. #define SUN4M_INT_KBDMS 0x00004000   /* keyboard/mouse */
  125. #define SUN4M_INT_SBUSBITS 0x00003F80   /* sbus int bits */
  126. #define SUN4M_INT_SBUS(x) (1 << (x+7))
  127. #define SUN4M_INT_VME(x) (1 << (x))
  128. #endif