forked from unwireddevices/gpio-irq-handler
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgpio-irq-test.cpp
130 lines (102 loc) · 2.61 KB
/
gpio-irq-test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
//============================================================================
// Name : gpio-irq-test.cpp
// Author : Black Swift team
// Version :
// Copyright : (c) Black Swift team <[email protected]>
// Description : Test application for the gpio-irq-handler module
//============================================================================
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
//#define SIG_GPIO_IRQ (SIGRTMIN+10) // SIGRTMIN is different in Kernel and User modes
#define SIG_GPIO_IRQ 42 // So we have to hardcode this value
////////////////////////////////////////////////////////////////////////////////
void irq_handler(int n, siginfo_t *info, void *unused)
{
printf("Received value 0x%X\n", info->si_int);
}
////////////////////////////////////////////////////////////////////////////////
bool init_handler(int gpio)
{
int fd;
char buf[100];
struct sigaction sig;
sig.sa_sigaction=irq_handler;
sig.sa_flags = SA_SIGINFO | SA_NODEFER;
sigaction(SIG_GPIO_IRQ, &sig, NULL);
fd=open("/sys/kernel/debug/gpio-irq", O_WRONLY);
if(fd < 0)
{
perror("open");
return false;
}
sprintf(buf, "+ %d %i", gpio, getpid());
if(write(fd, buf, strlen(buf) + 1) < 0)
{
perror("write");
close(fd);
return false;
}
close(fd);
return true;
}
////////////////////////////////////////////////////////////////////////////////
bool remove_handler(int gpio)
{
int fd;
char buf[100];
fd=open("/sys/kernel/debug/gpio-irq", O_WRONLY);
if(fd < 0)
{
perror("open");
return false;
}
sprintf(buf, "- %d %i", gpio, getpid());
if(write(fd, buf, strlen(buf) + 1) < 0)
{
perror("write");
close(fd);
return false;
}
close(fd);
return true;
}
////////////////////////////////////////////////////////////////////////////////
int main(int argc, char* argv[])
{
if(argc > 1)
{
int gpio=atoi(argv[1]);
if(!init_handler(gpio))
{
printf("Can't handle GPIO %d!\n",gpio);
return -1;
}
sigset_t sigset;
siginfo_t siginfo;
sigemptyset(&sigset);
sigaddset(&sigset, SIGINT); // Ctrl+C
// sigaddset(&sigset, SIGQUIT);
// sigaddset(&sigset, SIGSTOP);
// sigaddset(&sigset, SIGTERM);
sigprocmask(SIG_BLOCK, &sigset, NULL);
printf("Waiting GPIO %d signals...\n",gpio);
while(1)
{
sigwaitinfo(&sigset, &siginfo);
if(siginfo.si_signo == SIGINT)
{
remove_handler(gpio);
return 0;
}
}
}
printf("Need GPIO number to handle.\n");
return -1;
}
////////////////////////////////////////////////////////////////////////////////