-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpio.c
245 lines (227 loc) · 3.88 KB
/
gpio.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
/*
* gpio.c
*
* Created on: 22/07/2019
* Author: Evandro Teixeira
*/
#include "gpio.h"
/**
* @brief
*/
void (*gpio_porta_irq)(void);
void (*gpio_portb_irq)(void);
/**
* @brief
* @param gpio
* @param pin
* @param type
* @return
*/
bool gpio_init (GPIO_MemMapPtr gpio,uint32_t pin,gpio_dir_config_t type)
{
if(gpio == GPIOA)
{
// System Clock Gating
SIM_SCGC5 |= SIM_SCGC5_PORTA_MASK;
// Pin Mux Control ~ GPIO
PORT_PCR_REG(PORTA_BASE_PTR,pin) = PORT_PCR_MUX(1);
}
else if(gpio == GPIOB)
{
// System Clock Gating
SIM_SCGC5 |= SIM_SCGC5_PORTB_MASK;
// Pin Mux Control ~ GPIO
PORT_PCR_REG(PORTB_BASE_PTR,pin) = PORT_PCR_MUX(1);
}
else
{
return false;
}
switch(type)
{
case GPIO_OUTPUT:
gpio->PDDR |= (1 << pin);
break;
case GPIO_INPUT:
default:
gpio->PDDR &=~(1 << pin);
break;
}
return true;
}
/**
* @brief
* @param gpio
* @param pin
* @param resistor
* @return
*/
bool gpio_resistor_enable(GPIO_MemMapPtr gpio,uint32_t pin,gpio_resistor_t resistor)
{
if(gpio == GPIOA)
{
PORT_PCR_REG(PORTA_BASE_PTR,pin) |= PORT_PCR_PE(1);
if(resistor == GPIO_PULLDOWN_RESISTOR)
{
PORT_PCR_REG(PORTA_BASE_PTR,pin) |= PORT_PCR_PS(0);
}
else
{
PORT_PCR_REG(PORTA_BASE_PTR,pin) |= PORT_PCR_PS(1);
}
}
else if(gpio == GPIOB)
{
PORT_PCR_REG(PORTB_BASE_PTR,pin) |= PORT_PCR_PE(1);
if(resistor == GPIO_PULLDOWN_RESISTOR)
{
PORT_PCR_REG(PORTB_BASE_PTR,pin) |= PORT_PCR_PS(0);
}
else
{
PORT_PCR_REG(PORTB_BASE_PTR,pin) |= PORT_PCR_PS(1);
}
}
else
{
return false;
}
return true;
}
/**
* @brief
* @param gpio
* @param pin
* @return
*/
gpio_status_t gpio_read(GPIO_MemMapPtr gpio,uint32_t pin)
{
if( gpio->PDIR & (1 << pin) )
{
return GPIO_ENABLE;
}
else
{
return GPIO_DISABLE;
}
}
/**
* @brief gpio
* @param pin
* @param value
*/
void gpio_write(GPIO_MemMapPtr gpio,uint32_t pin,gpio_status_t value)
{
if(value == GPIO_ENABLE)
{
gpio->PSOR |= (1 << pin);
}
else
{
gpio->PDOR &=~ (1 << pin);
}
}
/**
* @brief
* @param gpio
* @param pin
*/
void gpio_toggle(GPIO_MemMapPtr gpio,uint32_t pin)
{
gpio->PTOR = (1 << pin);
}
/**
* @brief
* @param pin
* @param interrupt
*/
bool gpio_interrupt_configuration(GPIO_MemMapPtr gpio,uint32_t pin,gpio_interrupt_t interrupt)
{
if(gpio == GPIOA)
{
PORT_PCR_REG(PORTA_BASE_PTR,pin) |= PORT_PCR_IRQC(interrupt);
PORT_PCR_REG(PORTA_BASE_PTR,pin) |= PORT_PCR_ISF_MASK; // clear flag
// PORTB_PCR0 |= PORT_PCR_ISF_MASK; // clear flag
NVIC_EnableIRQ(PORTA_IRQn);
}
else if(gpio == GPIOB)
{
PORT_PCR_REG(PORTB_BASE_PTR,pin) |= PORT_PCR_IRQC(interrupt);
PORT_PCR_REG(PORTB_BASE_PTR,pin) |= PORT_PCR_ISF_MASK; // clear flag
NVIC_EnableIRQ(PORTB_IRQn);
}
else
{
return false;
}
return true;
}
/**
* @brief
* @param gpio
* @param *task
*/
bool gpio_set_callback_irq(GPIO_MemMapPtr gpio, void (*task)(void))
{
if(gpio == GPIOA)
{
gpio_porta_irq = task;
}
else if(gpio == GPIOB)
{
gpio_portb_irq = task;
}
else
{
return false;
}
return true;
}
/**
* @brief
* @param gpio
* @param pin
*/
bool gpio_clear_flag(GPIO_MemMapPtr gpio, uint32_t pin)
{
if(gpio == GPIOA)
{
PORT_PCR_REG(PORTA_BASE_PTR,pin) |= PORT_PCR_ISF_MASK; // clear flag
}
else if(gpio == GPIOB)
{
PORT_PCR_REG(PORTB_BASE_PTR,pin) |= PORT_PCR_ISF_MASK; // clear flag
}
else
{
return false;
}
return true;
}
/**
* @brief
*/
void PORTA_IRQHandler(void)
{
// Clear the interrupt flag
//PORTA_PCR12 |= PORT_PCR_ISF_MASK;
//PORTA_PCR13 |= PORT_PCR_ISF_MASK;
//PORT_PCR_REG(PORTA_BASE_PTR,13) |= PORT_PCR_ISF_MASK; // clear flag
if(gpio_porta_irq != NULL)
{
gpio_porta_irq();
}
}
/**
* @brief
*/
void PORTB_IRQHandler(void)
{
//PORTB_PCR12 |= PORT_PCR_ISF_MASK;
//PORTB_PCR13 |= PORT_PCR_ISF_MASK;
//PORT_PCR_REG(PORTB_BASE_PTR,12) |= PORT_PCR_ISF_MASK; // clear flag
if(gpio_portb_irq != NULL)
{
gpio_portb_irq();
}
}