msi.h 774 B

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * msi.h: Defines specific to the MBus - Sbus - Interface.
  4. *
  5. * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  6. * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
  7. */
  8. #ifndef _SPARC_MSI_H
  9. #define _SPARC_MSI_H
  10. /*
  11. * Locations of MSI Registers.
  12. */
  13. #define MSI_MBUS_ARBEN 0xe0001008 /* MBus Arbiter Enable register */
  14. /*
  15. * Useful bits in the MSI Registers.
  16. */
  17. #define MSI_ASYNC_MODE 0x80000000 /* Operate the MSI asynchronously */
  18. static inline void msi_set_sync(void)
  19. {
  20. __asm__ __volatile__ ("lda [%0] %1, %%g3\n\t"
  21. "andn %%g3, %2, %%g3\n\t"
  22. "sta %%g3, [%0] %1\n\t" : :
  23. "r" (MSI_MBUS_ARBEN),
  24. "i" (ASI_M_CTL), "r" (MSI_ASYNC_MODE) : "g3");
  25. }
  26. #endif /* !(_SPARC_MSI_H) */