License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / arch / sparc / include / asm / msi.h
blob3c17c10744313a864b0c41d8a7561c2caaa82307
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * msi.h: Defines specific to the MBus - Sbus - Interface.
5 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
6 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
7 */
9 #ifndef _SPARC_MSI_H
10 #define _SPARC_MSI_H
13 * Locations of MSI Registers.
15 #define MSI_MBUS_ARBEN 0xe0001008 /* MBus Arbiter Enable register */
18 * Useful bits in the MSI Registers.
20 #define MSI_ASYNC_MODE 0x80000000 /* Operate the MSI asynchronously */
23 static inline void msi_set_sync(void)
25 __asm__ __volatile__ ("lda [%0] %1, %%g3\n\t"
26 "andn %%g3, %2, %%g3\n\t"
27 "sta %%g3, [%0] %1\n\t" : :
28 "r" (MSI_MBUS_ARBEN),
29 "i" (ASI_M_CTL), "r" (MSI_ASYNC_MODE) : "g3");
32 #endif /* !(_SPARC_MSI_H) */