Keyboard firmwares for Atmel AVR and Cortex-M
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.

sleep_led.c 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. #include "ch.h"
  2. #include "hal.h"
  3. #include "led.h"
  4. #include "sleep_led.h"
  5. #if defined(KL2x) || defined(K20x) /* platform selection: familiar Kinetis chips */
  6. /* All right, we go the "software" way: LP timer, toggle LED in interrupt.
  7. * Based on hasu's code for AVRs.
  8. */
  9. /* Breathing Sleep LED brighness(PWM On period) table
  10. * (64[steps] * 4[duration]) / 64[PWM periods/s] = 4 second breath cycle
  11. *
  12. * http://www.wolframalpha.com/input/?i=%28sin%28+x%2F64*pi%29**8+*+255%2C+x%3D0+to+63
  13. * (0..63).each {|x| p ((sin(x/64.0*PI)**8)*255).to_i }
  14. */
  15. static const uint8_t breathing_table[64] = {
  16. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 4, 6, 10,
  17. 15, 23, 32, 44, 58, 74, 93, 113, 135, 157, 179, 199, 218, 233, 245, 252,
  18. 255, 252, 245, 233, 218, 199, 179, 157, 135, 113, 93, 74, 58, 44, 32, 23,
  19. 15, 10, 6, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  20. };
  21. /* Low Power Timer interrupt handler */
  22. OSAL_IRQ_HANDLER(KINETIS_LPTMR0_IRQ_VECTOR) {
  23. OSAL_IRQ_PROLOGUE();
  24. /* Software PWM
  25. * timer:1111 1111 1111 1111
  26. * \_____/\/ \_______/____ count(0-255)
  27. * \ \______________ duration of step(4)
  28. * \__________________ index of step table(0-63)
  29. */
  30. // this works for cca 65536 irqs/sec
  31. static union {
  32. uint16_t row;
  33. struct {
  34. uint8_t count:8;
  35. uint8_t duration:2;
  36. uint8_t index:6;
  37. } pwm;
  38. } timer = { .row = 0 };
  39. timer.row++;
  40. // LED on
  41. if (timer.pwm.count == 0) {
  42. led_set(1<<USB_LED_CAPS_LOCK);
  43. }
  44. // LED off
  45. if (timer.pwm.count == breathing_table[timer.pwm.index]) {
  46. led_set(0);
  47. }
  48. /* Reset the counter */
  49. LPTMR0->CSR |= LPTMRx_CSR_TCF;
  50. OSAL_IRQ_EPILOGUE();
  51. }
  52. /* LPTMR clock options */
  53. #define LPTMR_CLOCK_MCGIRCLK 0 /* 4MHz clock */
  54. #define LPTMR_CLOCK_LPO 1 /* 1kHz clock */
  55. #define LPTMR_CLOCK_ERCLK32K 2 /* external 32kHz crystal */
  56. #define LPTMR_CLOCK_OSCERCLK 3 /* output from OSC */
  57. /* Work around inconsistencies in Freescale naming */
  58. #if !defined(SIM_SCGC5_LPTMR)
  59. #define SIM_SCGC5_LPTMR SIM_SCGC5_LPTIMER
  60. #endif
  61. /* Initialise the timer */
  62. void sleep_led_init(void) {
  63. /* Make sure the clock to the LPTMR is enabled */
  64. SIM->SCGC5 |= SIM_SCGC5_LPTMR;
  65. /* Reset LPTMR settings */
  66. LPTMR0->CSR = 0;
  67. /* Set the compare value */
  68. LPTMR0->CMR = 0; // trigger on counter value (i.e. every time)
  69. /* Set up clock source and prescaler */
  70. /* Software PWM
  71. * ______ ______ __
  72. * | ON |___OFF___| ON |___OFF___| ....
  73. * |<-------------->|<-------------->|<- ....
  74. * PWM period PWM period
  75. *
  76. * R interrupts/period[resolution]
  77. * F periods/second[frequency]
  78. * R * F interrupts/second
  79. */
  80. /* === OPTION 1 === */
  81. #if 0
  82. // 1kHz LPO
  83. // No prescaler => 1024 irqs/sec
  84. // Note: this is too slow for a smooth breathe
  85. LPTMR0->PSR = LPTMRx_PSR_PCS(LPTMR_CLOCK_LPO)|LPTMRx_PSR_PBYP;
  86. #endif /* OPTION 1 */
  87. /* === OPTION 2 === */
  88. #if 1
  89. // nMHz IRC (n=4 on KL25Z, KL26Z and K20x; n=2 or 8 on KL27Z)
  90. MCG->C2 |= MCG_C2_IRCS; // fast (4MHz) internal ref clock
  91. #if defined(KL27) // divide the 8MHz IRC by 2, to have the same MCGIRCLK speed as others
  92. MCG->MC |= MCG_MC_LIRC_DIV2_DIV2;
  93. #endif /* KL27 */
  94. MCG->C1 |= MCG_C1_IRCLKEN; // enable internal ref clock
  95. // to work in stop mode, also MCG_C1_IREFSTEN
  96. // Divide 4MHz by 2^N (N=6) => 62500 irqs/sec =>
  97. // => approx F=61, R=256, duration = 4
  98. LPTMR0->PSR = LPTMRx_PSR_PCS(LPTMR_CLOCK_MCGIRCLK)|LPTMRx_PSR_PRESCALE(6);
  99. #endif /* OPTION 2 */
  100. /* === OPTION 3 === */
  101. #if 0
  102. // OSC output (external crystal), usually 8MHz or 16MHz
  103. OSC0->CR |= OSC_CR_ERCLKEN; // enable ext ref clock
  104. // to work in stop mode, also OSC_CR_EREFSTEN
  105. // Divide by 2^N
  106. LPTMR0->PSR = LPTMRx_PSR_PCS(LPTMR_CLOCK_OSCERCLK)|LPTMRx_PSR_PRESCALE(7);
  107. #endif /* OPTION 3 */
  108. /* === END OPTIONS === */
  109. /* Interrupt on TCF set (compare flag) */
  110. nvicEnableVector(LPTMR0_IRQn, 2); // vector, priority
  111. LPTMR0->CSR |= LPTMRx_CSR_TIE;
  112. }
  113. void sleep_led_enable(void) {
  114. /* Enable the timer */
  115. LPTMR0->CSR |= LPTMRx_CSR_TEN;
  116. }
  117. void sleep_led_disable(void) {
  118. /* Disable the timer */
  119. LPTMR0->CSR &= ~LPTMRx_CSR_TEN;
  120. }
  121. void sleep_led_toggle(void) {
  122. /* Toggle the timer */
  123. LPTMR0->CSR ^= LPTMRx_CSR_TEN;
  124. }
  125. #else /* platform selection: not on familiar Kinetis chips */
  126. void sleep_led_init(void) {
  127. }
  128. void sleep_led_enable(void) {
  129. led_set(1<<USB_LED_CAPS_LOCK);
  130. }
  131. void sleep_led_disable(void) {
  132. led_set(0);
  133. }
  134. void sleep_led_toggle(void) {
  135. // not implemented
  136. }
  137. #endif /* platform selection */