2 * The PCI Library -- Access to i386 I/O ports on Linux
4 * Copyright (c) 1997--2006 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL v2+
8 * SPDX-License-Identifier: GPL-2.0-or-later
14 static int ioperm_enabled;
15 static int iopl_enabled;
18 intel_setup_io(struct pci_access *a UNUSED)
20 if (ioperm_enabled || iopl_enabled)
24 * Before Linux 2.6.8, only the first 0x3ff I/O ports permissions can be
25 * modified via ioperm(). Since 2.6.8 all ports are supported.
26 * Since Linux 5.5, EFLAGS-based iopl() implementation was removed and
27 * replaced by new TSS-IOPB-map-all-based emulator. Before Linux 5.5,
28 * EFLAGS-based iopl() allowed userspace to enable/disable interrupts,
29 * which is dangerous. So prefer usage of ioperm() and fallback to iopl().
31 if (ioperm(0xcf8, 8, 1) < 0) /* conf1 + conf2 ports */
33 if (errno == EINVAL) /* ioperm() unsupported */
42 if (ioperm(0xc000, 0xfff, 1) < 0) /* remaining conf2 ports */
53 intel_cleanup_io(struct pci_access *a UNUSED)
58 ioperm(0xc000, 0xfff, 0);
69 static inline void intel_io_lock(void)
73 static inline void intel_io_unlock(void)