summaryrefslogtreecommitdiff
path: root/util/dell-flash-unlock/accessors.c
diff options
context:
space:
mode:
authorLeah Rowe <vimuser@noreply.codeberg.org>2024-04-26 22:57:47 +0000
committerLeah Rowe <vimuser@noreply.codeberg.org>2024-04-26 22:57:47 +0000
commite5cc3e557aa007d8a64caa8eee312b41b931c39f (patch)
treeda5695b6d4471dc6ee17cf29449d2588da6bcedd /util/dell-flash-unlock/accessors.c
parentc0b4ba2eeadc5bdc6c7b10251561ecf1a9c72a7b (diff)
parente119ffa54d32bba49ab16db565680a0e386cdeb6 (diff)
Merge pull request 'dell-flash-unlock: add NetBSD support' (#194) from linear/lbmk:master into master
Reviewed-on: https://codeberg.org/libreboot/lbmk/pulls/194
Diffstat (limited to 'util/dell-flash-unlock/accessors.c')
-rw-r--r--util/dell-flash-unlock/accessors.c32
1 files changed, 29 insertions, 3 deletions
diff --git a/util/dell-flash-unlock/accessors.c b/util/dell-flash-unlock/accessors.c
index 6fca2817..a35f8139 100644
--- a/util/dell-flash-unlock/accessors.c
+++ b/util/dell-flash-unlock/accessors.c
@@ -5,15 +5,15 @@
#include <sys/io.h>
#endif
-#if defined(__OpenBSD__)
-#include <machine/sysarch.h>
+#if defined(__OpenBSD__) || defined(__NetBSD__)
#include <sys/types.h>
+#include <machine/sysarch.h>
#if defined(__amd64__)
#include <amd64/pio.h>
#elif defined(__i386__)
#include <i386/pio.h>
#endif /* __i386__ */
-#endif /* __OpenBSD__ */
+#endif /* __OpenBSD__ || __NetBSD__ */
#include <errno.h>
@@ -42,6 +42,9 @@ sys_outb(unsigned int port, uint8_t data)
#if defined(__OpenBSD__)
outb(port, data);
#endif
+ #if defined(__NetBSD__)
+ __asm__ volatile ( "outb %b0, %w1" : : "a"(data), "d"(port) : "memory");
+ #endif
}
void
@@ -53,6 +56,9 @@ sys_outl(unsigned int port, uint32_t data)
#if defined(__OpenBSD__)
outl(port, data);
#endif
+ #if defined(__NetBSD__)
+ __asm__ volatile ( "outl %0, %w1" : : "a"(data), "d"(port) : "memory");
+ #endif
}
uint8_t
@@ -61,6 +67,12 @@ sys_inb(unsigned int port)
#if defined(__linux__) || defined (__OpenBSD__)
return inb(port);
#endif
+
+ #if defined(__NetBSD__)
+ uint8_t retval;
+ __asm__ volatile("inb %w1, %b0" : "=a" (retval) : "d" (port) : "memory");
+ return retval;
+ #endif
return 0;
}
@@ -70,6 +82,11 @@ sys_inl(unsigned int port)
#if defined(__linux__) || defined (__OpenBSD__)
return inl(port);
#endif
+ #if defined(__NetBSD__)
+ int retval;
+ __asm__ volatile("inl %w1, %0" : "=a" (retval) : "d" (port) : "memory");
+ return retval;
+ #endif
return 0;
}
@@ -86,6 +103,15 @@ sys_iopl(int level)
return amd64_iopl(level);
#endif /* __amd64__ */
#endif /* __OpenBSD__ */
+
+#if defined(__NetBSD__)
+#if defined(__i386__)
+ return i386_iopl(level);
+#elif defined(__amd64__)
+ return x86_64_iopl(level);
+#endif /* __amd64__ */
+#endif /* __NetBSD__ */
+
errno = ENOSYS;
return -1;
}