Skip to content

Commit c9a56f9

Browse files
committed
Merge remote-tracking branch 'flabbergast/chibios' into develop
Conflicts: protocol/chibios/README.md
2 parents c286d8c + 62b5401 commit c9a56f9

File tree

5 files changed

+87
-22
lines changed

5 files changed

+87
-22
lines changed

common/chibios/bootloader.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ void bootloader_jump(void) {
4242
#endif /* defined(KIIBOHD_BOOTLOADER) */
4343

4444
#else /* neither STM32 nor KINETIS */
45+
__attribute__((weak))
4546
void bootloader_jump(void) {}
4647
#endif

common/chibios/sleep_led.c

Lines changed: 68 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,27 @@
44
#include "led.h"
55
#include "sleep_led.h"
66

7-
#if defined(KL2x) || defined(K20x) /* platform selection: familiar Kinetis chips */
8-
/* All right, we go the "software" way: LP timer, toggle LED in interrupt.
7+
/* All right, we go the "software" way: timer, toggle LED in interrupt.
98
* Based on hasu's code for AVRs.
9+
* Use LP timer on Kinetises, TIM14 on STM32F0.
1010
*/
1111

12+
#if defined(KL2x) || defined(K20x)
13+
14+
/* Use Low Power Timer (LPTMR) */
15+
#define TIMER_INTERRUPT_VECTOR KINETIS_LPTMR0_IRQ_VECTOR
16+
#define RESET_COUNTER LPTMR0->CSR |= LPTMRx_CSR_TCF
17+
18+
#elif defined(STM32F0XX)
19+
20+
/* Use TIM14 manually */
21+
#define TIMER_INTERRUPT_VECTOR STM32_TIM14_HANDLER
22+
#define RESET_COUNTER STM32_TIM14->SR &= ~STM32_TIM_SR_UIF
23+
24+
#endif
25+
26+
#if defined(KL2x) || defined(K20x) || defined(STM32F0XX) /* common parts for timers/interrupts */
27+
1228
/* Breathing Sleep LED brighness(PWM On period) table
1329
* (64[steps] * 4[duration]) / 64[PWM periods/s] = 4 second breath cycle
1430
*
@@ -22,8 +38,8 @@ static const uint8_t breathing_table[64] = {
2238
15, 10, 6, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
2339
};
2440

25-
/* Low Power Timer interrupt handler */
26-
OSAL_IRQ_HANDLER(KINETIS_LPTMR0_IRQ_VECTOR) {
41+
/* interrupt handler */
42+
OSAL_IRQ_HANDLER(TIMER_INTERRUPT_VECTOR) {
2743
OSAL_IRQ_PROLOGUE();
2844

2945
/* Software PWM
@@ -55,11 +71,16 @@ OSAL_IRQ_HANDLER(KINETIS_LPTMR0_IRQ_VECTOR) {
5571
}
5672

5773
/* Reset the counter */
58-
LPTMR0->CSR |= LPTMRx_CSR_TCF;
74+
RESET_COUNTER;
5975

6076
OSAL_IRQ_EPILOGUE();
6177
}
6278

79+
#endif /* common parts for known platforms */
80+
81+
82+
#if defined(KL2x) || defined(K20x) /* platform selection: familiar Kinetis chips */
83+
6384
/* LPTMR clock options */
6485
#define LPTMR_CLOCK_MCGIRCLK 0 /* 4MHz clock */
6586
#define LPTMR_CLOCK_LPO 1 /* 1kHz clock */
@@ -144,7 +165,48 @@ void sleep_led_toggle(void) {
144165
LPTMR0->CSR ^= LPTMRx_CSR_TEN;
145166
}
146167

147-
#else /* platform selection: not on familiar Kinetis chips */
168+
#elif defined(STM32F0XX) /* platform selection: STM32F0XX */
169+
170+
/* Initialise the timer */
171+
void sleep_led_init(void) {
172+
/* enable clock */
173+
rccEnableTIM14(FALSE); /* low power enable = FALSE */
174+
rccResetTIM14();
175+
176+
/* prescale */
177+
/* Assuming 48MHz internal clock */
178+
/* getting cca 65484 irqs/sec */
179+
STM32_TIM14->PSC = 733;
180+
181+
/* auto-reload */
182+
/* 0 => interrupt every time */
183+
STM32_TIM14->ARR = 3;
184+
185+
/* enable counter update event interrupt */
186+
STM32_TIM14->DIER |= STM32_TIM_DIER_UIE;
187+
188+
/* register interrupt vector */
189+
nvicEnableVector(STM32_TIM14_NUMBER, 2); /* vector, priority */
190+
}
191+
192+
void sleep_led_enable(void) {
193+
/* Enable the timer */
194+
STM32_TIM14->CR1 = STM32_TIM_CR1_CEN | STM32_TIM_CR1_URS;
195+
/* URS => update event only on overflow; setting UG bit disabled */
196+
}
197+
198+
void sleep_led_disable(void) {
199+
/* Disable the timer */
200+
STM32_TIM14->CR1 = 0;
201+
}
202+
203+
void sleep_led_toggle(void) {
204+
/* Toggle the timer */
205+
STM32_TIM14->CR1 ^= STM32_TIM_CR1_CEN;
206+
}
207+
208+
209+
#else /* platform selection: not on familiar chips */
148210

149211
void sleep_led_init(void) {
150212
}

protocol/chibios/README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
## TMK running on top of ChibiOS
22

3+
This code can be used to run TMK keyboard logic on top of [ChibiOS], meaning that you can run TMK on whatever [ChibiOS] supports. The notable examples are ARM-based Teensies (3.x and LC) and on the boards with STM32 MCUs.
4+
5+
### Usage
6+
7+
- To use, unpack or symlink [ChibiOS] to `tmk_core/tool/chibios/chibios`. For Kinetis support (this means Teensies, Infinity keyboard, WhiteFox keyboard), you'll need a fork which implements the USB driver, e.g. [this one](https://github.com/flabbergast/ChibiOS/tree/kinetis).
8+
- You will also need to install an ARM toolchain, for instance from [here](https://launchpad.net/gcc-arm-embedded). On linux, this is usually also present as a package for your distribution (as `gcc-arm` or something similar). On OS X, you can use [homebrew](http://brew.sh/) with an appropriate tap.
9+
310
### Notes
411

5-
- To use, unpack, symlink or add a submodule of [ChibiOS] {currently 3.0.2} to `tmk_core/tool/chibios/chibios`. For Kinetis support, you'll need a fork which implements the USB driver, e.g. [this one](https://github.com/flabbergast/ChibiOS/tree/kinetis).
12+
- Some comments about ChibiOS syntax and the most commonly used GPIO functions are, as well as an example for ARM Teensies, is [here](https://github.com/tmk/tmk_keyboard/blob/master/keyboard/teensy_lc_onekey/instructions.md).
613
- For gcc options, inspect `tmk_core/tool/chibios/chibios.mk`. For instance, I enabled `-Wno-missing-field-initializers`, because TMK common bits generated a lot of warnings on that.
714
Also pay attention to `-O0` (enabled for debugging); for deployment use `-O2`.
815
- USB string descriptors are messy. I did not find a way to cleanly generate the right structures from actual strings, so the definitions in individual keyboards' `config.h` are ugly as heck.
9-
- There are some random constants left so far, e.g. 5ms sleep between calling `keyboard_task`, or 1.5sec wait for USB init, in `main.c`. There should be no such in `usb_main.c` (the main USB stack). Everything is based on timers/interrupts/kernel scheduling (well except `keyboard_task`), so no periodically called things (again, except `keyboard_task`, which is just how TMK is designed).
1016
- It is easy to add some code for testing (e.g. blink LED, do stuff on button press, etc...) - just create another thread in `main.c`, it will run independently of the keyboard business.
11-
- Jumping to (the built-in) bootloaders on STM32 works, but it is not entirely pleasant, since it is very much MCU dependent. So, one needs to dig out the right address to jump to, and either pass it to the compiler in the `Makefile`, or better, define it in `<your_kb>/bootloader_defs.h`. Also, a patch to upstream ChibiOS is needed (supplied), because it `ResetHandler` needs adjusting.
12-
- Sleep LED works, but at the moment only on/off, i.e. no breathing.
17+
- Jumping to (the built-in) bootloaders on STM32 works, but it is not entirely pleasant, since it is very much MCU dependent. So, one needs to dig out the right address to jump to, and either pass it to the compiler in the `Makefile`, or better, define it in `<your_kb>/bootloader_defs.h`. An additional startup code is also needed; the best way to deal with this is to define custom board files. (Example forthcoming.)
1318

1419
### Experimental pre-ChibiOS 4 support
1520
- As an alternative to the mentioned flabbergast branch above, you can use the [master branch of ChibiOS](https://github.com/ChibiOS/ChibiOS).
@@ -19,9 +24,7 @@ Also pay attention to `-O0` (enabled for debugging); for deployment use `-O2`.
1924

2025
### Immediate todo
2126

22-
- host-wakeup packet sending during suspend
23-
- power saving for suspend?
24-
- PWM for sleep led
27+
- power saving for suspend
2528

2629
### Not tested, but possibly working
2730

@@ -33,14 +36,14 @@ Also pay attention to `-O0` (enabled for debugging); for deployment use `-O2`.
3336

3437
### Tried with
3538

36-
- ChibiOS 3.0.1, 3.0.2 and ST F072RB DISCOVERY board.
37-
- Need to test on other STM32 chips (F3, F4) to make it as much chip-independent as possible.
38-
- ChibiOS with Kinetis patches and Teensy LC and 3.0.
39+
- Infinity, WhiteFox keyboards
40+
- all ARM-based Teensies
41+
- some STM32-based boards (e.g. ST-F072RB-DISCOVERY board, STM32F042 breakout board, Maple Mini (STM32F103-based))
3942

40-
## ChibiOS-supported MCUs (as of 3.0.2)
43+
## ChibiOS-supported MCUs
4144

4245
- Pretty much all STM32 chips.
43-
- There is some support for K20x and KL2x Freescale chips (i.e. Teensy 3.x/LC, mchck, FRDM-KL2{5,6}Z, FRDM-K20D50M), but again, no official USB stack yet. However the `kinetis` branch of [my ChibiOS fork](https://github.com/flabbergast/ChibiOS). With this fork, TMK work normally on all the ARM Teensies.
46+
- There is some support for K20x and KL2x Freescale chips (i.e. Teensy 3.x/LC, mchck, FRDM-KL2{5,6}Z, FRDM-K20D50M), but again, no official USB stack yet. However the `kinetis` branch of [flabbergast's ChibiOS fork](https://github.com/flabbergast/ChibiOS). With this fork, TMK work normally on all the ARM Teensies.
4447
- There is also support for AVR8, but the USB stack is not implemented for them yet, and also the kernel itself takes about 1k of RAM. I think people managed to get ChibiOS running on atmega32[8p/u4] though.
4548
- I've seen community support for Nordic NRF51822 (the chip in Adafruit's Bluefruit bluetooth-low-energy boards), but not sure about the extent.
4649

@@ -49,7 +52,6 @@ Also pay attention to `-O0` (enabled for debugging); for deployment use `-O2`.
4952
- STM32F0x2 chips can do crystal-less USB, but they still need a 3.3V voltage regulator.
5053
- The BOOT0 pin should be tied to GND.
5154
- For a hardware way of accessing the in-built DFU bootloader, in addition to the reset button, put another button between the BOOT0 pin and 3V3.
52-
- For breathing the caps lock LED during the suspended state ("sleep LED"), it is desirable to have that LED on a hardware PWM pin (there's usually plenty of those, look for TIMERs in the datasheet). However this is not strictly necessary, because instead of direct output of a timer to a pin (better of course), it is easy to define timer callbacks in ChibiOS that turn on/off an arbitrary pin.
5355

5456

5557

tool/chibios/chibios.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ endif
3535

3636
# Enable this if you want link time optimizations (LTO)
3737
ifeq ($(USE_LTO),)
38-
USE_LTO = yes
38+
USE_LTO = no
3939
endif
4040

4141
# If enabled, this option allows to compile the application in THUMB mode.

tool/chibios/common.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ endif
8080
OPT_DEFS += -DVERSION=$(shell (git describe --always --dirty || echo 'unknown') 2> /dev/null)
8181

8282
# Bootloader address
83-
ifdef BOOTLOADER_ADDRESS
84-
OPT_DEFS += -DBOOTLOADER_ADDRESS=$(BOOTLOADER_ADDRESS)
83+
ifdef STM32_BOOTLOADER_ADDRESS
84+
OPT_DEFS += -DSTM32_BOOTLOADER_ADDRESS=$(STM32_BOOTLOADER_ADDRESS)
8585
endif

0 commit comments

Comments
 (0)