qmk_firmware/platforms/chibios/bootloaders
Stefan Kerkmann 3f5dc47296
[Core] Use polled waiting on ChibiOS platforms that support it (#17607)
* Use polled waiting on platforms that support it

Due to context switching overhead waiting a very short amount of time on
a sleeping thread is often not accurate and in fact not usable for timing
critical usage i.e. in a driver. Thus we use polled waiting for ranges
in the us range on platforms that support it instead. The fallback is
the thread sleeping mechanism.

This includes:

* ARM platforms with CYCCNT register (ARMv7, ARMv8) this is
  incremented at CPU clock frequency
* GD32VF103 RISC-V port with CSR_MCYCLE register this is incremented at
  CPU clock frequency
* RP2040 ARMv6 port which uses the integrated timer peripheral which is
  incremented with a fixed 1MHz frequency

* Use wait_us() instead of chSysPolledDelayX

...as it is powered by busy waiting now.

* Add chibios waiting methods test bench
2022-07-11 15:17:05 +02:00
..
custom.c [Core] Add Reboot keycode to core (#15990) 2022-05-14 13:35:49 +10:00
gd32v_dfu.c [Core] Add Reboot keycode to core (#15990) 2022-05-14 13:35:49 +10:00
halfkay.c [Core] Add Reboot keycode to core (#15990) 2022-05-14 13:35:49 +10:00
kiibohd.c [Core] Add Reboot keycode to core (#15990) 2022-05-14 13:35:49 +10:00
rp2040.c [Core] Use polled waiting on ChibiOS platforms that support it (#17607) 2022-07-11 15:17:05 +02:00
stm32_dfu.c Make bootloader_jump for dualbank STM32 respect STM32_BOOTLOADER_DUAL_BANK_DELAY (#17178) 2022-05-30 23:20:10 -07:00
stm32duino.c [Core] Add Reboot keycode to core (#15990) 2022-05-14 13:35:49 +10:00
tinyuf2.c [Core] Add Reboot keycode to core (#15990) 2022-05-14 13:35:49 +10:00
wb32_dfu.c [Core] Add Reboot keycode to core (#15990) 2022-05-14 13:35:49 +10:00