Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / u-boot / include / pca9698.h
diff --git a/qemu/roms/u-boot/include/pca9698.h b/qemu/roms/u-boot/include/pca9698.h
new file mode 100644 (file)
index 0000000..9732be6
--- /dev/null
@@ -0,0 +1,18 @@
+/*
+ * (C) Copyright 2011
+ * Dirk Eibach,  Guntermann & Drunck GmbH, eibach@gdsys.de
+ *
+ * SPDX-License-Identifier:    GPL-2.0+
+ */
+
+#ifndef __PCA9698_H_
+#define __PCA9698_H_
+
+int pca9698_request(unsigned gpio, const char *label);
+void pca9698_free(unsigned gpio);
+int pca9698_direction_input(u8 addr, unsigned gpio);
+int pca9698_direction_output(u8 addr, unsigned gpio, int value);
+int pca9698_get_value(u8 addr, unsigned gpio);
+int pca9698_set_value(u8 addr, unsigned gpio, int value);
+
+#endif /* __PCA9698_H_ */