diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:24:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:24:33 +0000 |
commit | 7a19c99f661602b67db95fd1d8aca5fe3a387441 (patch) | |
tree | 215ff04ec522779fa83acf394d296c2356c6b382 /lib/i386-io-sunos.h | |
parent | Initial commit. (diff) | |
download | pciutils-80b48659d5b3bdd36c7b3c9d0c0331ff0d08e44f.tar.xz pciutils-80b48659d5b3bdd36c7b3c9d0c0331ff0d08e44f.zip |
Adding upstream version 1:3.9.0.upstream/1%3.9.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/i386-io-sunos.h')
-rw-r--r-- | lib/i386-io-sunos.h | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/lib/i386-io-sunos.h b/lib/i386-io-sunos.h new file mode 100644 index 0000000..903ad7c --- /dev/null +++ b/lib/i386-io-sunos.h @@ -0,0 +1,73 @@ +/* + * The PCI Library -- Access to i386 I/O ports on Solaris + * + * Copyright (c) 2003 Bill Moore <billm@eng.sun.com> + * Copyright (c) 2003--2006 Martin Mares <mj@ucw.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +#include <sys/sysi86.h> +#include <sys/psw.h> + +static int +intel_setup_io(struct pci_access *a UNUSED) +{ + return (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) < 0) ? 0 : 1; +} + +static inline void +intel_cleanup_io(struct pci_access *a UNUSED) +{ + /* FIXME: How to switch off I/O port access? */ +} + +static inline u8 +inb (u16 port) +{ + u8 v; + __asm__ __volatile__ ("inb (%w1)":"=a" (v):"Nd" (port)); + return v; +} + +static inline u16 +inw (u16 port) +{ + u16 v; + __asm__ __volatile__ ("inw (%w1)":"=a" (v):"Nd" (port)); + return v; +} + +static inline u32 +inl (u16 port) +{ + u32 v; + __asm__ __volatile__ ("inl (%w1)":"=a" (v):"Nd" (port)); + return v; +} + +static inline void +outb (u8 value, u16 port) +{ + __asm__ __volatile__ ("outb (%w1)": :"a" (value), "Nd" (port)); +} + +static inline void +outw (u16 value, u16 port) +{ + __asm__ __volatile__ ("outw (%w1)": :"a" (value), "Nd" (port)); +} + +static inline void +outl (u32 value, u16 port) +{ + __asm__ __volatile__ ("outl (%w1)": :"a" (value), "Nd" (port)); +} + +static inline void intel_io_lock(void) +{ +} + +static inline void intel_io_unlock(void) +{ +} |