logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

matrix.c (6495B)


  1. /*
  2. Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #include "matrix.h"
  15. #include <stdint.h>
  16. #include <stdbool.h>
  17. #include <avr/io.h>
  18. #include "wait.h"
  19. #include "action_layer.h"
  20. #include "print.h"
  21. #include "debug.h"
  22. #include "util.h"
  23. #include "debounce.h"
  24. #include "gergoplex.h"
  25. #ifdef BALLER
  26. # include <avr/interrupt.h>
  27. # include "pointing_device.h"
  28. #endif
  29. #ifndef DEBOUNCE
  30. # define DEBOUNCE 5
  31. #endif
  32. // ATmega pin defs
  33. #define COL1 (1 << 6)
  34. #define COL2 (1 << 5)
  35. #define COL3 (1 << 4)
  36. #define COL4 (1 << 1)
  37. /* matrix state(1:on, 0:off) */
  38. static matrix_row_t matrix[MATRIX_ROWS];
  39. /*
  40. * matrix state(1:on, 0:off)
  41. * contains the raw values without debounce filtering of the last read cycle.
  42. */
  43. static matrix_row_t raw_matrix[MATRIX_ROWS];
  44. static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS;
  45. // Right-hand side only pins, the left side is controlled my MCP
  46. static const pin_t row_pins[MATRIX_ROWS_PER_SIDE] = MATRIX_ROW_PINS;
  47. // Debouncing: store for each key the number of scans until it's eligible to
  48. // change. When scanning the matrix, ignore any changes in keys that have
  49. // already changed in the last DEBOUNCE scans.
  50. static matrix_row_t read_cols(uint8_t row);
  51. static void init_cols(void);
  52. static void unselect_rows(void);
  53. static void select_row(uint8_t row);
  54. static uint8_t mcp23018_reset_loop;
  55. __attribute__((weak)) void matrix_init_user(void) {}
  56. __attribute__((weak)) void matrix_scan_user(void) {}
  57. __attribute__((weak)) void matrix_scan_kb(void) { matrix_scan_user(); }
  58. void matrix_init(void) {
  59. // initialize row and col
  60. mcp23018_status = init_mcp23018();
  61. unselect_rows();
  62. init_cols();
  63. // initialize matrix state: all keys off
  64. for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
  65. matrix[i] = 0;
  66. raw_matrix[i] = 0;
  67. }
  68. debounce_init(MATRIX_ROWS);
  69. matrix_init_kb();
  70. }
  71. void matrix_power_up(void) {
  72. mcp23018_status = init_mcp23018();
  73. unselect_rows();
  74. init_cols();
  75. // initialize matrix state: all keys off
  76. for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
  77. matrix[i] = 0;
  78. }
  79. }
  80. // Reads and stores a row, returning
  81. // whether a change occurred.
  82. static inline bool store_raw_matrix_row(uint8_t index) {
  83. matrix_row_t temp = read_cols(index);
  84. if (raw_matrix[index] != temp) {
  85. raw_matrix[index] = temp;
  86. return true;
  87. }
  88. return false;
  89. }
  90. uint8_t matrix_scan(void) {
  91. if (mcp23018_status) { // if there was an error
  92. if (++mcp23018_reset_loop == 0) {
  93. // if (++mcp23018_reset_loop >= 1300) {
  94. // since mcp23018_reset_loop is 8 bit - we'll try to reset once in 255 matrix scans
  95. // this will be approx bit more frequent than once per second
  96. print("trying to reset mcp23018\n");
  97. mcp23018_status = init_mcp23018();
  98. if (mcp23018_status) {
  99. print("left side not responding\n");
  100. } else {
  101. print("left side attached\n");
  102. }
  103. }
  104. }
  105. bool changed = false;
  106. for (uint8_t i = 0; i < MATRIX_ROWS_PER_SIDE; i++) {
  107. // select rows from left and right hands
  108. uint8_t left_index = i;
  109. uint8_t right_index = i + MATRIX_ROWS_PER_SIDE;
  110. select_row(left_index);
  111. select_row(right_index);
  112. // we don't need a 30us delay anymore, because selecting a
  113. // left-hand row requires more than 30us for i2c.
  114. changed |= store_raw_matrix_row(left_index);
  115. changed |= store_raw_matrix_row(right_index);
  116. unselect_rows();
  117. }
  118. debounce(raw_matrix, matrix, MATRIX_ROWS, changed);
  119. matrix_scan_kb();
  120. #ifdef DEBUG_MATRIX
  121. for (uint8_t c = 0; c < MATRIX_COLS; c++)
  122. for (uint8_t r = 0; r < MATRIX_ROWS; r++)
  123. if (matrix_is_on(r, c)) xprintf("r:%d c:%d \n", r, c);
  124. #endif
  125. return 1;
  126. }
  127. inline bool matrix_is_on(uint8_t row, uint8_t col) { return (matrix[row] & ((matrix_row_t)1 << col)); }
  128. inline matrix_row_t matrix_get_row(uint8_t row) { return matrix[row]; }
  129. void matrix_print(void) {
  130. print("\nr/c 0123456789ABCDEF\n");
  131. for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
  132. print_hex8(row);
  133. print(": ");
  134. print_bin_reverse16(matrix_get_row(row));
  135. print("\n");
  136. }
  137. }
  138. // Remember this means ROWS
  139. static void init_cols(void) {
  140. for (uint8_t col = 0; col < MATRIX_COLS; col++) {
  141. gpio_set_pin_input_high(col_pins[col]);
  142. }
  143. }
  144. static matrix_row_t read_cols(uint8_t row) {
  145. if (row < 5) {
  146. if (mcp23018_status) { // if there was an error
  147. return 0;
  148. } else {
  149. uint8_t data = 0;
  150. mcp23018_status = i2c_receive(I2C_ADDR, &data, 1, I2C_TIMEOUT);
  151. #ifdef DEBUG_MATRIX
  152. if (~data != 0x00) xprintf("I2C: %d\n", ~data);
  153. #endif
  154. return ~data;
  155. }
  156. } else {
  157. return ~((((PINF & COL4) >> 1) | ((PINF & (COL1 | COL2 | COL3)) >> 3)) & 0xF);
  158. }
  159. }
  160. // Row pin configuration
  161. static void unselect_rows(void) {
  162. // no need to unselect on mcp23018, because the select step sets all
  163. // the other row bits high, and it's not changing to a different direction
  164. for (uint8_t row = 0; row < MATRIX_ROWS_PER_SIDE; row++) {
  165. gpio_set_pin_input(row_pins[row]);
  166. gpio_write_pin_low(row_pins[row]);
  167. }
  168. }
  169. static void select_row(uint8_t row) {
  170. if (row < 5) {
  171. // select on mcp23018
  172. if (mcp23018_status) { // do nothing on error
  173. } else { // set active row low : 0 // set other rows hi-Z : 1
  174. uint8_t data;
  175. data = 0xFF & ~(1 << (row + 1));
  176. mcp23018_status = i2c_write_register(I2C_ADDR, GPIOA, &data, 1, I2C_TIMEOUT);
  177. }
  178. } else {
  179. gpio_set_pin_output(row_pins[row - MATRIX_ROWS_PER_SIDE]);
  180. gpio_write_pin_low(row_pins[row - MATRIX_ROWS_PER_SIDE]);
  181. }
  182. }