SAMA5D4 Xplained Ultra Board BSP
guowenxue
2019-08-27 69d0972fa8b82065a67566b74ecae8585d9c68c1
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*********************************************************************************
 *      Copyright:  (C) 2019 LingYun IoT System Studio
 *                  All rights reserved.
 *
 *       Filename:  at91_sysGpio.c
 *    Description:  This file si GPIO API operatore on /sys/class/gpio/xxx
 *                 
 *        Version:  1.0.0(2019年08月26日)
 *         Author:  Guo Wenxue <guowenxue@gmail.com>
 *      ChangeLog:  1, Release initial version on "2019年08月26日 22时28分19秒"
 *                 
 ********************************************************************************/
 
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
 
#include "at91_sysGpio.h"
 
 
/*  export $port in /sys/class/gpio/export */
int gpio_export(const char *port)
{
    char          fpath[SYSFILE_LEN];
    FILE          *fp;
    int           pin;
 
    if(!port)
    {
        gpio_print("invalid input arguments\n");
        return -1;
    }
 
    snprintf(fpath, SYSFILE_LEN, "%s/%s", SYSGPIO_PATH, port);
 
    /* GPIO port already export */
    if( !access(fpath, F_OK) )
    {
        gpio_print("%s already export\n", port);
        return 0;
    }
    
    if( !(fp=fopen(SYSGPIO_EXPORT_PATH, "w")) )
    {
        gpio_print("open '%s' failure: %s\n", SYSGPIO_EXPORT_PATH, strerror(errno));
        return -2;
    }
 
    pin = at91_port2pin(port);
    fprintf(fp, "%d", pin);
 
    fclose(fp);
 
    return 0;
}
 
 
/*  unexport $port in /sys/class/gpio/unexport */
int gpio_unexport(const char *port)
{
    char          fpath[SYSFILE_LEN];
    FILE          *fp;
    int           pin;
 
    if(!port)
    {
        gpio_print("invalid input arguments\n");
        return -1;
    }
 
    snprintf(fpath, SYSFILE_LEN, "%s/%s", SYSGPIO_PATH, port);
 
    /* GPIO port not export */
    if( access(fpath, F_OK) )
    {
        gpio_print("%s not export\n", port);
        return 0;
    }
    
    if( !(fp=fopen(SYSGPIO_UNEXPORT_PATH, "w")) )
    {
        gpio_print("open '%s' failure: %s\n", SYSGPIO_EXPORT_PATH, strerror(errno));
        return -2;
    }
 
    pin = at91_port2pin(port);
    fprintf(fp, "%d", pin);
 
    fclose(fp);
 
    return 0;
}
 
 
/*  configure $port direction as $mode */
int gpio_config(const char *port, const char *mode)
{
    char          fpath[SYSFILE_LEN];
    FILE          *fp;
    int           size;
 
    if(!port)
    {
        gpio_print("invalid input arguments\n");
        return 0;
    }
 
    snprintf(fpath, SYSFILE_LEN, "%s/%s", SYSGPIO_PATH, port);
 
    if( access(fpath, F_OK) ) /* GPIO port not export */
    {
        if( gpio_export(port) < 0 )
            return -1;
    }
    
    size = SYSFILE_LEN-strlen(fpath);
    strncat(fpath, "/direction", size);
    if( !(fp=fopen(fpath, "w")) )
    {
        gpio_print("open '%s' failure: %s\n", fpath, strerror(errno));
        return -1;
    }
 
    fputs(mode, fp);
 
    fclose(fp);
 
    return 0;
}
 
 
 
/*  write $value into GPIO $port */
int gpio_write(const char *port, const char *value)
{
    char          fpath[SYSFILE_LEN];
    FILE          *fp;
    int           size;
 
    if(!port)
    {
        gpio_print("invalid input arguments\n");
        return 0;
    }
 
    snprintf(fpath, SYSFILE_LEN, "%s/%s", SYSGPIO_PATH, port);
 
    if( access(fpath, F_OK) ) /* GPIO port not export */
    {
        if( gpio_export(port) < 0 )
            return -1;
    }
    
    size = SYSFILE_LEN-strlen(fpath);
    strncat(fpath, "/value", size);
    if( !(fp=fopen(fpath, "w")) )
    {
        gpio_print("open '%s' failure: %s\n", fpath, strerror(errno));
        return -1;
    }
 
    fputs(value, fp);
 
    fclose(fp);
 
    return 0;
}
 
 
/*  read gpio value from $port  */
int gpio_read(const char *port)
{
    char          fpath[SYSFILE_LEN];
    FILE          *fp;
    int           size;
    char          v_str[32];
 
    if(!port)
    {
        gpio_print("invalid input arguments\n");
        return 0;
    }
 
    snprintf(fpath, SYSFILE_LEN, "%s/%s", SYSGPIO_PATH, port);
 
    if( access(fpath, F_OK) ) /* GPIO port not export */
    {
        return -1;
    }
    
    size = SYSFILE_LEN-strlen(fpath);
    strncat(fpath, "/value", size);
    if( !(fp=fopen(fpath, "r")) )
    {
        gpio_print("open '%s' failure: %s\n", fpath, strerror(errno));
        return -1;
    }
 
    memset(v_str, 0, sizeof(v_str));
    fgets(v_str, sizeof(v_str), fp);
 
    fclose(fp);
 
    return atoi(v_str);
}