forked from zynthian/zyncoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zynmcp23008.c
275 lines (241 loc) · 8.25 KB
/
zynmcp23008.c
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
/*
* ******************************************************************
* ZYNTHIAN PROJECT: Zyncoder Library
*
* Library for interfacing MCP23008 using polling (only zynswitches!).
*
* Copyright (C) 2015-2022 Fernando Moyano <[email protected]>
*
* ******************************************************************
*
* 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 2 of
* the License, or 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.
*
* For a full copy of the GNU General Public License see the LICENSE.txt file.
*
* ******************************************************************
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <math.h>
#include <time.h>
#include <unistd.h>
#include <pthread.h>
//#define DEBUG
#include "wiringPiI2C.h"
#include "zynmcp23008.h"
#include "zyncoder.h"
//-----------------------------------------------------------------------------
// Macros
//-----------------------------------------------------------------------------
#define bitRead(value, bit) (((value) >> (bit)) & 0x01)
#define bitSet(value, bit) ((value) |= (1UL << (bit)))
#define bitClear(value, bit) ((value) &= ~(1UL << (bit)))
#define bitWrite(value, bit, bitvalue) (bitvalue ? bitSet(value, bit) : bitClear(value, bit))
//-----------------------------------------------------------------------------
// Global variables
//-----------------------------------------------------------------------------
extern zynswitch_t zynswitches[MAX_NUM_ZYNSWITCHES];
zynmcp23008_t zynmcp23008s[MAX_NUM_MCP23008];
int end_poll_zynswitches_flag = 0;
//-----------------------------------------------------------------------------
// MCP23008 functions
//-----------------------------------------------------------------------------
void reset_zynmcp23008s() {
int i;
for (i=0;i<MAX_NUM_MCP23008;i++) {
zynmcp23008s[i].fd = 0;
zynmcp23008s[i].enabled = 0;
}
}
int setup_zynmcp23008(uint8_t i, uint16_t base_pin, uint8_t i2c_address) {
if (i >= MAX_NUM_MCP23008) {
fprintf(stderr, "ZynCore->setup_zynmcp23008(%d, ...): Invalid index!\n", i);
return 0;
}
// Setup IC using I2C bus
int fd = wiringPiI2CSetup(i2c_address);
if (fd < 0) {
fprintf(stderr, "ZynCore->setup_zynmcp23008(%d, ...): Can't open I2C device at %d!\n", i, i2c_address);
return 0;
}
// Initialize IC
wiringPiI2CWriteReg8(fd, MCP23x08_IOCON, IOCON_INIT);
uint8_t olat = wiringPiI2CReadReg8 (fd, MCP23x08_OLAT);
// setup all the pins as inputs and disable pullups
wiringPiI2CWriteReg8(fd, MCP23x08_IODIR, 0xff);
// enable pullups on the unused pins (high two bits)
wiringPiI2CWriteReg8(fd, MCP23x08_GPPU, 0xff);
// disable polarity inversion
//wiringPiI2CWriteReg8(fd, MCP23x08_IPOL, 0x0);
// disable the comparison to DEFVAL register
//wiringPiI2CWriteReg8(fd, MCP23x08_INTCON, 0x0);
// Setup data struct
zynmcp23008s[i].fd = fd;
zynmcp23008s[i].base_pin = base_pin;
zynmcp23008s[i].i2c_address = i2c_address;
zynmcp23008s[i].output_state = olat;
wiringPiI2CReadReg8(fd, MCP23x08_GPIO);
zynmcp23008s[i].enabled = 1;
//fprintf(stderr, "ZynCore->setup_zynmcp23008(%d, ...): I2C %x, base-pin %d\n", i, i2c_address, base_pin);
return 1;
}
int8_t zynmcp23008_get_last_index() {
uint8_t i;
uint8_t li = -1;
for (i=0; i<MAX_NUM_MCP23008; i++) {
if (zynmcp23008s[i].enabled != 0) li = i;
}
return li;
}
int8_t zynmcp23008_pin2index(uint16_t pin) {
int8_t i;
for (i=0;i<MAX_NUM_MCP23008;i++) {
if (zynmcp23008s[i].enabled) {
if (pin >= zynmcp23008s[i].base_pin && pin < (zynmcp23008s[i].base_pin+8)) return i;
}
}
return -1;
}
/*
* zynmcp23008_set_pin_mode:
* i : chip index
* pin : pin number
* mode : INPUT=1, OUTPUT=0
*/
void zynmcp23008_set_pin_mode (uint8_t i, uint16_t pin, uint8_t mode) {
uint8_t mask, data ;
data = wiringPiI2CReadReg8 (zynmcp23008s[i].fd, MCP23x08_IODIR) ;
mask = 1 << ((pin - zynmcp23008s[i].base_pin) & 0x7) ;
if (mode == 0) data &= (~mask) ;
else data |= mask ;
wiringPiI2CWriteReg8 (zynmcp23008s[i].fd, MCP23x08_IODIR, data) ;
}
/*
* zynmcp23008_set_pull_up_down:
* i : chip index
* pin : pin number
* mode : UP=1, DOWN=0
*/
void zynmcp23008_set_pull_up_down (uint8_t i, uint16_t pin, uint8_t mode) {
uint8_t mask, data ;
//int8_t i = pin2index_zynmcp23008(pin);
data = wiringPiI2CReadReg8 (zynmcp23008s[i].fd, MCP23x08_GPPU) ;
mask = 1 << ((pin - zynmcp23008s[i].base_pin) & 0x7) ;
if (mode == 0) data &= (~mask) ;
else data |= mask ;
wiringPiI2CWriteReg8 (zynmcp23008s[i].fd, MCP23x08_GPPU, data) ;
}
/*
* zynmcp23008_write_pin:
* i : chip index
* pin : pin number
* val : value to write (1/0)
*/
void zynmcp23008_write_pin (uint8_t i, uint16_t pin, uint8_t val) {
uint8_t mask, data ;
data = zynmcp23008s[i].output_state ;
mask = 1 << ((pin - zynmcp23008s[i].base_pin) & 0x7) ;
if (val == 0) data &= (~mask) ;
else data |= mask ;
wiringPiI2CWriteReg8 (zynmcp23008s[i].fd, MCP23x08_GPIO, data) ;
zynmcp23008s[i].output_state = data;
}
/*
* zynmcp23008_read_pin:
* i : chip index
* pin : pin number
* Returns read value (1/0)
*/
uint8_t zynmcp23008_read_pin (uint8_t i, uint16_t pin) {
uint8_t mask, data ;
mask = 1 << ((pin - zynmcp23008s[i].base_pin) & 0x7) ;
data = wiringPiI2CReadReg8 (zynmcp23008s[i].fd, MCP23x08_GPIO) ;
if ((data & mask) == 0) return 0 ;
else return 1 ;
}
/*
* zynmcp23008_read_pins:
* i : chip index
* Returns read values (as bits)
*/
uint8_t zynmcp23008_read_pins(uint8_t i) {
return wiringPiI2CReadReg8(zynmcp23008s[i].fd, MCP23x08_GPIO);
}
//-----------------------------------------------------------------------------
// MCP23008 Polling (only switches)
//-----------------------------------------------------------------------------
// Update polled (non-ISR) switches (expanded GPIO with MCP23008 without connecting INT line
// This is only used by legacy V1's 2in1 module!!
void update_polled_zynswitches(int8_t i) {
struct timespec ts;
unsigned long int tsus;
clock_gettime(CLOCK_MONOTONIC, &ts);
tsus=ts.tv_sec*1000000 + ts.tv_nsec/1000;
uint8_t rdata = wiringPiI2CReadReg8(zynmcp23008s[i].fd, MCP23x08_GPIO);
//fprintf(stderr, "POLLING MCP23008 (%d) => 0x%x\n", i, rdata);
int j;
uint8_t bit;
uint8_t status;
for (j=0; j<MAX_NUM_ZYNSWITCHES; j++) {
zynswitch_t *zsw = zynswitches + j;
// This assumes all zynswitches configured with high pin (>=100) are polled!
if (!zsw->enabled || zsw->pin<100) continue;
bit = zsw->pin - zynmcp23008s[i].base_pin;
if (bit<8) {
status=bitRead(rdata, bit);
} else {
fprintf(stderr, "ZynCoder->update_polled_zynswitches(%d): Wrong pin number %d in zynswitch %d!\n", i, zsw->pin, j);
status = 0;
}
//fprintf(stderr, "POLLING SWITCH %d on pin %d => %d\n", j, zsw->pin, status);
if (status == zsw->status) continue;
zsw->status=status;
send_zynswitch_midi(zsw);
//fprintf(stderr, "POLLING SWITCH %d => STATUS=%d (%lu)\n", i, zsw->status, tsus);
if (zsw->status==1) {
if (zsw->tsus>0) {
unsigned int dtus=tsus-zsw->tsus;
zsw->tsus=0;
//Ignore spurious ticks
if (dtus<1000) return;
//fprintf(stderr, "Debounced Switch %d\n",i);
zsw->dtus=dtus;
}
} else zsw->tsus=tsus;
}
}
void * poll_zynswitches(void *arg) {
while (!end_poll_zynswitches_flag) {
// Note this only polls first MCP23008 chip!!!
update_polled_zynswitches(0);
usleep(POLL_ZYNSWITCHES_US);
}
fprintf(stderr, "ZynCore->poll_zynswitches(): Zynswitches poll thread ended flawlessly\n");
return NULL;
}
pthread_t init_poll_zynswitches() {
pthread_t tid;
end_poll_zynswitches_flag = 0;
int err=pthread_create(&tid, NULL, &poll_zynswitches, NULL);
if (err != 0) {
fprintf(stderr, "ZynCore->init_poll_zynswitches(): Can't create zynswitches poll thread :[%s]", strerror(err));
return 0;
} else {
fprintf(stderr, "ZynCore->init_poll_zynswitches(): Zynswitches poll thread created successfully\n");
return tid;
}
}
void end_poll_zynswitches() {
end_poll_zynswitches_flag = 1;
}
//-----------------------------------------------------------------------------