i.mx6 GPIO -> userspace IRQ

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I need to have a GPIO pin (in this case GPIO7 on an i.mx6 Solo) generate an interrupt that can be picked up by a process running in user space. My kernel is 3.10.17.
Is there some tutorial how to do this somewhere?
My questions are:
1. What do I need to set up in the device tree file to make this pin generate an interrupt?
2. I've heard about picking up interrupts from user space by opening a new /proc file (/proc/irq/nn/irq) where nn is the interrupt number.
Reading from this file will then block until the next interrupt occurs.
select() and poll() are also supposed to work with this file.
Will this be possible with the 3.10.17 kernel, and if yes, how do I find out the linux-side interrupt number of the interrupt generated by GPIO7?
Thanks,
Thomas


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
also one can look at:
Application Note AN5125, Introduction to Device Trees (Rev.0, 9/2015)
http://cache.freescale.com/files/32bit/doc/app_note/AN5125.pdf
A Tutorial on the Device Tree (Zynq) -- Part IV | xillybus.com
Definitive GPIO guide - Studio Kousagi Wiki
~igor

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Thomas,
The easiest solution is to use the sysfs GPIO entries to setup your GPIO and poll the value. The kernel documentation explains it pretty well:
https://www.kernel.org/doc/Documentation/gpio/sysfs.txt
Then you can find examples online:
Gpio-int-test.c - RidgeRun Developer Connection
Regards,
Gary
