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 #include "i386-io-access.h"
16 static int ioperm_enabled;
17 static int iopl_enabled;
20 intel_setup_io(struct pci_access *a UNUSED)
22 if (ioperm_enabled || iopl_enabled)
26 * Before Linux 2.6.8, only the first 0x3ff I/O ports permissions can be
27 * modified via ioperm(). Since 2.6.8 all ports are supported.
28 * Since Linux 5.5, EFLAGS-based iopl() implementation was removed and
29 * replaced by new TSS-IOPB-map-all-based emulator. Before Linux 5.5,
30 * EFLAGS-based iopl() allowed userspace to enable/disable interrupts,
31 * which is dangerous. So prefer usage of ioperm() and fallback to iopl().
33 if (ioperm(0xcf8, 8, 1) < 0) /* conf1 + conf2 ports */
35 if (errno == EINVAL) /* ioperm() unsupported */
44 if (ioperm(0xc000, 0xfff, 1) < 0) /* remaining conf2 ports */
55 intel_cleanup_io(struct pci_access *a UNUSED)
60 ioperm(0xc000, 0xfff, 0);
71 static inline void intel_io_lock(void)
75 static inline void intel_io_unlock(void)