-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpio.c
358 lines (327 loc) · 8.73 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
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
// GPIO Library
// Jason Losh
//-----------------------------------------------------------------------------
// Hardware Target
//-----------------------------------------------------------------------------
// Target Platform: EK-TM4C123GXL with LCD/Keyboard Interface
// Target uC: TM4C123GH6PM
// System Clock: 40 MHz
// Hardware configuration:
// GPIO APB ports A-F
//-----------------------------------------------------------------------------
// Device includes, defines, and assembler directives
//-----------------------------------------------------------------------------
#include <stdint.h>
#include <stdbool.h>
#include "tm4c123gh6pm.h"
#include "gpio.h"
#define OFS_DATA_TO_DIR 1*4*8
#define OFS_DATA_TO_IS 2*4*8
#define OFS_DATA_TO_IBE 3*4*8
#define OFS_DATA_TO_IEV 4*4*8
#define OFS_DATA_TO_IM 5*4*8
#define OFS_DATA_TO_AFSEL 9*4*8
#define OFS_DATA_TO_ODR 68*4*8
#define OFS_DATA_TO_PUR 69*4*8
#define OFS_DATA_TO_PDR 70*4*8
#define OFS_DATA_TO_DEN 72*4*8
#define OFS_DATA_TO_CR 74*4*8
#define OFS_DATA_TO_AMSEL 75*4*8
//-----------------------------------------------------------------------------
// Global variables
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Subroutines
//-----------------------------------------------------------------------------
void enablePort(PORT port)
{
switch(port)
{
case PORTA:
SYSCTL_RCGCGPIO_R |= SYSCTL_RCGCGPIO_R0;
SYSCTL_GPIOHBCTL_R &= ~1;
break;
case PORTB:
SYSCTL_RCGCGPIO_R |= SYSCTL_RCGCGPIO_R1;
SYSCTL_GPIOHBCTL_R &= ~2;
break;
case PORTC:
SYSCTL_RCGCGPIO_R |= SYSCTL_RCGCGPIO_R2;
SYSCTL_GPIOHBCTL_R &= ~4;
break;
case PORTD:
SYSCTL_RCGCGPIO_R |= SYSCTL_RCGCGPIO_R3;
SYSCTL_GPIOHBCTL_R &= ~8;
break;
case PORTE:
SYSCTL_RCGCGPIO_R |= SYSCTL_RCGCGPIO_R4;
SYSCTL_GPIOHBCTL_R &= ~16;
break;
case PORTF:
SYSCTL_RCGCGPIO_R |= SYSCTL_RCGCGPIO_R5;
SYSCTL_GPIOHBCTL_R &= ~32;
}
_delay_cycles(3);
}
void disablePort(PORT port)
{
switch(port)
{
case PORTA:
SYSCTL_RCGCGPIO_R &= ~SYSCTL_RCGCGPIO_R0;
break;
case PORTB:
SYSCTL_RCGCGPIO_R &= ~SYSCTL_RCGCGPIO_R1;
break;
case PORTC:
SYSCTL_RCGCGPIO_R &= ~SYSCTL_RCGCGPIO_R2;
break;
case PORTD:
SYSCTL_RCGCGPIO_R &= ~SYSCTL_RCGCGPIO_R3;
break;
case PORTE:
SYSCTL_RCGCGPIO_R &= ~SYSCTL_RCGCGPIO_R4;
break;
case PORTF:
SYSCTL_RCGCGPIO_R &= ~SYSCTL_RCGCGPIO_R5;
}
_delay_cycles(3);
}
void selectPinPushPullOutput(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_ODR;
*p = 0;
p = (uint32_t*)port + pin + OFS_DATA_TO_DIR;
*p = 1;
p = (uint32_t*)port + pin + OFS_DATA_TO_DEN;
*p = 1;
}
void selectPinOpenDrainOutput(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_ODR;
*p = 1;
p = (uint32_t*)port + pin + OFS_DATA_TO_DIR;
*p = 1;
p = (uint32_t*)port + pin + OFS_DATA_TO_DEN;
*p = 1;
}
void selectPinDigitalInput(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_DIR;
*p = 0;
p = (uint32_t*)port + pin + OFS_DATA_TO_DEN;
*p = 1;
p = (uint32_t*)port + pin + OFS_DATA_TO_AMSEL;
*p = 0;
}
void selectPinAnalogInput(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_DEN;
*p = 0;
p = (uint32_t*)port + pin + OFS_DATA_TO_AMSEL;
*p = 1;
p = (uint32_t*)port + pin + OFS_DATA_TO_AFSEL;
*p = 1;
}
void setPinCommitControl(PORT port, uint8_t pin)
{
switch(port)
{
case PORTA:
GPIO_PORTA_LOCK_R = GPIO_LOCK_KEY;
break;
case PORTB:
GPIO_PORTB_LOCK_R = GPIO_LOCK_KEY;
break;
case PORTC:
GPIO_PORTC_LOCK_R = GPIO_LOCK_KEY;
break;
case PORTD:
GPIO_PORTD_LOCK_R = GPIO_LOCK_KEY;
break;
case PORTE:
GPIO_PORTE_LOCK_R = GPIO_LOCK_KEY;
break;
case PORTF:
GPIO_PORTF_LOCK_R = GPIO_LOCK_KEY;
}
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_CR;
*p = 1;
}
void enablePinPullup(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_PUR;
*p = 1;
}
void disablePinPullup(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_PUR;
*p = 0;
}
void enablePinPulldown(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_PDR;
*p = 1;
}
void disablePinPulldown(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_PDR;
*p = 0;
}
void setPinAuxFunction(PORT port, uint8_t pin, uint32_t fn)
{
// call with header file shifted values or 4-bit number
if (fn <= 15)
fn = fn << (pin*4);
else
fn = fn & (0x0000000F << (pin*4));
switch(port)
{
case PORTA:
GPIO_PORTA_PCTL_R = (GPIO_PORTA_PCTL_R & ~(0x0000000F << (pin*4))) | fn;
break;
case PORTB:
GPIO_PORTB_PCTL_R = (GPIO_PORTB_PCTL_R & ~(0x0000000F << (pin*4))) | fn;
break;
case PORTC:
GPIO_PORTC_PCTL_R = (GPIO_PORTC_PCTL_R & ~(0x0000000F << (pin*4))) | fn;
break;
case PORTD:
GPIO_PORTD_PCTL_R = (GPIO_PORTD_PCTL_R & ~(0x0000000F << (pin*4))) | fn;
break;
case PORTE:
GPIO_PORTE_PCTL_R = (GPIO_PORTE_PCTL_R & ~(0x0000000F << (pin*4))) | fn;
break;
case PORTF:
GPIO_PORTF_PCTL_R = (GPIO_PORTF_PCTL_R & ~(0x0000000F << (pin*4))) | fn;
}
// set AFSEL bit only if using aux function, otherwise clear bit
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_AFSEL;
*p = (fn > 0);
}
void selectPinInterruptRisingEdge(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_IS;
*p = 0;
p = (uint32_t*)port + pin + OFS_DATA_TO_IBE;
*p = 0;
p = (uint32_t*)port + pin + OFS_DATA_TO_IEV;
*p = 1;
}
void selectPinInterruptFallingEdge(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_IS;
*p = 0;
p = (uint32_t*)port + pin + OFS_DATA_TO_IBE;
*p = 0;
p = (uint32_t*)port + pin + OFS_DATA_TO_IEV;
*p = 0;
}
void selectPinInterruptBothEdges(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_IS;
*p = 0;
p = (uint32_t*)port + pin + OFS_DATA_TO_IBE;
*p = 1;
}
void selectPinInterruptHighLevel(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_IS;
*p = 1;
p = (uint32_t*)port + pin + OFS_DATA_TO_IEV;
*p = 1;
}
void selectPinInterruptLowLevel(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_IS;
*p = 1;
p = (uint32_t*)port + pin + OFS_DATA_TO_IEV;
*p = 0;
}
void enablePinInterrupt(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_IM;
*p = 1;
}
void disablePinInterrupt(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin + OFS_DATA_TO_IM;
*p = 0;
}
void setPinValue(PORT port, uint8_t pin, bool value)
{
uint32_t* p;
p = (uint32_t*)port + pin;
*p = value;
}
bool getPinValue(PORT port, uint8_t pin)
{
uint32_t* p;
p = (uint32_t*)port + pin;
return *p;
}
void setPortValue(PORT port, uint8_t value)
{
switch(port)
{
case PORTA:
GPIO_PORTA_DATA_R = value;
break;
case PORTB:
GPIO_PORTB_DATA_R = value;
break;
case PORTC:
GPIO_PORTC_DATA_R = value;
break;
case PORTD:
GPIO_PORTD_DATA_R = value;
break;
case PORTE:
GPIO_PORTE_DATA_R = value;
break;
case PORTF:
GPIO_PORTF_DATA_R = value;
}
}
uint8_t getPortValue(PORT port)
{
uint8_t value;
switch(port)
{
case PORTA:
value = GPIO_PORTA_DATA_R;
break;
case PORTB:
value = GPIO_PORTB_DATA_R;
break;
case PORTC:
value = GPIO_PORTC_DATA_R;
break;
case PORTD:
value = GPIO_PORTD_DATA_R;
break;
case PORTE:
value = GPIO_PORTE_DATA_R;
break;
case PORTF:
value = GPIO_PORTF_DATA_R;
}
return value;
}