INTERRUP.C
上传用户:qiulin1960
上传日期:2013-10-16
资源大小:2844k
文件大小:11k
源码类别:

Windows CE

开发平台:

Windows_Unix

  1. /*++
  2. THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  3. ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  4. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  5. PARTICULAR PURPOSE.
  6. Copyright (c) 1995-1998  Microsoft Corporation
  7. Module Name:
  8.     interrupt.c
  9. Abstract:
  10.     This is a part of the driver for the Cirrus Logic CS8900
  11.     Ethernet controller.  It contains the interrupt-handling routines.
  12.     This driver conforms to the NDIS 3.0 interface.
  13.     The overall structure and much of the code is taken from
  14.     the Lance NDIS driver by Tony Ercolano.
  15. --*/
  16. #include "precomp.h"
  17. //
  18. // On debug builds tell the compiler to keep the symbols for
  19. // internal functions, otw throw them out.
  20. //
  21. #if DBG
  22. #define STATIC
  23. #else
  24. #define STATIC static
  25. #endif
  26. extern volatile IOPreg *v_pIOPRegs;
  27. extern unsigned long *EthCommand;
  28. //
  29. // This is used to pad short packets.
  30. //
  31. static UCHAR BlankBuffer[60] = "                                                            ";
  32. void CS8900ReceiveEvent(PCS8900_ADAPTER Adapter, unsigned short RxEvent)
  33. {
  34. #if WINCEDEBUG
  35. unsigned short i;
  36. #endif
  37. unsigned short Length, Type;
  38. unsigned short *pBuffer;
  39. unsigned short *pBufferLimit;
  40. unsigned char  *cptr;
  41. WORD PacketOper;
  42. DEBUGMSG(0, (TEXT("++CS8900ReceiveEventrn")));
  43. // Verify that it is an RxOK event
  44. if (!(RxEvent & RX_EVENT_RX_OK))
  45. {
  46. DEBUGMSG(0, (TEXT("CS8900ReceiveEvent: Receive Currupted Packet!rn")));
  47. return;
  48. }
  49. readIoPort(IO_RX_TX_DATA_0); // Discard RxStatus
  50. Length = readIoPort(IO_RX_TX_DATA_0);
  51. pBuffer = (unsigned short *)Adapter->Lookahead;
  52. pBufferLimit = (unsigned short *)Adapter->Lookahead + (Length + 1) / 2;
  53. while (pBuffer < pBufferLimit)
  54. {
  55. *pBuffer = readIoPort(IO_RX_TX_DATA_0);
  56. pBuffer++;
  57. }
  58. pBuffer = (unsigned short *)Adapter->Lookahead;
  59. Type = pBuffer[6];
  60. PacketOper = pBuffer[10];
  61. if (Type == 0x0608)
  62. {
  63. if (PacketOper == 0x0100)
  64. DEBUGMSG(0, (TEXT("[CS8900] Receive ARP Request Packetrn")));
  65. else if (PacketOper == 0x0200)
  66. DEBUGMSG(0, (TEXT("[CS8900] Receive ARP Response Packetrn")));
  67. else if (PacketOper == 0x0300)
  68. DEBUGMSG(0, (TEXT("[CS8900] Receive RARP Request Packetrn")));
  69. else if (PacketOper == 0x0400)
  70. DEBUGMSG(0, (TEXT("[CS8900] Receive RARP Response Packetrn")));
  71. else
  72. DEBUGMSG(0, (TEXT("[CS8900] Receive Unknown ARP Packetrn")));
  73. }
  74. else if (Type == 0x0008)
  75. DEBUGMSG(0, (TEXT("[CS8900] Receive IP Packetrn")));
  76. cptr = (unsigned char *)Adapter->Lookahead;
  77. #if WINCEDEBUG
  78. DEBUGMSG(0, (TEXT("type = %x, length = %xrn"), Type, Length));
  79. for (i=0; i<Length; i++)
  80. DEBUGMSG(0, (TEXT("%x "), *cptr++));
  81. DEBUGMSG(0, (TEXT("rn")));
  82. #endif
  83. cptr = (unsigned char *)Adapter->Lookahead;
  84. NdisMEthIndicateReceive(
  85. Adapter->MiniportAdapterHandle,
  86. (NDIS_HANDLE)Adapter,
  87. (PCHAR)(Adapter->Lookahead),
  88. CS8900_HEADER_SIZE,
  89. (PCHAR)(cptr)+CS8900_HEADER_SIZE,
  90. Length - CS8900_HEADER_SIZE,
  91. Length - CS8900_HEADER_SIZE);
  92. NdisMEthIndicateReceiveComplete(Adapter->MiniportAdapterHandle);
  93. return;
  94. }
  95. #if 0
  96. VOID
  97. CS8900EnableInterrupt(
  98.     IN NDIS_HANDLE MiniportAdapterContext
  99.     )
  100. /*++
  101. Routine Description:
  102.     This routine is used to turn on the interrupt mask.
  103. Arguments:
  104.     Context - The adapter for the CS8900 to start.
  105. Return Value:
  106.     None.
  107. --*/
  108. {
  109.     PCS8900_ADAPTER Adapter = (PCS8900_ADAPTER)(MiniportAdapterContext);
  110.     DEBUGMSG(0, (TEXT("CS8900EnableInterrupt is called!!!rn")));
  111. v_pIOPRegs->rEINTMASK &= ~(1<<9); // EINT9
  112. }
  113. VOID
  114. CS8900DisableInterrupt(
  115.     IN NDIS_HANDLE MiniportAdapterContext
  116.     )
  117. /*++
  118. Routine Description:
  119.     This routine is used to turn off the interrupt mask.
  120. Arguments:
  121.     Context - The adapter for the CS8900 to start.
  122. Return Value:
  123.     None.
  124. --*/
  125. {
  126.     PCS8900_ADAPTER Adapter = (PCS8900_ADAPTER)(MiniportAdapterContext);
  127.     DEBUGMSG(0, (TEXT("CS8900DisableInterrupt is called!!!rn")));
  128. v_pIOPRegs->rEINTMASK |= (1<<9); // EINT9
  129. }
  130. #endif 
  131. VOID
  132. CS8900Isr(
  133.     OUT PBOOLEAN InterruptRecognized,
  134.     OUT PBOOLEAN QueueDpc,
  135.     IN PVOID Context
  136.     )
  137. /*++
  138. Routine Description:
  139.     This is the interrupt handler which is registered with the operating
  140.     system. If several are pending (i.e. transmit complete and receive),
  141.     handle them all.  Block new interrupts until all pending interrupts
  142.     are handled.
  143. Arguments:
  144.     InterruptRecognized - Boolean value which returns TRUE if the
  145.         ISR recognizes the interrupt as coming from this adapter.
  146.     QueueDpc - TRUE if a DPC should be queued.
  147.     Context - pointer to the adapter object
  148. Return Value:
  149.     None.
  150. --*/
  151. {
  152. #undef NODPC
  153. #ifdef NODPC
  154. unsigned short Event;
  155. #endif
  156.     PCS8900_ADAPTER Adapter = ((PCS8900_ADAPTER)Context);
  157.     *InterruptRecognized = TRUE;
  158. #ifdef NODPC
  159. *QueueDpc = FALSE;
  160. #else
  161. *QueueDpc = TRUE;
  162. #endif
  163. #ifdef NODPC
  164. Event = CS8900ReadRegister(PKTPG_ISQ);
  165. DEBUGMSG(0, (TEXT("++CS8900Isr event=%xrn"), Event));
  166. while (Event != 0)
  167. {
  168. switch (Event & REG_NUM_MASK)
  169. {
  170. case REG_NUM_RX_EVENT:
  171. DEBUGMSG(0, (TEXT("RXrn")));
  172. CS8900ReceiveEvent(Adapter, Event);
  173. break;
  174. case REG_NUM_TX_EVENT:
  175. DEBUGMSG(0, (TEXT("TXrn")));
  176. break;
  177. case REG_NUM_BUF_EVENT:
  178. DEBUGMSG(0, (TEXT("BUFrn")));
  179. break;
  180. case REG_NUM_RX_MISS:
  181. DEBUGMSG(0, (TEXT("CS8900Isr:RX_MISS!rn")));
  182. break;
  183. case REG_NUM_TX_COL:
  184. break;
  185. }
  186. Event = CS8900ReadRegister(PKTPG_ISQ);
  187. DEBUGMSG(0, (TEXT("event=%xrn"), Event));
  188. }
  189. #endif
  190.     DEBUGMSG(0, (TEXT("CS8900Isr is called!!!rn")));
  191. }
  192. VOID
  193. CS8900HandleInterrupt(
  194.     IN NDIS_HANDLE MiniportAdapterContext
  195.     )
  196. /*++
  197. Routine Description:
  198.     This is the defered processing routine for interrupts.  It
  199.     reads from the Interrupt Status Register any outstanding
  200.     interrupts and handles them.
  201. Arguments:
  202.     MiniportAdapterContext - a handle to the adapter block.
  203. Return Value:
  204.     NONE.
  205. --*/
  206. {
  207.     //
  208.     // The adapter to process
  209.     //
  210.     PCS8900_ADAPTER Adapter = ((PCS8900_ADAPTER)MiniportAdapterContext);
  211. unsigned short Event;
  212. Event = CS8900ReadRegister(PKTPG_ISQ);
  213. DEBUGMSG(0, (TEXT("++CS8900HandleInterrupt event=%xrn"), Event));
  214. while (Event != 0)
  215. {
  216. switch (Event & REG_NUM_MASK)
  217. {
  218. case REG_NUM_RX_EVENT:
  219. //DEBUGMSG(0, (TEXT("RXrn")));
  220. CS8900ReceiveEvent(Adapter, Event);
  221. break;
  222. case REG_NUM_TX_EVENT:
  223. DEBUGMSG(0, (TEXT("TXrn")));
  224. break;
  225. case REG_NUM_BUF_EVENT:
  226. DEBUGMSG(0, (TEXT("BUFrn")));
  227. break;
  228. case REG_NUM_RX_MISS:
  229. DEBUGMSG(0, (TEXT("CS8900HandleInterrupt:RX_MISS!rn")));
  230. break;
  231. case REG_NUM_TX_COL:
  232. break;
  233. }
  234. Event = CS8900ReadRegister(PKTPG_ISQ);
  235. DEBUGMSG(0, (TEXT("event=%xrn"), Event));
  236. }
  237. DEBUGMSG(0, (TEXT("--CS8900HandleInterruptrn")));
  238. }
  239. NDIS_STATUS
  240. CS8900TransferData(
  241.     OUT PNDIS_PACKET Packet,
  242.     OUT PUINT BytesTransferred,
  243.     IN NDIS_HANDLE MiniportAdapterContext,
  244.     IN NDIS_HANDLE MiniportReceiveContext,
  245.     IN UINT ByteOffset,
  246.     IN UINT BytesToTransfer
  247.     )
  248. /*++
  249. Routine Description:
  250.     A protocol calls the CS8900TransferData request (indirectly via
  251.     NdisTransferData) from within its Receive event handler
  252.     to instruct the driver to copy the contents of the received packet
  253.     a specified packet buffer.
  254. Arguments:
  255.     MiniportAdapterContext - Context registered with the wrapper, really
  256.         a pointer to the adapter.
  257.     MiniportReceiveContext - The context value passed by the driver on its call
  258.     to NdisMEthIndicateReceive.  The driver can use this value to determine
  259.     which packet, on which adapter, is being received.
  260.     ByteOffset - An unsigned integer specifying the offset within the
  261.     received packet at which the copy is to begin.  If the entire packet
  262.     is to be copied, ByteOffset must be zero.
  263.     BytesToTransfer - An unsigned integer specifying the number of bytes
  264.     to copy.  It is legal to transfer zero bytes; this has no effect.  If
  265.     the sum of ByteOffset and BytesToTransfer is greater than the size
  266.     of the received packet, then the remainder of the packet (starting from
  267.     ByteOffset) is transferred, and the trailing portion of the receive
  268.     buffer is not modified.
  269.     Packet - A pointer to a descriptor for the packet storage into which
  270.     the MAC is to copy the received packet.
  271.     BytesTransfered - A pointer to an unsigned integer.  The MAC writes
  272.     the actual number of bytes transferred into this location.  This value
  273.     is not valid if the return status is STATUS_PENDING.
  274. Notes:
  275.   - The MacReceiveContext will be a pointer to the open block for
  276.     the packet.
  277. --*/
  278. {
  279.     //
  280.     // The adapter to transfer from.
  281.     //
  282.     PCS8900_ADAPTER Adapter = ((PCS8900_ADAPTER)MiniportReceiveContext);
  283. DEBUGMSG(0, (TEXT("+CS8900:CS8900TransferDatarn")));
  284. while(1);
  285.     return(NDIS_STATUS_SUCCESS);
  286. }
  287. NDIS_STATUS
  288. CS8900Send(
  289.     IN NDIS_HANDLE MiniportAdapterContext,
  290.     IN PNDIS_PACKET Packet,
  291.     IN UINT Flags
  292.     )
  293. /*++
  294. Routine Description:
  295.     The CS8900Send request instructs a driver to transmit a packet through
  296.     the adapter onto the medium.
  297. Arguments:
  298.     MiniportAdapterContext - Context registered with the wrapper, really
  299.         a pointer to the adapter.
  300.     Packet - A pointer to a descriptor for the packet that is to be
  301.     transmitted.
  302.     SendFlags - Optional send flags
  303. Notes:
  304.     This miniport driver will always accept a send.  This is because
  305.     the CS8900 has limited send resources and the driver needs packets
  306.     to copy to the adapter immediately after a transmit completes in
  307.     order to keep the adapter as busy as possible.
  308.     This is not required for other adapters, as they have enough
  309.     resources to keep the transmitter busy until the wrapper submits
  310.     the next packet.
  311. --*/
  312. {
  313. ULONG Len;
  314. PUCHAR CurBufAddress;
  315. UCHAR TotalPacket[2048];
  316. PNDIS_BUFFER CurBuffer;
  317. UINT i;
  318. UINT Count = 0;
  319. UINT CurBufLen;
  320. UINT PacketLength;
  321. USHORT BusStatus;
  322. PCS8900_ADAPTER Adapter = (PCS8900_ADAPTER)(MiniportAdapterContext);
  323. DEBUGMSG(0, (TEXT("CS8900Sendrn")));
  324. NdisQueryPacket(
  325. Packet,
  326. NULL,
  327. NULL,
  328. NULL,
  329. &Len
  330. );
  331. NdisQueryPacket(Packet, NULL, NULL, &CurBuffer, &PacketLength);
  332. NdisQueryBuffer(CurBuffer, (PVOID *)&CurBufAddress, &CurBufLen);
  333. for (i = 0; i < CurBufLen; i++)
  334. TotalPacket[Count++] = CurBufAddress[i];
  335. NdisGetNextBuffer(CurBuffer, &CurBuffer);
  336. while (CurBuffer && (CurBufLen != 0))
  337. {
  338. NdisQueryBuffer(CurBuffer, (PVOID *)&CurBufAddress, &CurBufLen);
  339. for (i = 0; i < CurBufLen; i++)
  340. {
  341. TotalPacket[Count++] = CurBufAddress[i];
  342. }
  343. NdisGetNextBuffer(CurBuffer, &CurBuffer);
  344. }
  345. // Request that a transmit be started
  346. BusStatus = CS8900RequestTransmit(PacketLength);
  347. // If there was an error with the transmit bid
  348. if (BusStatus & BUS_ST_TX_BID_ERR)
  349. {
  350. DEBUGMSG(0, (TEXT("##### BUS_ST_TX_BID_ERR #####rn")));
  351. }
  352. else if (BusStatus & BUS_ST_RDY4TXNOW)
  353. {
  354. // The chip is ready for transmission now
  355. // Copy the message to the chip to start the transmit
  356. CS8900CopyTxFrame((PCHAR)TotalPacket, PacketLength);
  357. return(NDIS_STATUS_SUCCESS);
  358. }
  359. return(NDIS_STATUS_FAILURE);
  360. }