bvmeints.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * arch/m68k/bvme6000/bvmeints.c
  3.  *
  4.  * Copyright (C) 1997 Richard Hirst [richard@sleepie.demon.co.uk]
  5.  *
  6.  * based on amiints.c -- Amiga Linux interrupt handling code
  7.  *
  8.  * This file is subject to the terms and conditions of the GNU General Public
  9.  * License.  See the file README.legal in the main directory of this archive
  10.  * for more details.
  11.  *
  12.  */
  13. #include <linux/types.h>
  14. #include <linux/kernel.h>
  15. #include <linux/errno.h>
  16. #include <asm/ptrace.h>
  17. #include <asm/system.h>
  18. #include <asm/irq.h>
  19. #include <asm/traps.h>
  20. static void bvme6000_defhand (int irq, void *dev_id, struct pt_regs *fp);
  21. /*
  22.  * This should ideally be 4 elements only, for speed.
  23.  */
  24. static struct {
  25. void (*handler)(int, void *, struct pt_regs *);
  26. unsigned long flags;
  27. void *dev_id;
  28. const char *devname;
  29. unsigned count;
  30. } irq_tab[256];
  31. /*
  32.  * void bvme6000_init_IRQ (void)
  33.  *
  34.  * Parameters: None
  35.  *
  36.  * Returns: Nothing
  37.  *
  38.  * This function is called during kernel startup to initialize
  39.  * the bvme6000 IRQ handling routines.
  40.  */
  41. void bvme6000_init_IRQ (void)
  42. {
  43. int i;
  44. for (i = 0; i < 256; i++) {
  45. irq_tab[i].handler = bvme6000_defhand;
  46. irq_tab[i].flags = IRQ_FLG_STD;
  47. irq_tab[i].dev_id = NULL;
  48. irq_tab[i].devname = NULL;
  49. irq_tab[i].count = 0;
  50. }
  51. }
  52. int bvme6000_request_irq(unsigned int irq,
  53. void (*handler)(int, void *, struct pt_regs *),
  54.                 unsigned long flags, const char *devname, void *dev_id)
  55. {
  56. if (irq > 255) {
  57. printk("%s: Incorrect IRQ %d from %sn", __FUNCTION__, irq, devname);
  58. return -ENXIO;
  59. }
  60. #if 0
  61. /* Nothing special about auto-vectored devices for the BVME6000,
  62.  * but treat it specially to avoid changes elsewhere.
  63.  */
  64. if (irq >= VEC_INT1 && irq <= VEC_INT7)
  65. return sys_request_irq(irq - VEC_SPUR, handler, flags,
  66. devname, dev_id);
  67. #endif
  68. if (!(irq_tab[irq].flags & IRQ_FLG_STD)) {
  69. if (irq_tab[irq].flags & IRQ_FLG_LOCK) {
  70. printk("%s: IRQ %d from %s is not replaceablen",
  71.        __FUNCTION__, irq, irq_tab[irq].devname);
  72. return -EBUSY;
  73. }
  74. if (flags & IRQ_FLG_REPLACE) {
  75. printk("%s: %s can't replace IRQ %d from %sn",
  76.        __FUNCTION__, devname, irq, irq_tab[irq].devname);
  77. return -EBUSY;
  78. }
  79. }
  80. irq_tab[irq].handler = handler;
  81. irq_tab[irq].flags   = flags;
  82. irq_tab[irq].dev_id  = dev_id;
  83. irq_tab[irq].devname = devname;
  84. return 0;
  85. }
  86. void bvme6000_free_irq(unsigned int irq, void *dev_id)
  87. {
  88. if (irq > 255) {
  89. printk("%s: Incorrect IRQ %dn", __FUNCTION__, irq);
  90. return;
  91. }
  92. #if 0
  93. if (irq >= VEC_INT1 && irq <= VEC_INT7) {
  94. sys_free_irq(irq - VEC_SPUR, dev_id);
  95. return;
  96. }
  97. #endif
  98. if (irq_tab[irq].dev_id != dev_id)
  99. printk("%s: Removing probably wrong IRQ %d from %sn",
  100.        __FUNCTION__, irq, irq_tab[irq].devname);
  101. irq_tab[irq].handler = bvme6000_defhand;
  102. irq_tab[irq].flags   = IRQ_FLG_STD;
  103. irq_tab[irq].dev_id  = NULL;
  104. irq_tab[irq].devname = NULL;
  105. }
  106. void bvme6000_process_int (unsigned long vec, struct pt_regs *fp)
  107. {
  108. if (vec > 255)
  109. printk ("bvme6000_process_int: Illegal vector %ld", vec);
  110. else
  111. {
  112. irq_tab[vec].count++;
  113. irq_tab[vec].handler(vec, irq_tab[vec].dev_id, fp);
  114. }
  115. }
  116. int bvme6000_get_irq_list (char *buf)
  117. {
  118. int i, len = 0;
  119. for (i = 0; i < 256; i++) {
  120. if (irq_tab[i].count)
  121. len += sprintf (buf+len, "Vec 0x%02x: %8d  %sn",
  122.     i, irq_tab[i].count,
  123.     irq_tab[i].devname ? irq_tab[i].devname : "free");
  124. }
  125. return len;
  126. }
  127. static void bvme6000_defhand (int irq, void *dev_id, struct pt_regs *fp)
  128. {
  129. printk ("Unknown interrupt 0x%02xn", irq);
  130. }
  131. void bvme6000_enable_irq (unsigned int irq)
  132. {
  133. }
  134. void bvme6000_disable_irq (unsigned int irq)
  135. {
  136. }