forked from zynthian/zyncoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zynmcp23017.h
123 lines (99 loc) · 3.4 KB
/
zynmcp23017.h
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
/*
* ******************************************************************
* ZYNTHIAN PROJECT: Zyncoder Library
*
* Library for interfacing MCP23017 using IRQs.
*
* 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.
*
* ******************************************************************
*/
#ifndef ZYNMCP23017_H
#define ZYNMCP23017_H
#include <stdint.h>
//-----------------------------------------------------------------------------
// IC registers
//-----------------------------------------------------------------------------
// MCP23x17 Registers
#define MCP23x17_IODIRA 0x00
#define MCP23x17_IPOLA 0x02
#define MCP23x17_GPINTENA 0x04
#define MCP23x17_DEFVALA 0x06
#define MCP23x17_INTCONA 0x08
#define MCP23x17_IOCON 0x0A
#define MCP23x17_GPPUA 0x0C
#define MCP23x17_INTFA 0x0E
#define MCP23x17_INTCAPA 0x10
#define MCP23x17_GPIOA 0x12
#define MCP23x17_OLATA 0x14
#define MCP23x17_IODIRB 0x01
#define MCP23x17_IPOLB 0x03
#define MCP23x17_GPINTENB 0x05
#define MCP23x17_DEFVALB 0x07
#define MCP23x17_INTCONB 0x09
#define MCP23x17_IOCONB 0x0B
#define MCP23x17_GPPUB 0x0D
#define MCP23x17_INTFB 0x0F
#define MCP23x17_INTCAPB 0x11
#define MCP23x17_GPIOB 0x13
#define MCP23x17_OLATB 0x15
// Bits in the IOCON register
#define IOCON_UNUSED 0x01
#define IOCON_INTPOL 0x02
#define IOCON_ODR 0x04
#define IOCON_HAEN 0x08
#define IOCON_DISSLW 0x10
#define IOCON_SEQOP 0x20
#define IOCON_MIRROR 0x40
#define IOCON_BANK_MODE 0x80
// Default initialisation mode
#define IOCON_INIT (IOCON_SEQOP)
// SPI Command codes
#define CMD_WRITE 0x40
#define CMD_READ 0x41
//-----------------------------------------------------------------------------
// MCP23017 stuff
//-----------------------------------------------------------------------------
#define MAX_NUM_MCP23017 4
typedef enum zynmcp23017_pin_action_enum {
NONE_PIN_ACTION = 0,
ZYNSWITCH_PIN_ACTION = 1,
ZYNCODER_PIN_ACTION = 2
} zynmcp23017_pin_action_t;
typedef struct zynmcp23017_st {
uint8_t enabled;
int fd;
uint16_t base_pin;
uint8_t i2c_address;
uint8_t intA_pin;
uint8_t intB_pin;
uint16_t last_state;
zynmcp23017_pin_action_t pin_action[16];
uint16_t pin_action_num[16];
} zynmcp23017_t;
void reset_zynmcp23017s();
int setup_zynmcp23017(uint8_t i, uint16_t base_pin, uint8_t i2c_address, uint8_t intA_pin, uint8_t intB_pin, void (*isrs[2]));
int get_last_zynmcp23017_index();
int pin2index_zynmcp23017(uint16_t pin);
int setup_pin_action_zynmcp23017(uint16_t pin, zynmcp23017_pin_action_t action, uint16_t num);
int reset_pin_action_zynmcp23017(uint16_t pin);
void zynswitch_update_zynmcp23017(uint8_t i);
void zyncoder_update_zynmcp23017(uint8_t i);
// ISR callback function
void zynmcp23017_ISR(uint8_t i, uint8_t bank);
//-----------------------------------------------------------------------------
#endif