You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

240 lines
6.7 KiB

  1. /*
  2. Copyright 2012 Jun Wako <wakojun@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 "hal.h"
  15. #include "led_custom.h"
  16. #include "rev6.h"
  17. #include "printf.h"
  18. static void breathing_callback(PWMDriver *pwmp);
  19. static PWMConfig pwmCFG = {
  20. 0xFFFF, /* PWM clock frequency */
  21. 256, /* PWM period (in ticks) 1S (1/10kHz=0.1mS 0.1ms*10000 ticks=1S) */
  22. NULL, /* No Callback */
  23. {
  24. {PWM_OUTPUT_DISABLED, NULL},
  25. {PWM_OUTPUT_DISABLED, NULL},
  26. {PWM_OUTPUT_ACTIVE_HIGH, NULL}, /* Enable Channel 3 */
  27. {PWM_OUTPUT_DISABLED, NULL}
  28. },
  29. 0, /* HW dependent part.*/
  30. 0
  31. };
  32. static PWMConfig pwmCFG_breathing = {
  33. 0xFFFF, /* 10kHz PWM clock frequency */
  34. 256, /* PWM period (in ticks) 1S (1/10kHz=0.1mS 0.1ms*10000 ticks=1S) */
  35. breathing_callback, /* Breathing Callback */
  36. {
  37. {PWM_OUTPUT_DISABLED, NULL},
  38. {PWM_OUTPUT_DISABLED, NULL},
  39. {PWM_OUTPUT_ACTIVE_HIGH, NULL}, /* Enable Channel 3 */
  40. {PWM_OUTPUT_DISABLED, NULL}
  41. },
  42. 0, /* HW dependent part.*/
  43. 0
  44. };
  45. // See http://jared.geek.nz/2013/feb/linear-led-pwm
  46. static uint16_t cie_lightness(uint16_t v) {
  47. if (v <= 5243) // if below 8% of max
  48. return v / 9; // same as dividing by 900%
  49. else {
  50. uint32_t y = (((uint32_t)v + 10486) << 8) / (10486 + 0xFFFFUL); // add 16% of max and compare
  51. // to get a useful result with integer division, we shift left in the expression above
  52. // and revert what we've done again after squaring.
  53. y = y * y * y >> 8;
  54. if (y > 0xFFFFUL) // prevent overflow
  55. return 0xFFFFU;
  56. else
  57. return (uint16_t)y;
  58. }
  59. }
  60. void backlight_init_ports(void) {
  61. palSetPadMode(GPIOB, 8, PAL_MODE_ALTERNATE(2));
  62. pwmStart(&PWMD4, &pwmCFG);
  63. if (kb_backlight_config.enable) {
  64. if (kb_backlight_config.breathing) {
  65. breathing_enable();
  66. } else {
  67. backlight_set(kb_backlight_config.level);
  68. }
  69. } else {
  70. backlight_set(0);
  71. }
  72. }
  73. void backlight_set(uint8_t level) {
  74. uint32_t duty = (uint32_t)(cie_lightness(0xFFFF * (uint32_t)level / BACKLIGHT_LEVELS));
  75. if (level == 0) {
  76. // Turn backlight off
  77. // Disable channel 3 on PWM4
  78. pwmDisableChannel(&PWMD4, 2);
  79. } else {
  80. // Turn backlight on
  81. if (!is_breathing()) {
  82. // Enable channel 3 on PWM4
  83. pwmEnableChannel(&PWMD4, 2, PWM_FRACTION_TO_WIDTH(&PWMD4, 0xFFFF, duty));
  84. }
  85. }
  86. }
  87. uint8_t backlight_tick = 0;
  88. void backlight_task(void) {
  89. }
  90. #define BREATHING_NO_HALT 0
  91. #define BREATHING_HALT_OFF 1
  92. #define BREATHING_HALT_ON 2
  93. #define BREATHING_STEPS 128
  94. static uint8_t breathing_period = BREATHING_PERIOD;
  95. static uint8_t breathing_halt = BREATHING_NO_HALT;
  96. static uint16_t breathing_counter = 0;
  97. bool is_breathing(void) {
  98. return PWMD4.config == &pwmCFG_breathing;
  99. }
  100. #define breathing_min() do {breathing_counter = 0;} while (0)
  101. #define breathing_max() do {breathing_counter = breathing_period * 256 / 2;} while (0)
  102. void breathing_interrupt_enable(void){
  103. pwmStop(&PWMD4);
  104. pwmStart(&PWMD4, &pwmCFG_breathing);
  105. chSysLockFromISR();
  106. pwmEnablePeriodicNotification(&PWMD4);
  107. pwmEnableChannelI(
  108. &PWMD4,
  109. 2,
  110. PWM_FRACTION_TO_WIDTH(
  111. &PWMD4,
  112. 0xFFFF,
  113. 0xFFFF
  114. )
  115. );
  116. chSysUnlockFromISR();
  117. }
  118. void breathing_interrupt_disable(void){
  119. pwmStop(&PWMD4);
  120. pwmStart(&PWMD4, &pwmCFG);
  121. }
  122. void breathing_enable(void)
  123. {
  124. breathing_counter = 0;
  125. breathing_halt = BREATHING_NO_HALT;
  126. breathing_interrupt_enable();
  127. }
  128. void breathing_pulse(void)
  129. {
  130. if (kb_backlight_config.level == 0)
  131. breathing_min();
  132. else
  133. breathing_max();
  134. breathing_halt = BREATHING_HALT_ON;
  135. breathing_interrupt_enable();
  136. }
  137. void breathing_disable(void)
  138. {
  139. breathing_interrupt_disable();
  140. // Restore backlight level
  141. backlight_set(kb_backlight_config.level);
  142. }
  143. void breathing_self_disable(void)
  144. {
  145. if (kb_backlight_config.level == 0)
  146. breathing_halt = BREATHING_HALT_OFF;
  147. else
  148. breathing_halt = BREATHING_HALT_ON;
  149. }
  150. void breathing_toggle(void) {
  151. if (is_breathing()){
  152. breathing_disable();
  153. } else {
  154. breathing_enable();
  155. }
  156. }
  157. void breathing_period_set(uint8_t value)
  158. {
  159. if (!value)
  160. value = 1;
  161. breathing_period = value;
  162. }
  163. void breathing_period_default(void) {
  164. breathing_period_set(BREATHING_PERIOD);
  165. }
  166. void breathing_period_inc(void)
  167. {
  168. breathing_period_set(breathing_period+1);
  169. }
  170. void breathing_period_dec(void)
  171. {
  172. breathing_period_set(breathing_period-1);
  173. }
  174. /* To generate breathing curve in python:
  175. * from math import sin, pi; [int(sin(x/128.0*pi)**4*255) for x in range(128)]
  176. */
  177. static const uint8_t breathing_table[BREATHING_STEPS] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 17, 20, 24, 28, 32, 36, 41, 46, 51, 57, 63, 70, 76, 83, 91, 98, 106, 113, 121, 129, 138, 146, 154, 162, 170, 178, 185, 193, 200, 207, 213, 220, 225, 231, 235, 240, 244, 247, 250, 252, 253, 254, 255, 254, 253, 252, 250, 247, 244, 240, 235, 231, 225, 220, 213, 207, 200, 193, 185, 178, 170, 162, 154, 146, 138, 129, 121, 113, 106, 98, 91, 83, 76, 70, 63, 57, 51, 46, 41, 36, 32, 28, 24, 20, 17, 15, 12, 10, 8, 6, 5, 4, 3, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
  178. // Use this before the cie_lightness function.
  179. static inline uint16_t scale_backlight(uint16_t v) {
  180. return v / BACKLIGHT_LEVELS * kb_backlight_config.level;
  181. }
  182. static void breathing_callback(PWMDriver *pwmp)
  183. {
  184. (void)pwmp;
  185. uint16_t interval = (uint16_t) breathing_period * 256 / BREATHING_STEPS;
  186. // resetting after one period to prevent ugly reset at overflow.
  187. breathing_counter = (breathing_counter + 1) % (breathing_period * 256);
  188. uint8_t index = breathing_counter / interval % BREATHING_STEPS;
  189. if (((breathing_halt == BREATHING_HALT_ON) && (index == BREATHING_STEPS / 2)) ||
  190. ((breathing_halt == BREATHING_HALT_OFF) && (index == BREATHING_STEPS - 1)))
  191. {
  192. breathing_interrupt_disable();
  193. }
  194. uint32_t duty = cie_lightness(scale_backlight(breathing_table[index] * 256));
  195. chSysLockFromISR();
  196. pwmEnableChannelI(
  197. &PWMD4,
  198. 2,
  199. PWM_FRACTION_TO_WIDTH(
  200. &PWMD4,
  201. 0xFFFF,
  202. duty
  203. )
  204. );
  205. chSysUnlockFromISR();
  206. }