2 * The PCI Library -- Access to i386 I/O ports on Solaris
4 * Copyright (c) 2003 Bill Moore <billm@eng.sun.com>
5 * Copyright (c) 2003--2006 Martin Mares <mj@ucw.cz>
7 * Can be freely distributed and used under the terms of the GNU GPL v2+
9 * SPDX-License-Identifier: GPL-2.0-or-later
12 #include <sys/sysi86.h>
16 intel_setup_io(struct pci_access *a UNUSED)
18 return (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) < 0) ? 0 : 1;
22 intel_cleanup_io(struct pci_access *a UNUSED)
24 /* FIXME: How to switch off I/O port access? */
31 __asm__ __volatile__ ("inb (%w1)":"=a" (v):"Nd" (port));
39 __asm__ __volatile__ ("inw (%w1)":"=a" (v):"Nd" (port));
47 __asm__ __volatile__ ("inl (%w1)":"=a" (v):"Nd" (port));
52 outb (u8 value, u16 port)
54 __asm__ __volatile__ ("outb (%w1)": :"a" (value), "Nd" (port));
58 outw (u16 value, u16 port)
60 __asm__ __volatile__ ("outw (%w1)": :"a" (value), "Nd" (port));
64 outl (u32 value, u16 port)
66 __asm__ __volatile__ ("outl (%w1)": :"a" (value), "Nd" (port));
69 static inline void intel_io_lock(void)
73 static inline void intel_io_unlock(void)