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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  **********************************************************************
  3.  *     irqmgr.c - IRQ manager for emu10k1 driver
  4.  *     Copyright 1999, 2000 Creative Labs, Inc.
  5.  *
  6.  **********************************************************************
  7.  *
  8.  *     Date                 Author          Summary of changes
  9.  *     ----                 ------          ------------------
  10.  *     October 20, 1999     Bertrand Lee    base code release
  11.  *
  12.  **********************************************************************
  13.  *
  14.  *     This program is free software; you can redistribute it and/or
  15.  *     modify it under the terms of the GNU General Public License as
  16.  *     published by the Free Software Foundation; either version 2 of
  17.  *     the License, or (at your option) any later version.
  18.  *
  19.  *     This program is distributed in the hope that it will be useful,
  20.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  *     GNU General Public License for more details.
  23.  *
  24.  *     You should have received a copy of the GNU General Public
  25.  *     License along with this program; if not, write to the Free
  26.  *     Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
  27.  *     USA.
  28.  *
  29.  **********************************************************************
  30.  */
  31. #include "hwaccess.h"
  32. #include "8010.h"
  33. #include "cardmi.h"
  34. #include "cardmo.h"
  35. #include "irqmgr.h"
  36. /* Interrupt handler */
  37. void emu10k1_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  38. {
  39. struct emu10k1_card *card = (struct emu10k1_card *) dev_id;
  40. u32 irqstatus, irqstatus_tmp;
  41. DPD(4, "emu10k1_interrupt called, irq =  %un", irq);
  42. /*
  43.  ** NOTE :
  44.  ** We do a 'while loop' here cos on certain machines, with both
  45.  ** playback and recording going on at the same time, IRQs will
  46.  ** stop coming in after a while. Checking IPND indeed shows that
  47.  ** there are interrupts pending but the PIC says no IRQs pending.
  48.  ** I suspect that some boards need edge-triggered IRQs but are not
  49.  ** getting that condition if we don't completely clear the IPND
  50.  ** (make sure no more interrupts are pending).
  51.  ** - Eric
  52.  */
  53. while ((irqstatus = inl(card->iobase + IPR))) {
  54. DPD(4, "irq status %#xn", irqstatus);
  55. irqstatus_tmp = irqstatus;
  56. if (irqstatus & IRQTYPE_TIMER) {
  57. emu10k1_timer_irqhandler(card);
  58. irqstatus &= ~IRQTYPE_TIMER;
  59. }
  60. if (irqstatus & IRQTYPE_DSP) {
  61. emu10k1_dsp_irqhandler(card);
  62. irqstatus &= ~IRQTYPE_DSP;
  63. }
  64. if (irqstatus & IRQTYPE_MPUIN) {
  65. emu10k1_mpuin_irqhandler(card);
  66. irqstatus &= ~IRQTYPE_MPUIN;
  67. }
  68. if (irqstatus & IRQTYPE_MPUOUT) {
  69. emu10k1_mpuout_irqhandler(card);
  70. irqstatus &= ~IRQTYPE_MPUOUT;
  71. }
  72. if (irqstatus & IPR_MUTE) {
  73. emu10k1_mute_irqhandler(card);
  74. irqstatus &=~IPR_MUTE;
  75. }
  76. if (irqstatus & IPR_VOLINCR) {
  77. emu10k1_volincr_irqhandler(card);
  78. irqstatus &=~IPR_VOLINCR;
  79. }
  80. if (irqstatus & IPR_VOLDECR) {
  81. emu10k1_voldecr_irqhandler(card);
  82. irqstatus &=~IPR_VOLDECR;
  83. }
  84. if (irqstatus){
  85. printk(KERN_ERR "emu10k1: Warning, unhandled interrupt: %#08xn", irqstatus);
  86. //make sure any interrupts we don't handle are disabled:
  87. emu10k1_irq_disable(card, ~(INTE_MIDIRXENABLE | INTE_MIDITXENABLE | INTE_INTERVALTIMERENB |
  88. INTE_VOLDECRENABLE | INTE_VOLINCRENABLE | INTE_MUTEENABLE |
  89. INTE_FXDSPENABLE));
  90. }
  91. /* acknowledge interrupt */
  92.                 outl(irqstatus_tmp, card->iobase + IPR);
  93. }
  94. }