Add `SGUI()` and `SGUI_T()` for consistency with `KC_GUI` (#2442)
[jackhill/qmk/firmware.git] / quantum / matrix.c
1 /*
2 Copyright 2012-2017 Jun Wako, Jack Humbert
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 #include <stdint.h>
18 #include <stdbool.h>
19 #if defined(__AVR__)
20 #include <avr/io.h>
21 #endif
22 #include "wait.h"
23 #include "print.h"
24 #include "debug.h"
25 #include "util.h"
26 #include "matrix.h"
27 #include "timer.h"
28
29
30 /* Set 0 if debouncing isn't needed */
31
32 #ifndef DEBOUNCING_DELAY
33 # define DEBOUNCING_DELAY 5
34 #endif
35
36 #if (DEBOUNCING_DELAY > 0)
37 static uint16_t debouncing_time;
38 static bool debouncing = false;
39 #endif
40
41 #if (MATRIX_COLS <= 8)
42 # define print_matrix_header() print("\nr/c 01234567\n")
43 # define print_matrix_row(row) print_bin_reverse8(matrix_get_row(row))
44 # define matrix_bitpop(i) bitpop(matrix[i])
45 # define ROW_SHIFTER ((uint8_t)1)
46 #elif (MATRIX_COLS <= 16)
47 # define print_matrix_header() print("\nr/c 0123456789ABCDEF\n")
48 # define print_matrix_row(row) print_bin_reverse16(matrix_get_row(row))
49 # define matrix_bitpop(i) bitpop16(matrix[i])
50 # define ROW_SHIFTER ((uint16_t)1)
51 #elif (MATRIX_COLS <= 32)
52 # define print_matrix_header() print("\nr/c 0123456789ABCDEF0123456789ABCDEF\n")
53 # define print_matrix_row(row) print_bin_reverse32(matrix_get_row(row))
54 # define matrix_bitpop(i) bitpop32(matrix[i])
55 # define ROW_SHIFTER ((uint32_t)1)
56 #endif
57
58 #ifdef MATRIX_MASKED
59 extern const matrix_row_t matrix_mask[];
60 #endif
61
62 #if (DIODE_DIRECTION == ROW2COL) || (DIODE_DIRECTION == COL2ROW)
63 static const uint8_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
64 static const uint8_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
65 #endif
66
67 /* matrix state(1:on, 0:off) */
68 static matrix_row_t matrix[MATRIX_ROWS];
69
70 static matrix_row_t matrix_debouncing[MATRIX_ROWS];
71
72
73 #if (DIODE_DIRECTION == COL2ROW)
74 static void init_cols(void);
75 static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row);
76 static void unselect_rows(void);
77 static void select_row(uint8_t row);
78 static void unselect_row(uint8_t row);
79 #elif (DIODE_DIRECTION == ROW2COL)
80 static void init_rows(void);
81 static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col);
82 static void unselect_cols(void);
83 static void unselect_col(uint8_t col);
84 static void select_col(uint8_t col);
85 #endif
86
87 __attribute__ ((weak))
88 void matrix_init_quantum(void) {
89 matrix_init_kb();
90 }
91
92 __attribute__ ((weak))
93 void matrix_scan_quantum(void) {
94 matrix_scan_kb();
95 }
96
97 __attribute__ ((weak))
98 void matrix_init_kb(void) {
99 matrix_init_user();
100 }
101
102 __attribute__ ((weak))
103 void matrix_scan_kb(void) {
104 matrix_scan_user();
105 }
106
107 __attribute__ ((weak))
108 void matrix_init_user(void) {
109 }
110
111 __attribute__ ((weak))
112 void matrix_scan_user(void) {
113 }
114
115 inline
116 uint8_t matrix_rows(void) {
117 return MATRIX_ROWS;
118 }
119
120 inline
121 uint8_t matrix_cols(void) {
122 return MATRIX_COLS;
123 }
124
125 // void matrix_power_up(void) {
126 // #if (DIODE_DIRECTION == COL2ROW)
127 // for (int8_t r = MATRIX_ROWS - 1; r >= 0; --r) {
128 // /* DDRxn */
129 // _SFR_IO8((row_pins[r] >> 4) + 1) |= _BV(row_pins[r] & 0xF);
130 // toggle_row(r);
131 // }
132 // for (int8_t c = MATRIX_COLS - 1; c >= 0; --c) {
133 // /* PORTxn */
134 // _SFR_IO8((col_pins[c] >> 4) + 2) |= _BV(col_pins[c] & 0xF);
135 // }
136 // #elif (DIODE_DIRECTION == ROW2COL)
137 // for (int8_t c = MATRIX_COLS - 1; c >= 0; --c) {
138 // /* DDRxn */
139 // _SFR_IO8((col_pins[c] >> 4) + 1) |= _BV(col_pins[c] & 0xF);
140 // toggle_col(c);
141 // }
142 // for (int8_t r = MATRIX_ROWS - 1; r >= 0; --r) {
143 // /* PORTxn */
144 // _SFR_IO8((row_pins[r] >> 4) + 2) |= _BV(row_pins[r] & 0xF);
145 // }
146 // #endif
147 // }
148
149 void matrix_init(void) {
150
151 // To use PORTF disable JTAG with writing JTD bit twice within four cycles.
152 #if (defined(__AVR_AT90USB1286__) || defined(__AVR_AT90USB1287__) || defined(__AVR_ATmega32U4__))
153 MCUCR |= _BV(JTD);
154 MCUCR |= _BV(JTD);
155 #endif
156
157 // initialize row and col
158 #if (DIODE_DIRECTION == COL2ROW)
159 unselect_rows();
160 init_cols();
161 #elif (DIODE_DIRECTION == ROW2COL)
162 unselect_cols();
163 init_rows();
164 #endif
165
166 // initialize matrix state: all keys off
167 for (uint8_t i=0; i < MATRIX_ROWS; i++) {
168 matrix[i] = 0;
169 matrix_debouncing[i] = 0;
170 }
171
172 matrix_init_quantum();
173 }
174
175 uint8_t matrix_scan(void)
176 {
177
178 #if (DIODE_DIRECTION == COL2ROW)
179
180 // Set row, read cols
181 for (uint8_t current_row = 0; current_row < MATRIX_ROWS; current_row++) {
182 # if (DEBOUNCING_DELAY > 0)
183 bool matrix_changed = read_cols_on_row(matrix_debouncing, current_row);
184
185 if (matrix_changed) {
186 debouncing = true;
187 debouncing_time = timer_read();
188 }
189
190 # else
191 read_cols_on_row(matrix, current_row);
192 # endif
193
194 }
195
196 #elif (DIODE_DIRECTION == ROW2COL)
197
198 // Set col, read rows
199 for (uint8_t current_col = 0; current_col < MATRIX_COLS; current_col++) {
200 # if (DEBOUNCING_DELAY > 0)
201 bool matrix_changed = read_rows_on_col(matrix_debouncing, current_col);
202 if (matrix_changed) {
203 debouncing = true;
204 debouncing_time = timer_read();
205 }
206 # else
207 read_rows_on_col(matrix, current_col);
208 # endif
209
210 }
211
212 #endif
213
214 # if (DEBOUNCING_DELAY > 0)
215 if (debouncing && (timer_elapsed(debouncing_time) > DEBOUNCING_DELAY)) {
216 for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
217 matrix[i] = matrix_debouncing[i];
218 }
219 debouncing = false;
220 }
221 # endif
222
223 matrix_scan_quantum();
224 return 1;
225 }
226
227 bool matrix_is_modified(void)
228 {
229 #if (DEBOUNCING_DELAY > 0)
230 if (debouncing) return false;
231 #endif
232 return true;
233 }
234
235 inline
236 bool matrix_is_on(uint8_t row, uint8_t col)
237 {
238 return (matrix[row] & ((matrix_row_t)1<col));
239 }
240
241 inline
242 matrix_row_t matrix_get_row(uint8_t row)
243 {
244 // Matrix mask lets you disable switches in the returned matrix data. For example, if you have a
245 // switch blocker installed and the switch is always pressed.
246 #ifdef MATRIX_MASKED
247 return matrix[row] & matrix_mask[row];
248 #else
249 return matrix[row];
250 #endif
251 }
252
253 void matrix_print(void)
254 {
255 print_matrix_header();
256
257 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
258 phex(row); print(": ");
259 print_matrix_row(row);
260 print("\n");
261 }
262 }
263
264 uint8_t matrix_key_count(void)
265 {
266 uint8_t count = 0;
267 for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
268 count += matrix_bitpop(i);
269 }
270 return count;
271 }
272
273
274
275 #if (DIODE_DIRECTION == COL2ROW)
276
277 static void init_cols(void)
278 {
279 for(uint8_t x = 0; x < MATRIX_COLS; x++) {
280 uint8_t pin = col_pins[x];
281 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
282 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
283 }
284 }
285
286 static bool read_cols_on_row(matrix_row_t current_matrix[], uint8_t current_row)
287 {
288 // Store last value of row prior to reading
289 matrix_row_t last_row_value = current_matrix[current_row];
290
291 // Clear data in matrix row
292 current_matrix[current_row] = 0;
293
294 // Select row and wait for row selecton to stabilize
295 select_row(current_row);
296 wait_us(30);
297
298 // For each col...
299 for(uint8_t col_index = 0; col_index < MATRIX_COLS; col_index++) {
300
301 // Select the col pin to read (active low)
302 uint8_t pin = col_pins[col_index];
303 uint8_t pin_state = (_SFR_IO8(pin >> 4) & _BV(pin & 0xF));
304
305 // Populate the matrix row with the state of the col pin
306 current_matrix[current_row] |= pin_state ? 0 : (ROW_SHIFTER << col_index);
307 }
308
309 // Unselect row
310 unselect_row(current_row);
311
312 return (last_row_value != current_matrix[current_row]);
313 }
314
315 static void select_row(uint8_t row)
316 {
317 uint8_t pin = row_pins[row];
318 _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT
319 _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW
320 }
321
322 static void unselect_row(uint8_t row)
323 {
324 uint8_t pin = row_pins[row];
325 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
326 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
327 }
328
329 static void unselect_rows(void)
330 {
331 for(uint8_t x = 0; x < MATRIX_ROWS; x++) {
332 uint8_t pin = row_pins[x];
333 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
334 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
335 }
336 }
337
338 #elif (DIODE_DIRECTION == ROW2COL)
339
340 static void init_rows(void)
341 {
342 for(uint8_t x = 0; x < MATRIX_ROWS; x++) {
343 uint8_t pin = row_pins[x];
344 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
345 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
346 }
347 }
348
349 static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col)
350 {
351 bool matrix_changed = false;
352
353 // Select col and wait for col selecton to stabilize
354 select_col(current_col);
355 wait_us(30);
356
357 // For each row...
358 for(uint8_t row_index = 0; row_index < MATRIX_ROWS; row_index++)
359 {
360
361 // Store last value of row prior to reading
362 matrix_row_t last_row_value = current_matrix[row_index];
363
364 // Check row pin state
365 if ((_SFR_IO8(row_pins[row_index] >> 4) & _BV(row_pins[row_index] & 0xF)) == 0)
366 {
367 // Pin LO, set col bit
368 current_matrix[row_index] |= (ROW_SHIFTER << current_col);
369 }
370 else
371 {
372 // Pin HI, clear col bit
373 current_matrix[row_index] &= ~(ROW_SHIFTER << current_col);
374 }
375
376 // Determine if the matrix changed state
377 if ((last_row_value != current_matrix[row_index]) && !(matrix_changed))
378 {
379 matrix_changed = true;
380 }
381 }
382
383 // Unselect col
384 unselect_col(current_col);
385
386 return matrix_changed;
387 }
388
389 static void select_col(uint8_t col)
390 {
391 uint8_t pin = col_pins[col];
392 _SFR_IO8((pin >> 4) + 1) |= _BV(pin & 0xF); // OUT
393 _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF); // LOW
394 }
395
396 static void unselect_col(uint8_t col)
397 {
398 uint8_t pin = col_pins[col];
399 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
400 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
401 }
402
403 static void unselect_cols(void)
404 {
405 for(uint8_t x = 0; x < MATRIX_COLS; x++) {
406 uint8_t pin = col_pins[x];
407 _SFR_IO8((pin >> 4) + 1) &= ~_BV(pin & 0xF); // IN
408 _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF); // HI
409 }
410 }
411
412 #endif