logo

qmk_firmware

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

adns9800.c (7596B)


  1. /* Copyright 2020 Alexander Tulloh
  2. *
  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. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "spi_master.h"
  17. #include "adns9800.h"
  18. #include "wait.h"
  19. // registers
  20. // clang-format off
  21. #define REG_Product_ID 0x00
  22. #define REG_Revision_ID 0x01
  23. #define REG_Motion 0x02
  24. #define REG_Delta_X_L 0x03
  25. #define REG_Delta_X_H 0x04
  26. #define REG_Delta_Y_L 0x05
  27. #define REG_Delta_Y_H 0x06
  28. #define REG_SQUAL 0x07
  29. #define REG_Pixel_Sum 0x08
  30. #define REG_Maximum_Pixel 0x09
  31. #define REG_Minimum_Pixel 0x0a
  32. #define REG_Shutter_Lower 0x0b
  33. #define REG_Shutter_Upper 0x0c
  34. #define REG_Frame_Period_Lower 0x0d
  35. #define REG_Frame_Period_Upper 0x0e
  36. #define REG_Configuration_I 0x0f
  37. #define REG_Configuration_II 0x10
  38. #define REG_Frame_Capture 0x12
  39. #define REG_SROM_Enable 0x13
  40. #define REG_Run_Downshift 0x14
  41. #define REG_Rest1_Rate 0x15
  42. #define REG_Rest1_Downshift 0x16
  43. #define REG_Rest2_Rate 0x17
  44. #define REG_Rest2_Downshift 0x18
  45. #define REG_Rest3_Rate 0x19
  46. #define REG_Frame_Period_Max_Bound_Lower 0x1a
  47. #define REG_Frame_Period_Max_Bound_Upper 0x1b
  48. #define REG_Frame_Period_Min_Bound_Lower 0x1c
  49. #define REG_Frame_Period_Min_Bound_Upper 0x1d
  50. #define REG_Shutter_Max_Bound_Lower 0x1e
  51. #define REG_Shutter_Max_Bound_Upper 0x1f
  52. #define REG_LASER_CTRL0 0x20
  53. #define REG_Observation 0x24
  54. #define REG_Data_Out_Lower 0x25
  55. #define REG_Data_Out_Upper 0x26
  56. #define REG_SROM_ID 0x2a
  57. #define REG_Lift_Detection_Thr 0x2e
  58. #define REG_Configuration_V 0x2f
  59. #define REG_Configuration_IV 0x39
  60. #define REG_Power_Up_Reset 0x3a
  61. #define REG_Shutdown 0x3b
  62. #define REG_Inverse_Product_ID 0x3f
  63. #define REG_Motion_Burst 0x50
  64. #define REG_SROM_Load_Burst 0x62
  65. #define REG_Pixel_Burst 0x64
  66. #define MIN_CPI 200
  67. #define MAX_CPI 8200
  68. #define CPI_STEP 200
  69. #define CLAMP_CPI(value) value<MIN_CPI ? MIN_CPI : value> MAX_CPI ? MAX_CPI : value
  70. #define US_BETWEEN_WRITES 120
  71. #define US_BETWEEN_READS 20
  72. #define US_DELAY_AFTER_ADDR 100
  73. #define US_BEFORE_MOTION 100
  74. #define MSB1 0x80
  75. // clang-format on
  76. const pointing_device_driver_t adns9800_pointing_device_driver = {
  77. .init = adns9800_init,
  78. .get_report = adns9800_get_report_driver,
  79. .set_cpi = adns9800_set_cpi,
  80. .get_cpi = adns9800_get_cpi,
  81. };
  82. uint16_t __attribute__((weak)) adns9800_srom_get_length(void) {
  83. return 0;
  84. }
  85. uint8_t __attribute__((weak)) adns9800_srom_get_byte(uint16_t position) {
  86. return 0;
  87. }
  88. void adns9800_spi_start(void) {
  89. spi_start(ADNS9800_CS_PIN, false, ADNS9800_SPI_MODE, ADNS9800_SPI_DIVISOR);
  90. }
  91. void adns9800_write(uint8_t reg_addr, uint8_t data) {
  92. adns9800_spi_start();
  93. spi_write(reg_addr | MSB1);
  94. spi_write(data);
  95. spi_stop();
  96. wait_us(US_BETWEEN_WRITES);
  97. }
  98. uint8_t adns9800_read(uint8_t reg_addr) {
  99. adns9800_spi_start();
  100. spi_write(reg_addr & 0x7f);
  101. wait_us(US_DELAY_AFTER_ADDR);
  102. uint8_t data = spi_read();
  103. spi_stop();
  104. wait_us(US_BETWEEN_READS);
  105. return data;
  106. }
  107. void adns9800_init(void) {
  108. gpio_set_pin_output(ADNS9800_CS_PIN);
  109. spi_init();
  110. // reboot
  111. adns9800_write(REG_Power_Up_Reset, 0x5a);
  112. wait_ms(50);
  113. // read registers and discard
  114. adns9800_read(REG_Motion);
  115. adns9800_read(REG_Delta_X_L);
  116. adns9800_read(REG_Delta_X_H);
  117. adns9800_read(REG_Delta_Y_L);
  118. adns9800_read(REG_Delta_Y_H);
  119. if (adns9800_srom_get_length() != 0) {
  120. // upload firmware
  121. // 3k firmware mode
  122. adns9800_write(REG_Configuration_IV, 0x02);
  123. // enable initialisation
  124. adns9800_write(REG_SROM_Enable, 0x1d);
  125. // wait a frame
  126. wait_ms(10);
  127. // start SROM download
  128. adns9800_write(REG_SROM_Enable, 0x18);
  129. // write the SROM file
  130. adns9800_spi_start();
  131. spi_write(REG_SROM_Load_Burst | 0x80);
  132. wait_us(15);
  133. // send all bytes of the firmware
  134. for (uint16_t i = 0; i < adns9800_srom_get_length(); i++) {
  135. spi_write(adns9800_srom_get_byte(i));
  136. wait_us(15);
  137. }
  138. spi_stop();
  139. wait_ms(10);
  140. } else {
  141. // write reset value to REG_Configuration_IV
  142. adns9800_write(REG_Configuration_IV, 0x0);
  143. // write reset value to REG_SROM_Enable
  144. adns9800_write(REG_SROM_Enable, 0x0);
  145. // wait a frame
  146. wait_ms(10);
  147. }
  148. // enable laser
  149. uint8_t laser_ctrl0 = adns9800_read(REG_LASER_CTRL0);
  150. adns9800_write(REG_LASER_CTRL0, laser_ctrl0 & 0xf0);
  151. adns9800_set_cpi(ADNS9800_CPI);
  152. }
  153. config_adns9800_t adns9800_get_config(void) {
  154. uint8_t cpival = adns9800_read(REG_Configuration_I);
  155. return (config_adns9800_t){(cpival & 0xFF) * CPI_STEP};
  156. }
  157. void adns9800_set_config(config_adns9800_t config) {
  158. uint8_t config_1 = (CLAMP_CPI(config.cpi) / CPI_STEP) & 0xFF;
  159. adns9800_write(REG_Configuration_I, config_1);
  160. }
  161. uint16_t adns9800_get_cpi(void) {
  162. uint8_t cpival = adns9800_read(REG_Configuration_I);
  163. return (uint16_t)(cpival & 0xFF) * CPI_STEP;
  164. }
  165. void adns9800_set_cpi(uint16_t cpi) {
  166. uint8_t config_1 = (CLAMP_CPI(cpi) / CPI_STEP) & 0xFF;
  167. adns9800_write(REG_Configuration_I, config_1);
  168. }
  169. static int16_t convertDeltaToInt(uint8_t high, uint8_t low) {
  170. // join bytes into twos compliment
  171. uint16_t twos_comp = (high << 8) | low;
  172. // convert twos comp to int
  173. if (twos_comp & 0x8000) return -1 * (~twos_comp + 1);
  174. return twos_comp;
  175. }
  176. report_adns9800_t adns9800_get_report(void) {
  177. report_adns9800_t report = {0};
  178. adns9800_spi_start();
  179. // start burst mode
  180. spi_write(REG_Motion_Burst & 0x7f);
  181. wait_us(US_BEFORE_MOTION);
  182. uint8_t motion = spi_read();
  183. if (motion & 0x80) {
  184. // clear observation register
  185. spi_read();
  186. // delta registers
  187. uint8_t delta_x_l = spi_read();
  188. uint8_t delta_x_h = spi_read();
  189. uint8_t delta_y_l = spi_read();
  190. uint8_t delta_y_h = spi_read();
  191. report.x = convertDeltaToInt(delta_x_h, delta_x_l);
  192. report.y = convertDeltaToInt(delta_y_h, delta_y_l);
  193. }
  194. // clear residual motion
  195. spi_write(REG_Motion & 0x7f);
  196. spi_stop();
  197. return report;
  198. }
  199. report_mouse_t adns9800_get_report_driver(report_mouse_t mouse_report) {
  200. report_adns9800_t sensor_report = adns9800_get_report();
  201. mouse_report.x = CONSTRAIN_HID_XY(sensor_report.x);
  202. mouse_report.y = CONSTRAIN_HID_XY(sensor_report.y);
  203. return mouse_report;
  204. }