summaryrefslogtreecommitdiffstats
path: root/util/ectool/ec.c
diff options
context:
space:
mode:
authorAndrey Korolyov <andrey@xdel.ru>2016-01-05 14:27:59 +0300
committerPatrick Georgi <pgeorgi@google.com>2016-01-27 17:15:56 +0100
commit393d9322ba51feeea33cd08f77945f593cb70e32 (patch)
treedde365c28462b404b923ec5067f6d97e139747bb /util/ectool/ec.c
parentffc2260d749a1774a79805ec51bcb67021c07c28 (diff)
downloadcoreboot-393d9322ba51feeea33cd08f77945f593cb70e32.tar.gz
coreboot-393d9322ba51feeea33cd08f77945f593cb70e32.tar.bz2
coreboot-393d9322ba51feeea33cd08f77945f593cb70e32.zip
ectool: fix NetBSD compilation
Since NetBSD does not support uname -o, push check for CygWin inside separate non-failing condition in Makefile. Change-Id: Ibd264384f49b33412f0ef8554bd9c9fb8f60a892 Signed-off-by: Andrey Korolyov <andrey@xdel.ru> Reviewed-on: https://review.coreboot.org/12831 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/ectool/ec.c')
-rw-r--r--util/ectool/ec.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/util/ectool/ec.c b/util/ectool/ec.c
index 406cc41ae789..098e8126d916 100644
--- a/util/ectool/ec.c
+++ b/util/ectool/ec.c
@@ -17,9 +17,25 @@
#include <stdint.h>
#include <stdlib.h>
#include <unistd.h>
+#ifndef __NetBSD__
#include <sys/io.h>
+#endif
#include "ec.h"
+#ifdef __NetBSD__
+#include <machine/sysarch.h>
+static uint8_t inb(unsigned port)
+{
+ uint8_t data;
+ __asm volatile("inb %w1,%0" : "=a" (data) : "d" (port));
+ return data;
+}
+static __inline void outb(uint8_t data, unsigned port)
+{
+ __asm volatile("outb %0,%w1" : : "a" (data), "d" (port));
+}
+#endif
+
extern int verbose;
#define debug(x...) if (verbose) printf(x)