]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/protocol/arm_atsam/led_matrix.c
Massdrop keyboard support (#3780)
[qmk_firmware.git] / tmk_core / protocol / arm_atsam / led_matrix.c
1 /*
2 Copyright 2018 Massdrop Inc.
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #include "arm_atsam_protocol.h"
19 #include "tmk_core/common/led.h"
20 #include <string.h>
21
22 void SERCOM1_0_Handler( void )
23 {
24     if (SERCOM1->I2CM.INTFLAG.bit.ERROR)
25     {
26         SERCOM1->I2CM.INTFLAG.reg = SERCOM_I2CM_INTENCLR_ERROR;
27     }
28 }
29
30 void DMAC_0_Handler( void )
31 {
32     if (DMAC->Channel[0].CHINTFLAG.bit.TCMPL)
33     {
34         DMAC->Channel[0].CHINTFLAG.reg = DMAC_CHINTENCLR_TCMPL;
35
36         i2c1_stop();
37
38         i2c_led_q_running = 0;
39
40         i2c_led_q_run();
41
42         return;
43     }
44
45     if (DMAC->Channel[0].CHINTFLAG.bit.TERR)
46     {
47         DMAC->Channel[0].CHINTFLAG.reg = DMAC_CHINTENCLR_TERR;
48     }
49 }
50
51 issi3733_driver_t issidrv[ISSI3733_DRIVER_COUNT];
52
53 issi3733_led_t led_map[ISSI3733_LED_COUNT+1] = ISSI3733_LED_MAP;
54 issi3733_led_t *lede = led_map + ISSI3733_LED_COUNT; //End pointer of mapping
55
56 uint8_t gcr_desired;
57 uint8_t gcr_breathe;
58 uint8_t gcr_use;
59 uint8_t gcr_actual;
60 uint8_t gcr_actual_last;
61
62 #define ACT_GCR_NONE    0
63 #define ACT_GCR_INC     1
64 #define ACT_GCR_DEC     2
65
66 #define LED_GCR_STEP_AUTO 2
67
68 static uint8_t gcr_min_counter;
69 static uint8_t v_5v_cat_hit;
70
71 //WARNING: Automatic GCR is in place to prevent USB shutdown and LED driver overloading
72 void gcr_compute(void)
73 {
74     uint8_t action = ACT_GCR_NONE;
75
76     if (led_animation_breathing)
77         gcr_use = gcr_breathe;
78     else
79         gcr_use = gcr_desired;
80
81     //If the 5v takes a catastrophic hit, disable the LED drivers briefly, assert auto gcr mode, min gcr and let the auto take over
82     if (v_5v < V5_CAT)
83     {
84         I2C3733_Control_Set(0);
85         //CDC_print("USB: WARNING: 5V catastrophic level reached! Disabling LED drivers!\r\n"); //Blocking print is bad here!
86         v_5v_cat_hit = 20; //~100ms recover
87         gcr_actual = 0; //Minimize GCR
88         usb_gcr_auto = 1; //Force auto mode enabled
89         return;
90     }
91     else if (v_5v_cat_hit > 1)
92     {
93         v_5v_cat_hit--;
94         return;
95     }
96     else if (v_5v_cat_hit == 1)
97     {
98         I2C3733_Control_Set(1);
99         CDC_print("USB: WARNING: Re-enabling LED drivers\r\n");
100         v_5v_cat_hit = 0;
101         return;
102     }
103
104     if (usb_gcr_auto)
105     {
106         if (v_5v_avg < V5_LOW) action = ACT_GCR_DEC;
107         else if (v_5v_avg > V5_HIGH && gcr_actual < gcr_use) action = ACT_GCR_INC;
108         else if (gcr_actual > gcr_use) action = ACT_GCR_DEC;
109     }
110     else
111     {
112         if (gcr_actual < gcr_use) action = ACT_GCR_INC;
113         else if (gcr_actual > gcr_use) action = ACT_GCR_DEC;
114     }
115
116     if (action == ACT_GCR_NONE)
117     {
118         gcr_min_counter = 0;
119     }
120     else if (action == ACT_GCR_INC)
121     {
122         if (LED_GCR_STEP_AUTO > LED_GCR_MAX - gcr_actual) gcr_actual = LED_GCR_MAX; //Obey max and prevent wrapping
123         else gcr_actual += LED_GCR_STEP_AUTO;
124         gcr_min_counter = 0;
125     }
126     else if (action == ACT_GCR_DEC)
127     {
128         if (LED_GCR_STEP_AUTO > gcr_actual) //Prevent wrapping
129         {
130             gcr_actual = 0;
131             //At this point, power can no longer be cut from the LED drivers, so focus on cutting out extra port if active
132             if (usb_extra_state != USB_EXTRA_STATE_DISABLED_UNTIL_REPLUG) //If not in a wait for replug state
133             {
134                 if (usb_extra_state == USB_EXTRA_STATE_ENABLED) //If extra usb is enabled
135                 {
136                     gcr_min_counter++;
137                     if (gcr_min_counter > 200) //5ms per check = 1s delay
138                     {
139                         USB_ExtraSetState(USB_EXTRA_STATE_DISABLED_UNTIL_REPLUG);
140                         usb_extra_manual = 0; //Force disable manual mode of extra port
141                         if (usb_extra_manual) CDC_print("USB: Disabling extra port until replug and manual mode toggle!\r\n");
142                         else CDC_print("USB: Disabling extra port until replug!\r\n");
143                     }
144                 }
145             }
146         }
147         else
148         {
149             //Power successfully cut back from LED drivers
150             gcr_actual -= LED_GCR_STEP_AUTO;
151             gcr_min_counter = 0;
152
153             //If breathe mode is active, the top end can fluctuate if the host can not supply enough current
154             //So set the breathe GCR to where it becomes stable
155             if (led_animation_breathing == 1)
156             {
157                 gcr_breathe = gcr_actual;
158                 //PS: At this point, setting breathing to exhale makes a noticebly shorter cycle
159                 //    and the same would happen maybe one or two more times. Therefore I'm favoring
160                 //    powering through one full breathe and letting gcr settle completely
161             }
162         }
163     }
164 }
165
166 led_disp_t disp;
167
168 void issi3733_prepare_arrays(void)
169 {
170     memset(issidrv,0,sizeof(issi3733_driver_t) * ISSI3733_DRIVER_COUNT);
171
172     int i;
173     uint8_t addrs[ISSI3733_DRIVER_COUNT] = ISSI3773_DRIVER_ADDRESSES;
174
175     for (i=0;i<ISSI3733_DRIVER_COUNT;i++)
176     {
177         issidrv[i].addr = addrs[i];
178     }
179
180     issi3733_led_t *cur = led_map;
181
182     while (cur < lede)
183     {
184         //BYTE: 1 + (SW-1)*16 + (CS-1)
185         cur->rgb.g = issidrv[cur->adr.drv-1].pwm + 1 + ((cur->adr.swg-1)*16 + (cur->adr.cs-1));
186         cur->rgb.r = issidrv[cur->adr.drv-1].pwm + 1 + ((cur->adr.swr-1)*16 + (cur->adr.cs-1));
187         cur->rgb.b = issidrv[cur->adr.drv-1].pwm + 1 + ((cur->adr.swb-1)*16 + (cur->adr.cs-1));
188
189         //BYTE: 1 + (SW-1)*2 + (CS-1)/8
190         //BIT: (CS-1)%8
191         *(issidrv[cur->adr.drv-1].onoff + 1 + (cur->adr.swg-1)*2+(cur->adr.cs-1)/8) |= (1<<((cur->adr.cs-1)%8));
192         *(issidrv[cur->adr.drv-1].onoff + 1 + (cur->adr.swr-1)*2+(cur->adr.cs-1)/8) |= (1<<((cur->adr.cs-1)%8));
193         *(issidrv[cur->adr.drv-1].onoff + 1 + (cur->adr.swb-1)*2+(cur->adr.cs-1)/8) |= (1<<((cur->adr.cs-1)%8));
194
195         cur++;
196     }
197 }
198
199 void disp_calc_extents(void)
200 {
201     issi3733_led_t *cur = led_map;
202
203     disp.left = 1e10;
204     disp.right = -1e10;
205     disp.top = -1e10;
206     disp.bottom = 1e10;
207
208     while (cur < lede)
209     {
210         if (cur->x < disp.left) disp.left = cur->x;
211         if (cur->x > disp.right) disp.right = cur->x;
212         if (cur->y < disp.bottom) disp.bottom = cur->y;
213         if (cur->y > disp.top) disp.top = cur->y;
214
215         cur++;
216     }
217
218     disp.width = disp.right - disp.left;
219     disp.height = disp.top - disp.bottom;
220 }
221
222 void disp_pixel_setup(void)
223 {
224     issi3733_led_t *cur = led_map;
225
226     while (cur < lede)
227     {
228         cur->px = (cur->x - disp.left) / disp.width * 100;
229         cur->py = (cur->y - disp.top) / disp.height * 100;
230         *cur->rgb.r = 0;
231         *cur->rgb.g = 0;
232         *cur->rgb.b = 0;
233
234         cur++;
235     }
236 }
237
238 void led_matrix_prepare(void)
239 {
240     disp_calc_extents();
241     disp_pixel_setup();
242 }
243
244 uint8_t led_enabled;
245 float led_animation_speed;
246 uint8_t led_animation_direction;
247 uint8_t led_animation_breathing;
248 uint8_t led_animation_breathe_cur;
249 uint8_t breathe_step;
250 uint8_t breathe_dir;
251 uint64_t led_next_run;
252
253 uint8_t led_animation_id;
254 uint8_t led_lighting_mode;
255
256 issi3733_led_t *led_cur;
257 uint8_t led_per_run = 15;
258 float breathe_mult;
259
260 void led_matrix_run(led_setup_t *f)
261 {
262     float ro;
263     float go;
264     float bo;
265     float px;
266     uint8_t led_this_run = 0;
267
268     if (led_cur == 0) //Denotes start of new processing cycle in the case of chunked processing
269     {
270         led_cur = led_map;
271
272         disp.frame += 1;
273
274         breathe_mult = 1;
275
276         if (led_animation_breathing)
277         {
278             led_animation_breathe_cur += breathe_step * breathe_dir;
279
280             if (led_animation_breathe_cur >= BREATHE_MAX_STEP)
281                 breathe_dir = -1;
282             else if (led_animation_breathe_cur <= BREATHE_MIN_STEP)
283                 breathe_dir = 1;
284
285             //Brightness curve created for 256 steps, 0 - ~98%
286             breathe_mult = 0.000015 * led_animation_breathe_cur * led_animation_breathe_cur;
287             if (breathe_mult > 1) breathe_mult = 1;
288             else if (breathe_mult < 0) breathe_mult = 0;
289         }
290     }
291
292     uint8_t fcur = 0;
293     uint8_t fmax = 0;
294
295     //Frames setup
296     while (f[fcur].end != 1)
297     {
298         fcur++; //Count frames
299     }
300
301     fmax = fcur; //Store total frames count
302
303     while (led_cur < lede && led_this_run < led_per_run)
304     {
305         ro = 0;
306         go = 0;
307         bo = 0;
308
309         if (led_lighting_mode == LED_MODE_KEYS_ONLY && led_cur->scan == 255)
310         {
311             //Do not act on this LED
312         }
313         else if (led_lighting_mode == LED_MODE_NON_KEYS_ONLY && led_cur->scan != 255)
314         {
315             //Do not act on this LED
316         }
317         else if (led_lighting_mode == LED_MODE_INDICATORS_ONLY)
318         {
319             //Do not act on this LED (Only show indicators)
320         }
321         else
322         {
323             //Act on LED
324             for (fcur = 0; fcur < fmax; fcur++)
325             {
326                 px = led_cur->px;
327                 float pxmod;
328                 pxmod = (float)(disp.frame % (uint32_t)(1000.0f / led_animation_speed)) / 10.0f * led_animation_speed;
329
330                 //Add in any moving effects
331                 if ((!led_animation_direction && f[fcur].ef & EF_SCR_R) || (led_animation_direction && (f[fcur].ef & EF_SCR_L)))
332                 {
333                     pxmod *= 100.0f;
334                     pxmod = (uint32_t)pxmod % 10000;
335                     pxmod /= 100.0f;
336
337                     px -= pxmod;
338
339                     if (px > 100) px -= 100;
340                     else if (px < 0) px += 100;
341                 }
342                 else if ((!led_animation_direction && f[fcur].ef & EF_SCR_L) || (led_animation_direction && (f[fcur].ef & EF_SCR_R)))
343                 {
344                     pxmod *= 100.0f;
345                     pxmod = (uint32_t)pxmod % 10000;
346                     pxmod /= 100.0f;
347                     px += pxmod;
348
349                     if (px > 100) px -= 100;
350                     else if (px < 0) px += 100;
351                 }
352
353                 //Check if LED's px is in current frame
354                 if (px < f[fcur].hs) continue;
355                 if (px > f[fcur].he) continue;
356                 //note: < 0 or > 100 continue
357
358                 //Calculate the px within the start-stop percentage for color blending
359                 px = (px - f[fcur].hs) / (f[fcur].he - f[fcur].hs);
360
361                 //Add in any color effects
362                 if (f[fcur].ef & EF_OVER)
363                 {
364                     ro = (px * (f[fcur].re - f[fcur].rs)) + f[fcur].rs;// + 0.5;
365                     go = (px * (f[fcur].ge - f[fcur].gs)) + f[fcur].gs;// + 0.5;
366                     bo = (px * (f[fcur].be - f[fcur].bs)) + f[fcur].bs;// + 0.5;
367                 }
368                 else if (f[fcur].ef & EF_SUBTRACT)
369                 {
370                     ro -= (px * (f[fcur].re - f[fcur].rs)) + f[fcur].rs;// + 0.5;
371                     go -= (px * (f[fcur].ge - f[fcur].gs)) + f[fcur].gs;// + 0.5;
372                     bo -= (px * (f[fcur].be - f[fcur].bs)) + f[fcur].bs;// + 0.5;
373                 }
374                 else
375                 {
376                     ro += (px * (f[fcur].re - f[fcur].rs)) + f[fcur].rs;// + 0.5;
377                     go += (px * (f[fcur].ge - f[fcur].gs)) + f[fcur].gs;// + 0.5;
378                     bo += (px * (f[fcur].be - f[fcur].bs)) + f[fcur].bs;// + 0.5;
379                 }
380             }
381         }
382
383         //Clamp values 0-255
384         if (ro > 255) ro = 255; else if (ro < 0) ro = 0;
385         if (go > 255) go = 255; else if (go < 0) go = 0;
386         if (bo > 255) bo = 255; else if (bo < 0) bo = 0;
387
388         if (led_animation_breathing)
389         {
390             ro *= breathe_mult;
391             go *= breathe_mult;
392             bo *= breathe_mult;
393         }
394
395         *led_cur->rgb.r = (uint8_t)ro;
396         *led_cur->rgb.g = (uint8_t)go;
397         *led_cur->rgb.b = (uint8_t)bo;
398
399 #ifdef USB_LED_INDICATOR_ENABLE
400         if (keyboard_leds())
401         {
402             uint8_t kbled = keyboard_leds();
403             if (
404                 #if USB_LED_NUM_LOCK_SCANCODE != 255
405                 (led_cur->scan == USB_LED_NUM_LOCK_SCANCODE && kbled & (1<<USB_LED_NUM_LOCK)) ||
406                 #endif //NUM LOCK
407                 #if USB_LED_CAPS_LOCK_SCANCODE != 255
408                 (led_cur->scan == USB_LED_CAPS_LOCK_SCANCODE && kbled & (1<<USB_LED_CAPS_LOCK)) ||
409                 #endif //CAPS LOCK
410                 #if USB_LED_SCROLL_LOCK_SCANCODE != 255
411                 (led_cur->scan == USB_LED_SCROLL_LOCK_SCANCODE && kbled & (1<<USB_LED_SCROLL_LOCK)) ||
412                 #endif //SCROLL LOCK
413                 #if USB_LED_COMPOSE_SCANCODE != 255
414                 (led_cur->scan == USB_LED_COMPOSE_SCANCODE && kbled & (1<<USB_LED_COMPOSE)) ||
415                 #endif //COMPOSE
416                 #if USB_LED_KANA_SCANCODE != 255
417                 (led_cur->scan == USB_LED_KANA_SCANCODE && kbled & (1<<USB_LED_KANA)) ||
418                 #endif //KANA
419                 (0))
420             {
421                 if (*led_cur->rgb.r > 127) *led_cur->rgb.r = 0;
422                 else *led_cur->rgb.r = 255;
423                 if (*led_cur->rgb.g > 127) *led_cur->rgb.g = 0;
424                 else *led_cur->rgb.g = 255;
425                 if (*led_cur->rgb.b > 127) *led_cur->rgb.b = 0;
426                 else *led_cur->rgb.b = 255;
427             }
428         }
429 #endif //USB_LED_INDICATOR_ENABLE
430
431         led_cur++;
432         led_this_run++;
433     }
434 }
435
436 uint8_t led_matrix_init(void)
437 {
438     DBGC(DC_LED_MATRIX_INIT_BEGIN);
439
440     issi3733_prepare_arrays();
441
442     led_matrix_prepare();
443
444     disp.frame = 0;
445     led_next_run = 0;
446
447     led_enabled = 1;
448     led_animation_id = 0;
449     led_lighting_mode = LED_MODE_NORMAL;
450     led_animation_speed = 4.0f;
451     led_animation_direction = 0;
452     led_animation_breathing = 0;
453     led_animation_breathe_cur = BREATHE_MIN_STEP;
454     breathe_step = 1;
455     breathe_dir = 1;
456
457     gcr_min_counter = 0;
458     v_5v_cat_hit = 0;
459
460     //Run led matrix code once for initial LED coloring
461     led_cur = 0;
462     led_matrix_run((led_setup_t*)led_setups[led_animation_id]);
463
464     DBGC(DC_LED_MATRIX_INIT_COMPLETE);
465
466     return 0;
467 }
468
469 #define LED_UPDATE_RATE 10  //ms
470
471 //led data processing can take time, so process data in chunks to free up the processor
472 //this is done through led_cur and lede
473 void led_matrix_task(void)
474 {
475     if (led_enabled)
476     {
477         //If an update may run and frame processing has completed
478         if (CLK_get_ms() >= led_next_run && led_cur == lede)
479         {
480             uint8_t drvid;
481
482             led_next_run = CLK_get_ms() + LED_UPDATE_RATE;  //Set next frame update time
483
484             //NOTE: GCR does not need to be timed with LED processing, but there is really no harm
485             if (gcr_actual != gcr_actual_last)
486             {
487                 for (drvid=0;drvid<ISSI3733_DRIVER_COUNT;drvid++)
488                     I2C_LED_Q_GCR(drvid); //Queue data
489                 gcr_actual_last = gcr_actual;
490             }
491
492             for (drvid=0;drvid<ISSI3733_DRIVER_COUNT;drvid++)
493                 I2C_LED_Q_PWM(drvid); //Queue data
494
495             i2c_led_q_run();
496
497             led_cur = 0; //Signal next frame calculations may begin
498         }
499     }
500
501     //Process more data if not finished
502     if (led_cur != lede)
503     {
504         //m15_off; //debug profiling
505         led_matrix_run((led_setup_t*)led_setups[led_animation_id]);
506         //m15_on; //debug profiling
507     }
508 }
509