msi.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: msi.h,v 1.3 1996/08/29 09:48:25 davem Exp $
  2.  * msi.h:  Defines specific to the MBus - Sbus - Interface.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  5.  * Copyright (C) 1996 Eddie C. Dost   (ecd@skynet.be)
  6.  */
  7. #ifndef _SPARC_MSI_H
  8. #define _SPARC_MSI_H
  9. /*
  10.  * Locations of MSI Registers.
  11.  */
  12. #define MSI_MBUS_ARBEN 0xe0001008 /* MBus Arbiter Enable register */
  13. /*
  14.  * Useful bits in the MSI Registers.
  15.  */
  16. #define MSI_ASYNC_MODE  0x80000000 /* Operate the MSI asynchronously */
  17. extern __inline__ void msi_set_sync(void)
  18. {
  19. __asm__ __volatile__ ("lda [%0] %1, %%g3nt"
  20.       "andn %%g3, %2, %%g3nt"
  21.       "sta %%g3, [%0] %1nt" : :
  22.       "r" (MSI_MBUS_ARBEN),
  23.       "i" (ASI_M_CTL), "r" (MSI_ASYNC_MODE) : "g3");
  24. }
  25. #endif /* !(_SPARC_MSI_H) */