forked from Yona-Appletree/LEDscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ledscape.c
executable file
·320 lines (268 loc) · 7.13 KB
/
ledscape.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
/** \file
* Userspace interface to the WS281x LED strip driver.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <inttypes.h>
#include <errno.h>
#include <unistd.h>
#include "ledscape.h"
/** GPIO pins used by the LEDscape.
*
* The device tree should handle this configuration for us, but it
* seems horribly broken and won't configure these pins as outputs.
* So instead we have to repeat them here as well.
*
* If these are changed, be sure to check the mappings in
* ws281x.p!
*
* See https://github.com/ehayon/BeagleBone-GPIO/blob/master/src/am335x.h
* for a complete list of pins.
*
* TODO: Find a way to unify this with the defines in the .p file
*/
static const uint8_t gpios0[] = {
2, 3, 7, 8, 9, 10, 11, 14, 20, 22, 23, 26, 27, 30, 31
};
static const uint8_t gpios1[] = {
12, 13, 14, 15, 16, 17, 18, 19, 28, 29
};
static const uint8_t gpios2[] = {
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 22, 23, 24, 25,
};
static const uint8_t gpios3[] = {
14, 15, 16, 17, 19, 21
};
#define ARRAY_COUNT(a) ((sizeof(a) / sizeof(*a)))
/** Command structure shared with the PRU.
*
* This is mapped into the PRU data RAM and points to the
* frame buffer in the shared DDR segment.
*
* Changing this requires changes in ws281x.p
*/
typedef struct ws281x_command
{
// in the DDR shared with the PRU
uintptr_t pixels_dma;
// Length in pixels of the longest LED strip.
unsigned num_pixels;
// write 1 to start, 0xFF to abort. will be cleared when started
volatile unsigned command;
// will have a non-zero response written when done
volatile unsigned response;
} __attribute__((__packed__)) ws281x_command_t;
/** Retrieve one of the two frame buffers. */
ledscape_frame_t *
ledscape_frame(
ledscape_t * const leds,
unsigned int frame
)
{
if (frame >= 2)
return NULL;
return (ledscape_frame_t*)((uint8_t*) leds->pru0->ddr + leds->frame_size * frame);
}
/** Initiate the transfer of a frame to the LED strips */
void
ledscape_draw(
ledscape_t * const leds,
unsigned int frame
)
{
leds->ws281x_0->pixels_dma = leds->pru0->ddr_addr + leds->frame_size * frame;
leds->ws281x_1->pixels_dma = leds->pru0->ddr_addr + leds->frame_size * frame;
// Wait for any current command to have been acknowledged
while (leds->ws281x_0->command || leds->ws281x_1->command);
// Zero the responses so we can wait for them
leds->ws281x_0->response = leds->ws281x_1->response = 0;
// Send the start command
leds->ws281x_0->command = 1;
leds->ws281x_1->command = 1;
}
/** Wait for the current frame to finish transfering to the strips.
* \returns a token indicating the response code.
*/
void
ledscape_wait(
ledscape_t * const leds
)
{
while (1)
{
pru_wait_interrupt();
// printf("pru0: (%d,%d), pru1: (%d,%d)\n",
// leds->ws281x_0->command, leds->ws281x_0->response,
// leds->ws281x_1->command, leds->ws281x_1->response
// );
if (leds->ws281x_0->response && leds->ws281x_1->response) return;
}
}
ledscape_t * ledscape_init( unsigned num_pixels ) {
return ledscape_init_with_programs(
num_pixels,
"pru/bin/ws281x-original-ledscape-pru0.bin",
"pru/bin/ws281x-original-ledscape-pru1.bin"
);
}
ledscape_t * ledscape_init_with_programs(
unsigned num_pixels,
const char* pru0_program_filename,
const char* pru1_program_filename
)
{
pru_t * const pru0 = pru_init(0);
pru_t * const pru1 = pru_init(1);
const size_t frame_size = num_pixels * LEDSCAPE_NUM_STRIPS * 4;
if (2*frame_size > pru0->ddr_size)
die("Pixel data needs at least 2 * %zu, only %zu in DDR\n",
frame_size,
pru0->ddr_size
);
ledscape_t * const leds = calloc(1, sizeof(*leds));
*leds = (ledscape_t) {
.pru0 = pru0,
.pru1 = pru1,
.num_pixels = num_pixels,
.frame_size = frame_size,
.pru0_program_filename = pru0_program_filename,
.pru1_program_filename = pru1_program_filename,
.ws281x_0 = pru0->data_ram,
.ws281x_1 = pru1->data_ram
};
*(leds->ws281x_0) = *(leds->ws281x_1) = (ws281x_command_t) {
.pixels_dma = 0, // will be set in draw routine
.command = 0,
.response = 0,
.num_pixels = leds->num_pixels,
};
// Configure all of our output pins.
for (unsigned i = 0 ; i < ARRAY_COUNT(gpios0) ; i++)
pru_gpio(0, gpios0[i], 1, 0);
for (unsigned i = 0 ; i < ARRAY_COUNT(gpios1) ; i++)
pru_gpio(1, gpios1[i], 1, 0);
for (unsigned i = 0 ; i < ARRAY_COUNT(gpios2) ; i++)
pru_gpio(2, gpios2[i], 1, 0);
for (unsigned i = 0 ; i < ARRAY_COUNT(gpios3) ; i++)
pru_gpio(3, gpios3[i], 1, 0);
// Initiate the PRU0 program
pru_exec(pru0, pru0_program_filename);
// Watch for a done response that indicates a proper startup
// \todo timeout if it fails
fprintf(stdout, "String PRU0 with %s... ", pru0_program_filename);
while (!leds->ws281x_0->response);
printf("OK\n");
// Initiate the PRU1 program
pru_exec(pru1, pru1_program_filename);
// Watch for a done response that indicates a proper startup
// \todo timeout if it fails
fprintf(stdout, "String PRU1 with %s... ", pru1_program_filename);
while (!leds->ws281x_1->response);
printf("OK\n");
return leds;
}
extern void ledscape_set_color(
ledscape_frame_t * const frame,
color_channel_order_t color_channel_order,
uint8_t strip,
uint16_t pixel,
uint8_t r,
uint8_t g,
uint8_t b
) {
ledscape_pixel_set_color(
&frame[pixel].strip[strip],
color_channel_order,
r,
g,
b
);
}
extern inline void ledscape_pixel_set_color(
ledscape_pixel_t * const out_pixel,
color_channel_order_t color_channel_order,
uint8_t r,
uint8_t g,
uint8_t b
) {
switch (color_channel_order) {
case COLOR_ORDER_RGB:
out_pixel->a = r;
out_pixel->b = g;
out_pixel->c = b;
break;
case COLOR_ORDER_RBG:
out_pixel->a = r;
out_pixel->b = b;
out_pixel->c = g;
break;
case COLOR_ORDER_GRB:
out_pixel->a = g;
out_pixel->b = r;
out_pixel->c = b;
break;
case COLOR_ORDER_GBR:
out_pixel->a = g;
out_pixel->b = b;
out_pixel->c = r;
break;
case COLOR_ORDER_BGR:
out_pixel->a = b;
out_pixel->b = g;
out_pixel->c = r;
break;
case COLOR_ORDER_BRG:
out_pixel->a = b;
out_pixel->b = r;
out_pixel->c = g;
break;
}
}
const char* color_channel_order_to_string(color_channel_order_t color_channel_order) {
switch (color_channel_order) {
case COLOR_ORDER_RGB: return "RGB";
case COLOR_ORDER_RBG: return "RBG";
case COLOR_ORDER_GRB: return "GRB";
case COLOR_ORDER_GBR: return "GBR";
case COLOR_ORDER_BGR: return "BGR";
case COLOR_ORDER_BRG: return "BRG";
default: return "<invalid color_channel_order>";
}
}
color_channel_order_t color_channel_order_from_string(const char* str) {
if (strcasecmp(str, "RGB") == 0) {
return COLOR_ORDER_RGB;
}
else if (strcasecmp(str, "RBG") == 0) {
return COLOR_ORDER_RBG;
}
else if (strcasecmp(str, "GRB") == 0) {
return COLOR_ORDER_GRB;
}
else if (strcasecmp(str, "GBR") == 0) {
return COLOR_ORDER_GBR;
}
else if (strcasecmp(str, "BGR") == 0) {
return COLOR_ORDER_BGR;
}
else if (strcasecmp(str, "BRG") == 0) {
return COLOR_ORDER_BRG;
}
else {
return -1;
}
}
void
ledscape_close(
ledscape_t * const leds
)
{
// Signal a halt command
leds->ws281x_0->command = 0xFF;
leds->ws281x_1->command = 0xFF;
pru_close(leds->pru0);
pru_close(leds->pru1);
}