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.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. /* LP 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
  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 = 1; // 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. // for 1kHz LPO
  82. // No prescaler => 1024 irqs/sec
  83. // LPTMR0->PSR = LPTMRx_PSR_PCS(LPTMR_CLOCK_LPO)|LPTMRx_PSR_PBYP;
  84. /* === OPTION 2 === */
  85. // for nMHz IRC (n=4 on KL25Z, KL26Z and K20x; n=2 or 8 on KL27Z)
  86. MCG->C2 |= MCG_C2_IRCS; // fast (4MHz) internal ref clock
  87. #if defined(KL27Z) // divide the 8MHz IRC by 2, to have the same MCGIRCLK speed as others
  88. MCG->MC |= MCG_MC_LIRC_DIV2_DIV2;
  89. #endif /* KL27Z */
  90. MCG->C1 |= MCG_C1_IRCLKEN; // enable internal ref clock
  91. // to work in stop mode, also MCG_C1_IREFSTEN
  92. // Divide 4MHz by 2^N (N=5) => 62500 irqs/sec =>
  93. // => approx F=61, R=256, duration = 4
  94. LPTMR0->PSR = LPTMRx_PSR_PCS(LPTMR_CLOCK_MCGIRCLK)|LPTMRx_PSR_PRESCALE(5);
  95. /* === OPTION 3 === */
  96. // for OSC output (external crystal), usually 8MHz or 16MHz
  97. // OSC0->CR |= OSC_CR_ERCLKEN; // enable ext ref clock
  98. // to work in stop mode, also OSC_CR_EREFSTEN
  99. // Divide by 2^N
  100. // LPTMR0->PSR = LPTMRx_PSR_PCS(LPTMR_CLOCK_OSCERCLK)|LPTMRx_PSR_PRESCALE(7);
  101. /* === END OPTIONS === */
  102. /* Interrupt on TCF set (compare flag) */
  103. nvicEnableVector(LPTMR0_IRQn, 2); // vector, priority
  104. LPTMR0->CSR |= LPTMRx_CSR_TIE;
  105. }
  106. void sleep_led_enable(void) {
  107. /* Enable the timer */
  108. LPTMR0->CSR |= LPTMRx_CSR_TEN;
  109. }
  110. void sleep_led_disable(void) {
  111. /* Disable the timer */
  112. LPTMR0->CSR &= ~LPTMRx_CSR_TEN;
  113. }
  114. void sleep_led_toggle(void) {
  115. /* Toggle the timer */
  116. LPTMR0->CSR ^= LPTMRx_CSR_TEN;
  117. }
  118. #else /* platform selection: not on familiar Kinetis chips */
  119. void sleep_led_init(void) {
  120. }
  121. void sleep_led_enable(void) {
  122. led_set(1<<USB_LED_CAPS_LOCK);
  123. }
  124. void sleep_led_disable(void) {
  125. led_set(0);
  126. }
  127. void sleep_led_toggle(void) {
  128. // not implemented
  129. }
  130. #endif /* platform selection */