forked from OpenSprinkler/OpenSprinkler-Firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpio.cpp
589 lines (488 loc) · 13.5 KB
/
gpio.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
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
/* OpenSprinkler Unified (AVR/RPI/BBB/LINUX) Firmware
* Copyright (C) 2014 by Ray Wang ([email protected])
*
* GPIO functions
* Feb 2015 @ OpenSprinkler.com
*
* This file is part of the OpenSprinkler library
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include "gpio.h"
#if defined(ARDUINO)
#if defined(ESP8266)
#include <Wire.h>
#include "defines.h"
byte IOEXP::detectType(uint8_t address) {
Wire.beginTransmission(address);
if(Wire.endTransmission()!=0) return IOEXP_TYPE_NONEXIST; // this I2C address does not exist
Wire.beginTransmission(address);
Wire.write(NXP_INVERT_REG); // ask for polarity register
Wire.endTransmission();
if(Wire.requestFrom(address, (uint8_t)2) != 2) return IOEXP_TYPE_UNKNOWN;
uint8_t low = Wire.read();
uint8_t high = Wire.read();
if(low==0x00 && high==0x00) {
return IOEXP_TYPE_9555; // PCA9555 has polarity register which inits to 0
}
return IOEXP_TYPE_8575;
}
void PCA9555::pinMode(uint8_t pin, uint8_t IOMode) {
uint16_t config = i2c_read(NXP_CONFIG_REG);
if(IOMode == OUTPUT) {
config &= ~(1 << pin); // config bit set to 0 for output pin
} else {
config |= (1 << pin); // config bit set to 1 for input pin
}
i2c_write(NXP_CONFIG_REG, config);
}
uint16_t PCA9555::i2c_read(uint8_t reg) {
if(address==255) return 0xFFFF;
Wire.beginTransmission(address);
Wire.write(reg);
Wire.endTransmission();
if(Wire.requestFrom(address, (uint8_t)2) != 2) {return 0xFFFF; DEBUG_PRINTLN("GPIO error");}
uint16_t data0 = Wire.read();
uint16_t data1 = Wire.read();
return data0+(data1<<8);
}
void PCA9555::i2c_write(uint8_t reg, uint16_t v){
if(address==255) return;
Wire.beginTransmission(address);
Wire.write(reg);
Wire.write(v&0xff);
Wire.write(v>>8);
Wire.endTransmission();
}
void PCA9555::shift_out(uint8_t plat, uint8_t pclk, uint8_t pdat, uint8_t v) {
if(plat<IOEXP_PIN || pclk<IOEXP_PIN || pdat<IOEXP_PIN)
return; // the definition of each pin must be offset by IOEXP_PIN to begin with
plat-=IOEXP_PIN;
pclk-=IOEXP_PIN;
pdat-=IOEXP_PIN;
uint16_t output = i2c_read(NXP_OUTPUT_REG); // keep a copy of the current output registers
output &= ~(1<<plat); i2c_write(NXP_OUTPUT_REG, output); // set latch low
for(uint8_t s=0;s<8;s++) {
output &= ~(1<<pclk); i2c_write(NXP_OUTPUT_REG, output); // set clock low
if(v & ((byte)1<<(7-s))) {
output |= (1<<pdat);
} else {
output &= ~(1<<pdat);
}
i2c_write(NXP_OUTPUT_REG, output); // set data pin according to bits in v
output |= (1<<pclk); i2c_write(NXP_OUTPUT_REG, output); // set clock high
}
output |= (1<<plat); i2c_write(NXP_OUTPUT_REG, output); // set latch high
}
uint16_t PCF8575::i2c_read(uint8_t reg) {
if(address==255) return 0xFFFF;
Wire.beginTransmission(address);
if(Wire.requestFrom(address, (uint8_t)2) != 2) return 0xFFFF;
uint16_t data0 = Wire.read();
uint16_t data1 = Wire.read();
Wire.endTransmission();
return data0+(data1<<8);
}
void PCF8575::i2c_write(uint8_t reg, uint16_t v) {
if(address==255) return;
Wire.beginTransmission(address);
// todo: handle inputmask (not necessary unless if using any pin as input)
Wire.write(v&0xff);
Wire.write(v>>8);
Wire.endTransmission();
}
uint16_t PCF8574::i2c_read(uint8_t reg) {
if(address==255) return 0xFFFF;
Wire.beginTransmission(address);
if(Wire.requestFrom(address, (uint8_t)1) != 1) return 0xFFFF;
uint16_t data = Wire.read();
Wire.endTransmission();
return data;
}
void PCF8574::i2c_write(uint8_t reg, uint16_t v) {
if(address==255) return;
Wire.beginTransmission(address);
Wire.write((uint8_t)(v&0xFF) | inputmask);
Wire.endTransmission();
}
#include "OpenSprinkler.h"
extern OpenSprinkler os;
void pinModeExt(byte pin, byte mode) {
if(pin==255) return;
if(pin>=IOEXP_PIN) {
os.mainio->pinMode(pin-IOEXP_PIN, mode);
} else {
pinMode(pin, mode);
}
}
void digitalWriteExt(byte pin, byte value) {
if(pin==255) return;
if(pin>=IOEXP_PIN) {
os.mainio->digitalWrite(pin-IOEXP_PIN, value);
} else {
digitalWrite(pin, value);
}
}
byte digitalReadExt(byte pin) {
if(pin==255) return HIGH;
if(pin>=IOEXP_PIN) {
return os.mainio->digitalRead(pin-IOEXP_PIN);
// a pin on IO expander
//return pcf_read(MAIN_I2CADDR)&(1<<(pin-IOEXP_PIN));
} else {
return digitalRead(pin);
}
}
#endif
#elif defined(OSPI) || defined(OSBO)
#if !defined(LIBGPIOD) // use classic sysfs
#include <sys/types.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <poll.h>
#include <pthread.h>
#define BUFFER_MAX 64
#define GPIO_MAX 64
// GPIO file descriptors
static int sysFds[GPIO_MAX] = {
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
} ;
// Interrupt service routine functions
static void (*isrFunctions [GPIO_MAX])(void);
static volatile int pinPass = -1 ;
static pthread_mutex_t pinMutex ;
/** Export gpio pin */
static byte GPIOExport(int pin) {
char buffer[BUFFER_MAX];
int fd, len;
fd = open("/sys/class/gpio/export", O_WRONLY);
if (fd < 0) {
DEBUG_PRINTLN("failed to open export for writing");
return 0;
}
len = snprintf(buffer, sizeof(buffer), "%d", pin);
write(fd, buffer, len);
close(fd);
return 1;
}
#if 0
/** Unexport gpio pin */
static byte GPIOUnexport(int pin) {
char buffer[BUFFER_MAX];
int fd, len;
fd = open("/sys/class/gpio/unexport", O_WRONLY);
if (fd < 0) {
DEBUG_PRINTLN("failed to open unexport for writing");
return 0;
}
len = snprintf(buffer, sizeof(buffer), "%d", pin);
write(fd, buffer, len);
close(fd);
return 1;
}
#endif
/** Set interrupt edge mode */
static byte GPIOSetEdge(int pin, const char *edge) {
char path[BUFFER_MAX];
int fd;
snprintf(path, BUFFER_MAX, "/sys/class/gpio/gpio%d/edge", pin);
fd = open(path, O_WRONLY);
if (fd < 0) {
DEBUG_PRINTLN("failed to open gpio edge for writing");
return 0;
}
write(fd, edge, strlen(edge)+1);
close(fd);
return 1;
}
/** Set pin mode, in or out */
void pinMode(int pin, byte mode) {
static const char dir_str[] = "in\0out";
char path[BUFFER_MAX];
int fd;
snprintf(path, BUFFER_MAX, "/sys/class/gpio/gpio%d/direction", pin);
struct stat st;
if(stat(path, &st)) {
if (!GPIOExport(pin)) return;
}
fd = open(path, O_WRONLY);
if (fd < 0) {
DEBUG_PRINTLN("failed to open gpio direction for writing");
return;
}
if (-1 == write(fd, &dir_str[(INPUT==mode)||(INPUT_PULLUP==mode)?0:3], (INPUT==mode)||(INPUT_PULLUP==mode)?2:3)) {
DEBUG_PRINTLN("failed to set direction");
return;
}
close(fd);
#if defined(OSPI)
if(mode==INPUT_PULLUP) {
char cmd[BUFFER_MAX];
//snprintf(cmd, BUFFER_MAX, "gpio -g mode %d up", pin);
snprintf(cmd, BUFFER_MAX, "raspi-gpio set %d pu", pin);
system(cmd);
}
#endif
return;
}
/** Open file for digital pin */
int gpio_fd_open(int pin, int mode) {
char path[BUFFER_MAX];
int fd;
snprintf(path, BUFFER_MAX, "/sys/class/gpio/gpio%d/value", pin);
fd = open(path, mode);
if (fd < 0) {
DEBUG_PRINTLN("failed to open gpio");
return -1;
}
return fd;
}
/** Close file */
void gpio_fd_close(int fd) {
close(fd);
}
/** Read digital value */
byte digitalRead(int pin) {
char value_str[3];
int fd = gpio_fd_open(pin, O_RDONLY);
if (fd < 0) {
return 0;
}
if (read(fd, value_str, 3) < 0) {
DEBUG_PRINTLN("failed to read value");
return 0;
}
close(fd);
return atoi(value_str);
}
/** Write digital value given file descriptor */
void gpio_write(int fd, byte value) {
static const char value_str[] = "01";
if (1 != write(fd, &value_str[LOW==value?0:1], 1)) {
DEBUG_PRINT("failed to write value on pin ");
}
}
/** Write digital value */
void digitalWrite(int pin, byte value) {
int fd = gpio_fd_open(pin);
if (fd < 0) {
return;
}
gpio_write(fd, value);
close(fd);
}
static int HiPri (const int pri) {
struct sched_param sched ;
memset (&sched, 0, sizeof(sched)) ;
if (pri > sched_get_priority_max (SCHED_RR))
sched.sched_priority = sched_get_priority_max (SCHED_RR) ;
else
sched.sched_priority = pri ;
return sched_setscheduler (0, SCHED_RR, &sched) ;
}
static int waitForInterrupt (int pin, int mS)
{
int fd, x ;
uint8_t c ;
struct pollfd polls ;
if((fd=sysFds[pin]) < 0)
return -2;
polls.fd = fd ;
polls.events = POLLPRI ; // Urgent data!
x = poll (&polls, 1, mS) ;
// Do a dummy read to clear the interrupt
// A one character read appars to be enough.
// Followed by a seek to reset it.
(void)read (fd, &c, 1);
lseek (fd, 0, SEEK_SET);
return x ;
}
static void *interruptHandler (void *arg) {
int myPin ;
(void) HiPri (55) ; // Only effective if we run as root
myPin = pinPass ;
pinPass = -1 ;
for (;;)
if (waitForInterrupt (myPin, -1) > 0)
isrFunctions[myPin]() ;
return NULL ;
}
#include "utils.h"
/** Attach an interrupt function to pin */
void attachInterrupt(int pin, const char* mode, void (*isr)(void)) {
if((pin<0)||(pin>GPIO_MAX)) {
DEBUG_PRINTLN("pin out of range");
return;
}
// set pin to INPUT mode and set interrupt edge mode
pinMode(pin, INPUT);
GPIOSetEdge(pin, mode);
char path[BUFFER_MAX];
snprintf(path, BUFFER_MAX, "/sys/class/gpio/gpio%d/value", pin);
// open gpio file
if(sysFds[pin]==-1) {
if((sysFds[pin]=open(path, O_RDWR))<0) {
DEBUG_PRINTLN("failed to open gpio value for reading");
return;
}
}
int count, i;
char c;
// clear any pending interrupts
ioctl (sysFds[pin], FIONREAD, &count) ;
for (i=0; i<count; i++)
read (sysFds[pin], &c, 1) ;
// record isr function
isrFunctions[pin] = isr;
pthread_t threadId ;
pthread_mutex_lock (&pinMutex) ;
pinPass = pin ;
pthread_create (&threadId, NULL, interruptHandler, NULL) ;
while (pinPass != -1)
delay(1) ;
pthread_mutex_unlock (&pinMutex) ;
}
#else // use GPIOD
/**
* NEW GPIO Implementation for Raspberry Pi OS 12 (bookworm)
*
* Thanks to Jason Balonso
* https://github.com/jbalonso/
*
*
*/
#include <sys/types.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <poll.h>
#include <pthread.h>
#include <gpiod.h>
#include "utils.h"
#define BUFFER_MAX 64
#define GPIO_MAX 64
// GPIO interfaces
const char *gpio_chipname = "gpiochip0";
const char *gpio_consumer = "opensprinkler";
struct gpiod_chip *chip = NULL;
struct gpiod_line* gpio_lines[] = {
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL,
};
int assert_gpiod_chip() {
if( !chip ) {
chip = gpiod_chip_open_by_name(gpio_chipname);
if( !chip ) {
DEBUG_PRINTLN("failed to open gpio chip");
return -1;
} else {
DEBUG_PRINTLN("gpio chip opened");
return 0;
}
}
return 0;
}
int assert_gpiod_line(int pin) {
if( !gpio_lines[pin] ) {
if( assert_gpiod_chip() ) { return -1; }
gpio_lines[pin] = gpiod_chip_get_line(chip, pin);
if( !gpio_lines[pin] ) {
DEBUG_PRINT("failed to open gpio line ");
DEBUG_PRINTLN(pin);
return -1;
} else {
DEBUG_PRINT("opened gpio line ");
DEBUG_PRINT(pin);
return 0;
}
}
return 0;
}
/** Set pin mode, in or out */
void pinMode(int pin, byte mode) {
if( assert_gpiod_line(pin) ) { return; }
switch(mode) {
case INPUT:
gpiod_line_request_input(gpio_lines[pin], gpio_consumer);
break;
case INPUT_PULLUP:
gpiod_line_request_input_flags(gpio_lines[pin], gpio_consumer, GPIOD_LINE_REQUEST_FLAG_BIAS_PULL_UP);
break;
case OUTPUT:
gpiod_line_request_output(gpio_lines[pin], gpio_consumer, LOW);
break;
default:
DEBUG_PRINTLN("invalid pin direction");
break;
}
return;
}
/** Read digital value */
byte digitalRead(int pin) {
if( !gpio_lines[pin] ) {
DEBUG_PRINT("tried to read uninitialized pin ");
DEBUG_PRINTLN(pin);
return 0;
}
int val = gpiod_line_get_value(gpio_lines[pin]);
if( val < 0 ) {
DEBUG_PRINT("failed to read value on pin ");
DEBUG_PRINTLN(pin);
return 0;
}
return val;
}
/** Write digital value */
void digitalWrite(int pin, byte value) {
if( !gpio_lines[pin] ) {
DEBUG_PRINT("tried to write uninitialized pin ");
DEBUG_PRINTLN(pin);
return;
}
int res;
res = gpiod_line_set_value(gpio_lines[pin], value);
if( res ) {
DEBUG_PRINT("failed to write value on pin ");
DEBUG_PRINTLN(pin);
}
}
void attachInterrupt(int pin, const char* mode, void (*isr)(void)) {}
void gpio_write(int fd, byte value) {}
int gpio_fd_open(int pin, int mode) {return 0;}
void gpio_fd_close(int fd) {}
#endif
#else
void pinMode(int pin, byte mode) {}
void digitalWrite(int pin, byte value) {}
byte digitalRead(int pin) {return 0;}
void attachInterrupt(int pin, const char* mode, void (*isr)(void)) {}
int gpio_fd_open(int pin, int mode) {return 0;}
void gpio_fd_close(int fd) {}
void gpio_write(int fd, byte value) {}
#endif