blob: 8a9b4a4acadea8041795ac225840002223fb9436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/*
* The PCI Library -- Access to i386 I/O ports on OpenBSD
*
* Copyright (c) 2023 Grant Pannell <grant@pannell.net.au>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#include <sys/types.h>
#include <machine/sysarch.h>
#include <machine/pio.h>
#include "i386-io-access.h"
#if defined(__amd64__)
#define obsd_iopl amd64_iopl
#else
#define obsd_iopl i386_iopl
#endif
static int iopl_enabled;
static int
intel_setup_io(struct pci_access *a UNUSED)
{
if (iopl_enabled)
return 1;
if (obsd_iopl(3) < 0)
{
return 0;
}
iopl_enabled = 1;
return 1;
}
static inline void
intel_cleanup_io(struct pci_access *a UNUSED)
{
if (iopl_enabled)
{
obsd_iopl(0);
iopl_enabled = 0;
}
}
static inline void intel_io_lock(void)
{
}
static inline void intel_io_unlock(void)
{
}
|