diff options
Diffstat (limited to 'qemu/roms/u-boot/include/pca9698.h')
-rw-r--r-- | qemu/roms/u-boot/include/pca9698.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/qemu/roms/u-boot/include/pca9698.h b/qemu/roms/u-boot/include/pca9698.h new file mode 100644 index 000000000..9732be661 --- /dev/null +++ b/qemu/roms/u-boot/include/pca9698.h @@ -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_ */ |