Dear champs, One of my customer has follwoing query- I am starting to play with the GPIO on the evms. There is a couple of GPIO I2C expander but on our final product, we will directly use GPIO from the 81XX. It looks like JP1 are user GPIO on the DVR extension board but I do not succeed to read their value from user space using this method.: 1. Is it possible to control OMAP GPIOs from userspace? Yes, by using some nodes exported to sysfs. For example: To toggle GPIO155, do the following: Mux the pad to gpio mode. To bring out the gpio to userspace: echo 155 > /sys/class/gpio/export To set as an output: echo out > /sys/class/gpio/gpio155/direction To set high: echo 1 > /sys/class/gpio/gpio155/value To set low: echo 0 > /sys/class/gpio/gpio155/value Similarly cat these nodes to read the value of input gpios. Is it possible to control the GPIO from user space? Which one could I use for testing?