| 1 | /* $Id: irq.c,v 1.1.1.1 2003/07/02 13:57:02 eleph Exp $ */ | 
|---|
| 2 | /* | 
|---|
| 3 | * OS/2 implementation of Linux irq kernel services | 
|---|
| 4 | * | 
|---|
| 5 | * (C) 2000-2002 InnoTek Systemberatung GmbH | 
|---|
| 6 | * (C) 2000-2001 Sander van Leeuwen (sandervl@xs4all.nl) | 
|---|
| 7 | * | 
|---|
| 8 | * This program is free software; you can redistribute it and/or | 
|---|
| 9 | * modify it under the terms of the GNU General Public License as | 
|---|
| 10 | * published by the Free Software Foundation; either version 2 of | 
|---|
| 11 | * the License, or (at your option) any later version. | 
|---|
| 12 | * | 
|---|
| 13 | * This program is distributed in the hope that it will be useful, | 
|---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
| 16 | * GNU General Public License for more details. | 
|---|
| 17 | * | 
|---|
| 18 | * You should have received a copy of the GNU General Public | 
|---|
| 19 | * License along with this program; if not, write to the Free | 
|---|
| 20 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, | 
|---|
| 21 | * USA. | 
|---|
| 22 | * | 
|---|
| 23 | */ | 
|---|
| 24 |  | 
|---|
| 25 | #include "linux.h" | 
|---|
| 26 | #include <linux/init.h> | 
|---|
| 27 | #include <linux/poll.h> | 
|---|
| 28 | #include <asm/uaccess.h> | 
|---|
| 29 | #include <asm/hardirq.h> | 
|---|
| 30 |  | 
|---|
| 31 | #define LINUX | 
|---|
| 32 | #include <ossidc.h> | 
|---|
| 33 | #include <ossidc32.h> | 
|---|
| 34 | #include <osspci.h> | 
|---|
| 35 | #include <dbgos2.h> | 
|---|
| 36 | #include "irqos2.h" | 
|---|
| 37 |  | 
|---|
| 38 |  | 
|---|
| 39 | BOOL fInInterrupt = FALSE; | 
|---|
| 40 |  | 
|---|
| 41 | //****************************************************************************** | 
|---|
| 42 | //****************************************************************************** | 
|---|
| 43 |  | 
|---|
| 44 | static IRQ_SLOT   arSlots[MAX_IRQ_SLOTS] = { 0 }; | 
|---|
| 45 | static ULONG       eoiIrq[255] = {0}; | 
|---|
| 46 |  | 
|---|
| 47 |  | 
|---|
| 48 | //****************************************************************************** | 
|---|
| 49 | //****************************************************************************** | 
|---|
| 50 | static IRQ_SLOT *FindSlot(unsigned irq) | 
|---|
| 51 | { | 
|---|
| 52 | IRQ_SLOT    *pSlot; | 
|---|
| 53 |  | 
|---|
| 54 | for( pSlot = arSlots; pSlot != &arSlots[MAX_IRQ_SLOTS]; pSlot++ ) | 
|---|
| 55 | { | 
|---|
| 56 | if( pSlot->irqNo == irq ) return pSlot; | 
|---|
| 57 | } | 
|---|
| 58 |  | 
|---|
| 59 | return NULL; | 
|---|
| 60 | } | 
|---|
| 61 |  | 
|---|
| 62 |  | 
|---|
| 63 | //****************************************************************************** | 
|---|
| 64 | //****************************************************************************** | 
|---|
| 65 |  | 
|---|
| 66 | int request_irq(unsigned irq, irq_handler_t handler, | 
|---|
| 67 | unsigned long ulSharedFlag, const char *pchName, void *pUserData) | 
|---|
| 68 | { | 
|---|
| 69 | IRQ_SLOT  *pSlot = FindSlot(irq & 0xff); | 
|---|
| 70 | unsigned  u, uSlotNo = (unsigned)-1; | 
|---|
| 71 | ULONG hRes; | 
|---|
| 72 |  | 
|---|
| 73 | rprintf(("request_irq: irq %d", irq & 0xff )); | 
|---|
| 74 | if ( !pSlot ) | 
|---|
| 75 | { | 
|---|
| 76 | // find empty slot | 
|---|
| 77 | for( uSlotNo = 0; uSlotNo < MAX_IRQ_SLOTS; uSlotNo++ ) | 
|---|
| 78 | { | 
|---|
| 79 | if( arSlots[uSlotNo].flHandlers == 0 ) | 
|---|
| 80 | { | 
|---|
| 81 | pSlot = &arSlots[uSlotNo]; | 
|---|
| 82 | break; | 
|---|
| 83 | } | 
|---|
| 84 | } | 
|---|
| 85 | } | 
|---|
| 86 |  | 
|---|
| 87 | if ( pSlot ) | 
|---|
| 88 | { | 
|---|
| 89 | hRes = 0; | 
|---|
| 90 | if (RMRequestIRQ(irq, (ulSharedFlag & SA_SHIRQ) != 0, &hRes) == FALSE) | 
|---|
| 91 | { | 
|---|
| 92 | rprintf(("RMRequestIRQ failed for irq %d", irq)); | 
|---|
| 93 | return 1; | 
|---|
| 94 | } | 
|---|
| 95 | pSlot->irqNo = irq & 0xff; | 
|---|
| 96 | pSlot->hRes = hRes; | 
|---|
| 97 |  | 
|---|
| 98 | for ( u = 0; u < MAX_SHAREDIRQS; u++ ) | 
|---|
| 99 | { | 
|---|
| 100 | if ( pSlot->irqHandlers[u].handler == NULL ) | 
|---|
| 101 | { | 
|---|
| 102 | pSlot->irqHandlers[u].handler = handler; | 
|---|
| 103 | pSlot->irqHandlers[u].x0 = ulSharedFlag; | 
|---|
| 104 | pSlot->irqHandlers[u].x1 = (char *)pchName; | 
|---|
| 105 | pSlot->irqHandlers[u].x2 = pUserData; | 
|---|
| 106 |  | 
|---|
| 107 | if( pSlot->flHandlers != 0 || ALSA_SetIrq( irq & 0xff, uSlotNo, (ulSharedFlag & SA_SHIRQ) != 0) ) | 
|---|
| 108 | { | 
|---|
| 109 | pSlot->flHandlers |= 1 << u; | 
|---|
| 110 | return 0; | 
|---|
| 111 | } | 
|---|
| 112 |  | 
|---|
| 113 | break; | 
|---|
| 114 | } | 
|---|
| 115 | } | 
|---|
| 116 | } | 
|---|
| 117 |  | 
|---|
| 118 | rprintf(("request_irq: Unable to register irq handler for irq %d", irq & 0xff )); | 
|---|
| 119 | return 1; | 
|---|
| 120 | } | 
|---|
| 121 |  | 
|---|
| 122 |  | 
|---|
| 123 | //****************************************************************************** | 
|---|
| 124 | //****************************************************************************** | 
|---|
| 125 | void free_irq(unsigned int irq, void *userdata) | 
|---|
| 126 | { | 
|---|
| 127 | unsigned  u; | 
|---|
| 128 | IRQ_SLOT  *pSlot; | 
|---|
| 129 |  | 
|---|
| 130 | if( (pSlot = FindSlot(irq&0xff)) != NULL ) { | 
|---|
| 131 | for( u = 0; u < MAX_SHAREDIRQS; u++ ) { | 
|---|
| 132 | if( pSlot->irqHandlers[u].x2 == userdata ) { | 
|---|
| 133 | pSlot->flHandlers &= ~(1 << u); | 
|---|
| 134 | if( pSlot->flHandlers == 0 ) { | 
|---|
| 135 | rprintf(("free_irq: irq %d", irq & 0xff )); | 
|---|
| 136 | ALSA_FreeIrq(pSlot->irqNo); | 
|---|
| 137 | pSlot->irqNo = 0; | 
|---|
| 138 | RMDeallocateIRQ(pSlot->hRes); | 
|---|
| 139 | pSlot->hRes = 0; | 
|---|
| 140 | // pSlot->fEOI = 0; | 
|---|
| 141 | } | 
|---|
| 142 |  | 
|---|
| 143 | pSlot->irqHandlers[u].handler = NULL; | 
|---|
| 144 | pSlot->irqHandlers[u].x0 = 0; | 
|---|
| 145 | pSlot->irqHandlers[u].x1 = NULL; | 
|---|
| 146 | pSlot->irqHandlers[u].x2 = NULL; | 
|---|
| 147 |  | 
|---|
| 148 | return; | 
|---|
| 149 |  | 
|---|
| 150 | } | 
|---|
| 151 | } | 
|---|
| 152 | } | 
|---|
| 153 | } | 
|---|
| 154 |  | 
|---|
| 155 |  | 
|---|
| 156 | //****************************************************************************** | 
|---|
| 157 | //****************************************************************************** | 
|---|
| 158 | void eoi_irq(unsigned int irq) | 
|---|
| 159 | { | 
|---|
| 160 | /*(void)irq; */ | 
|---|
| 161 | /* | 
|---|
| 162 | IRQ_SLOT *pSlot = FindSlot(irq); | 
|---|
| 163 |  | 
|---|
| 164 | if( pSlot )  pSlot->fEOI = 1; | 
|---|
| 165 | */ | 
|---|
| 166 | eoiIrq[irq & 0xff]++; | 
|---|
| 167 | } | 
|---|
| 168 |  | 
|---|
| 169 |  | 
|---|
| 170 | //****************************************************************************** | 
|---|
| 171 | //****************************************************************************** | 
|---|
| 172 | BOOL process_interrupt(ULONG ulSlotNo, ULONG *pulIrq) | 
|---|
| 173 | { | 
|---|
| 174 | unsigned  u; | 
|---|
| 175 | int rc; | 
|---|
| 176 | IRQ_SLOT  *pSlot; | 
|---|
| 177 |  | 
|---|
| 178 | //dprintf(("enter int proc %d %d",ulSlotNo, *pulIrq)); | 
|---|
| 179 |  | 
|---|
| 180 | if( ulSlotNo < MAX_IRQ_SLOTS ) | 
|---|
| 181 | { | 
|---|
| 182 | pSlot = &arSlots[ulSlotNo]; | 
|---|
| 183 |  | 
|---|
| 184 | for( u = 0; u < MAX_SHAREDIRQS; u++ ) | 
|---|
| 185 | { | 
|---|
| 186 | if(pSlot && pSlot->irqHandlers[u].handler ) | 
|---|
| 187 | { | 
|---|
| 188 | fInInterrupt = TRUE; | 
|---|
| 189 | #if 0 | 
|---|
| 190 | rc = pSlot->irqHandlers[u].handler(pSlot->irqNo, | 
|---|
| 191 | pSlot->irqHandlers[u].x2, 0); | 
|---|
| 192 | #else | 
|---|
| 193 | rc = pSlot->irqHandlers[u].handler(pSlot->irqNo, | 
|---|
| 194 | pSlot->irqHandlers[u].x2); | 
|---|
| 195 | #endif | 
|---|
| 196 |  | 
|---|
| 197 | // HDA Hardware generates controller interrupts and stream interrupts | 
|---|
| 198 | // the uniaud16 driver only cares about stream interrupts. | 
|---|
| 199 | // azx_interrupt in alsa-kernel/pci/hda/hda_intel.c will return rc 2 if | 
|---|
| 200 | // the interrupt is from the  controller. There is no need to call uniaud16 | 
|---|
| 201 | // for these interrupts | 
|---|
| 202 | if ( rc == 2 ) { | 
|---|
| 203 | fInInterrupt = FALSE; | 
|---|
| 204 | *pulIrq = pSlot->irqNo; | 
|---|
| 205 | eoiIrq[pSlot->irqNo] = 0; | 
|---|
| 206 | return TRUE; | 
|---|
| 207 | } | 
|---|
| 208 |  | 
|---|
| 209 | if (rc == 1) eoi_irq(pSlot->irqNo); | 
|---|
| 210 | rc = (eoiIrq[pSlot->irqNo] > 0); | 
|---|
| 211 | fInInterrupt = FALSE; | 
|---|
| 212 |  | 
|---|
| 213 | if( rc /*== 1 || pSlot->fEOI*/ ) { | 
|---|
| 214 |  | 
|---|
| 215 | *pulIrq = pSlot->irqNo; | 
|---|
| 216 | //    pSlot->fEOI = 0; | 
|---|
| 217 |  | 
|---|
| 218 | //ok, this interrupt was intended for us; notify the 16 bits MMPM/2 driver | 
|---|
| 219 | OSS32_ProcessIRQ(); | 
|---|
| 220 | //dprintf(("exit(1) int proc %d %d",ulSlotNo, *pulIrq)); | 
|---|
| 221 | eoiIrq[pSlot->irqNo] = 0; | 
|---|
| 222 | return TRUE; | 
|---|
| 223 | } | 
|---|
| 224 | } | 
|---|
| 225 | } | 
|---|
| 226 | } | 
|---|
| 227 | //dprintf(("exit(0) int proc %d %d",ulSlotNo, *pulIrq)); | 
|---|
| 228 |  | 
|---|
| 229 | return FALSE; | 
|---|
| 230 | } | 
|---|
| 231 |  | 
|---|
| 232 |  | 
|---|
| 233 | //****************************************************************************** | 
|---|
| 234 | //****************************************************************************** | 
|---|
| 235 | int in_interrupt() | 
|---|
| 236 | { | 
|---|
| 237 | return fInInterrupt; | 
|---|
| 238 | } | 
|---|
| 239 |  | 
|---|
| 240 |  | 
|---|
| 241 | //****************************************************************************** | 
|---|
| 242 | //****************************************************************************** | 
|---|
| 243 | void disable_irq(int irq) | 
|---|
| 244 | { | 
|---|
| 245 | dprintf(("disable_irq %d NOT implemented", irq)); | 
|---|
| 246 | } | 
|---|
| 247 |  | 
|---|
| 248 | //****************************************************************************** | 
|---|
| 249 | //****************************************************************************** | 
|---|
| 250 |  | 
|---|