ei82596hkvEnd.c
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:2k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* ei82596hkvEnd.c - Intel 82596 END driver for hkv3500 board */
  2. /* Copyright 1989-1998 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01c,09jun98,dat  changed API (no workaround avail)
  8. 01b,14dec97,jdi  doc: added xref to ei82596End
  9. 01a,18apr97,map  created
  10. */
  11. /*
  12. This module defines a specific interface to the Intel 82596 ethernet
  13. chip on an hkv3500 board.
  14. NOTICE:
  15. The API for this driver has changed.  The function sys596Init, which is defined
  16. in the BSP, must use a single argument, 'unit'.  Previous versions of this driver for R3000 only, used a different argument list.  All R3000 users must
  17. update their BSP code for this new API.
  18. This module also adds 2 additional BSP routines, sys596IntConnect() and
  19. sys596IntDisconnect().  
  20. .CS
  21.     STATUS sys596IntConnect (int unit, FUNCPTR rtn, ULONG arg)
  22.     STATUS sys596IntDisconnect (int unit)
  23. .CE
  24. SEE ALSO: ei82596End
  25. */
  26. #include "vxWorks.h"
  27. #define ei82596EndLoad ei82596hkvEndLoad
  28. #define DRV_NAME "eihkv"
  29. #define DRV_NAME_LEN 6 /* strlen() + 1 */
  30. IMPORT void   sys596Init (int);
  31. IMPORT STATUS sys596IntConnect (int, FUNCPTR, int);
  32. IMPORT STATUS sys596IntDisconnect (int);
  33. #ifndef SYS_INT_CONNECT
  34. #define SYS_INT_CONNECT(pDrvCtrl,rtn,arg,pResult)                       
  35.     {                                                                   
  36.     sys596Init ((pDrvCtrl)->unit);                                      
  37.     *pResult = sys596IntConnect ((pDrvCtrl)->unit, (FUNCPTR)rtn, arg);  
  38.     }
  39. #endif /* SYS_INT_CONNECT */
  40. #ifndef SYS_INT_DISCONNECT
  41. #define SYS_INT_DISCONNECT(pDrvCtrl,rtn,arg,pResult)                    
  42.     {                                                                   
  43.     *pResult = sys596IntDisconnect ((pDrvCtrl)->unit);                  
  44.     }
  45. #endif /* SYS_INT_DISCONNECT */
  46. #include "ei82596End.c"