is31fl3731-simple.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. /* Copyright 2017 Jason Williams
  2. * Copyright 2018 Jack Humbert
  3. * Copyright 2019 Clueboard
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include "is31fl3731-simple.h"
  19. #include "i2c_master.h"
  20. #include "wait.h"
  21. // This is a 7-bit address, that gets left-shifted and bit 0
  22. // set to 0 for write, 1 for read (as per I2C protocol)
  23. // The address will vary depending on your wiring:
  24. // 0b1110100 AD <-> GND
  25. // 0b1110111 AD <-> VCC
  26. // 0b1110101 AD <-> SCL
  27. // 0b1110110 AD <-> SDA
  28. #define ISSI_ADDR_DEFAULT 0x74
  29. #define ISSI_REG_CONFIG 0x00
  30. #define ISSI_REG_CONFIG_PICTUREMODE 0x00
  31. #define ISSI_REG_CONFIG_AUTOPLAYMODE 0x08
  32. #define ISSI_REG_CONFIG_AUDIOPLAYMODE 0x18
  33. #define ISSI_CONF_PICTUREMODE 0x00
  34. #define ISSI_CONF_AUTOFRAMEMODE 0x04
  35. #define ISSI_CONF_AUDIOMODE 0x08
  36. #define ISSI_REG_PICTUREFRAME 0x01
  37. #define ISSI_REG_SHUTDOWN 0x0A
  38. #define ISSI_REG_AUDIOSYNC 0x06
  39. #define ISSI_COMMANDREGISTER 0xFD
  40. #define ISSI_BANK_FUNCTIONREG 0x0B // helpfully called 'page nine'
  41. #ifndef ISSI_TIMEOUT
  42. # define ISSI_TIMEOUT 100
  43. #endif
  44. #ifndef ISSI_PERSISTENCE
  45. # define ISSI_PERSISTENCE 0
  46. #endif
  47. // Transfer buffer for TWITransmitData()
  48. uint8_t g_twi_transfer_buffer[20];
  49. // These buffers match the IS31FL3731 PWM registers 0x24-0xB3.
  50. // Storing them like this is optimal for I2C transfers to the registers.
  51. // We could optimize this and take out the unused registers from these
  52. // buffers and the transfers in IS31FL3731_write_pwm_buffer() but it's
  53. // probably not worth the extra complexity.
  54. uint8_t g_pwm_buffer[LED_DRIVER_COUNT][144];
  55. bool g_pwm_buffer_update_required[LED_DRIVER_COUNT] = {false};
  56. /* There's probably a better way to init this... */
  57. #if LED_DRIVER_COUNT == 1
  58. uint8_t g_led_control_registers[LED_DRIVER_COUNT][18] = {{0}};
  59. #elif LED_DRIVER_COUNT == 2
  60. uint8_t g_led_control_registers[LED_DRIVER_COUNT][18] = {{0}, {0}};
  61. #elif LED_DRIVER_COUNT == 3
  62. uint8_t g_led_control_registers[LED_DRIVER_COUNT][18] = {{0}, {0}, {0}};
  63. #elif LED_DRIVER_COUNT == 4
  64. uint8_t g_led_control_registers[LED_DRIVER_COUNT][18] = {{0}, {0}, {0}, {0}};
  65. #endif
  66. bool g_led_control_registers_update_required[LED_DRIVER_COUNT] = {false};
  67. // This is the bit pattern in the LED control registers
  68. // (for matrix A, add one to register for matrix B)
  69. //
  70. // reg - b7 b6 b5 b4 b3 b2 b1 b0
  71. // 0x00 - R08,R07,R06,R05,R04,R03,R02,R01
  72. // 0x02 - G08,G07,G06,G05,G04,G03,G02,R00
  73. // 0x04 - B08,B07,B06,B05,B04,B03,G01,G00
  74. // 0x06 - - , - , - , - , - ,B02,B01,B00
  75. // 0x08 - - , - , - , - , - , - , - , -
  76. // 0x0A - B17,B16,B15, - , - , - , - , -
  77. // 0x0C - G17,G16,B14,B13,B12,B11,B10,B09
  78. // 0x0E - R17,G15,G14,G13,G12,G11,G10,G09
  79. // 0x10 - R16,R15,R14,R13,R12,R11,R10,R09
  80. void IS31FL3731_write_register(uint8_t addr, uint8_t reg, uint8_t data) {
  81. g_twi_transfer_buffer[0] = reg;
  82. g_twi_transfer_buffer[1] = data;
  83. #if ISSI_PERSISTENCE > 0
  84. for (uint8_t i = 0; i < ISSI_PERSISTENCE; i++) {
  85. if (i2c_transmit(addr << 1, g_twi_transfer_buffer, 2, ISSI_TIMEOUT) == 0) {
  86. break;
  87. }
  88. }
  89. #else
  90. i2c_transmit(addr << 1, g_twi_transfer_buffer, 2, ISSI_TIMEOUT);
  91. #endif
  92. }
  93. void IS31FL3731_write_pwm_buffer(uint8_t addr, uint8_t *pwm_buffer) {
  94. // assumes bank is already selected
  95. // transmit PWM registers in 9 transfers of 16 bytes
  96. // g_twi_transfer_buffer[] is 20 bytes
  97. // iterate over the pwm_buffer contents at 16 byte intervals
  98. for (int i = 0; i < 144; i += 16) {
  99. // set the first register, e.g. 0x24, 0x34, 0x44, etc.
  100. g_twi_transfer_buffer[0] = 0x24 + i;
  101. // copy the data from i to i+15
  102. // device will auto-increment register for data after the first byte
  103. // thus this sets registers 0x24-0x33, 0x34-0x43, etc. in one transfer
  104. for (int j = 0; j < 16; j++) {
  105. g_twi_transfer_buffer[1 + j] = pwm_buffer[i + j];
  106. }
  107. #if ISSI_PERSISTENCE > 0
  108. for (uint8_t i = 0; i < ISSI_PERSISTENCE; i++) {
  109. if (i2c_transmit(addr << 1, g_twi_transfer_buffer, 17, ISSI_TIMEOUT) == 0) break;
  110. }
  111. #else
  112. i2c_transmit(addr << 1, g_twi_transfer_buffer, 17, ISSI_TIMEOUT);
  113. #endif
  114. }
  115. }
  116. void IS31FL3731_init(uint8_t addr) {
  117. // In order to avoid the LEDs being driven with garbage data
  118. // in the LED driver's PWM registers, first enable software shutdown,
  119. // then set up the mode and other settings, clear the PWM registers,
  120. // then disable software shutdown.
  121. // select "function register" bank
  122. IS31FL3731_write_register(addr, ISSI_COMMANDREGISTER, ISSI_BANK_FUNCTIONREG);
  123. // enable software shutdown
  124. IS31FL3731_write_register(addr, ISSI_REG_SHUTDOWN, 0x00);
  125. // this delay was copied from other drivers, might not be needed
  126. wait_ms(10);
  127. // picture mode
  128. IS31FL3731_write_register(addr, ISSI_REG_CONFIG, ISSI_REG_CONFIG_PICTUREMODE);
  129. // display frame 0
  130. IS31FL3731_write_register(addr, ISSI_REG_PICTUREFRAME, 0x00);
  131. // audio sync off
  132. IS31FL3731_write_register(addr, ISSI_REG_AUDIOSYNC, 0x00);
  133. // select bank 0
  134. IS31FL3731_write_register(addr, ISSI_COMMANDREGISTER, 0);
  135. // turn off all LEDs in the LED control register
  136. for (int i = 0x00; i <= 0x11; i++) {
  137. IS31FL3731_write_register(addr, i, 0x00);
  138. }
  139. // turn off all LEDs in the blink control register (not really needed)
  140. for (int i = 0x12; i <= 0x23; i++) {
  141. IS31FL3731_write_register(addr, i, 0x00);
  142. }
  143. // set PWM on all LEDs to 0
  144. for (int i = 0x24; i <= 0xB3; i++) {
  145. IS31FL3731_write_register(addr, i, 0x00);
  146. }
  147. // select "function register" bank
  148. IS31FL3731_write_register(addr, ISSI_COMMANDREGISTER, ISSI_BANK_FUNCTIONREG);
  149. // disable software shutdown
  150. IS31FL3731_write_register(addr, ISSI_REG_SHUTDOWN, 0x01);
  151. // select bank 0 and leave it selected.
  152. // most usage after initialization is just writing PWM buffers in bank 0
  153. // as there's not much point in double-buffering
  154. IS31FL3731_write_register(addr, ISSI_COMMANDREGISTER, 0);
  155. }
  156. void IS31FL3731_set_value(int index, uint8_t value) {
  157. if (index >= 0 && index < DRIVER_LED_TOTAL) {
  158. is31_led led = g_is31_leds[index];
  159. // Subtract 0x24 to get the second index of g_pwm_buffer
  160. g_pwm_buffer[led.driver][led.v - 0x24] = value;
  161. g_pwm_buffer_update_required[led.driver] = true;
  162. }
  163. }
  164. void IS31FL3731_set_value_all(uint8_t value) {
  165. for (int i = 0; i < DRIVER_LED_TOTAL; i++) {
  166. IS31FL3731_set_value(i, value);
  167. }
  168. }
  169. void IS31FL3731_set_led_control_register(uint8_t index, bool value) {
  170. is31_led led = g_is31_leds[index];
  171. uint8_t control_register = (led.v - 0x24) / 8;
  172. uint8_t bit_value = (led.v - 0x24) % 8;
  173. if (value) {
  174. g_led_control_registers[led.driver][control_register] |= (1 << bit_value);
  175. } else {
  176. g_led_control_registers[led.driver][control_register] &= ~(1 << bit_value);
  177. }
  178. g_led_control_registers_update_required[led.driver] = true;
  179. }
  180. void IS31FL3731_update_pwm_buffers(uint8_t addr, uint8_t index) {
  181. if (g_pwm_buffer_update_required[index]) {
  182. IS31FL3731_write_pwm_buffer(addr, g_pwm_buffer[index]);
  183. g_pwm_buffer_update_required[index] = false;
  184. }
  185. }
  186. void IS31FL3731_update_led_control_registers(uint8_t addr, uint8_t index) {
  187. if (g_led_control_registers_update_required[index]) {
  188. for (int i = 0; i < 18; i++) {
  189. IS31FL3731_write_register(addr, i, g_led_control_registers[index][i]);
  190. }
  191. g_led_control_registers_update_required[index] = false;
  192. }
  193. }