]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Merge patch series "led: implement software blinking"
authorTom Rini <trini@konsulko.com>
Tue, 30 Jul 2024 18:36:22 +0000 (12:36 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 30 Jul 2024 20:31:24 +0000 (14:31 -0600)
Mikhail Kshevetskiy <mikhail.kshevetskiy@iopsys.eu> says:

v2 changes:
 * Drop sw_blink_state structure, move its necessary fields to
   led_uc_plat structure.
 * Add cyclic_info pointer to led_uc_plat structure. This
   simplify code a lot.
 * Remove cyclic function search logic. Not needed anymore.
 * Fix blinking period. It was twice large.
 * Other cleanups.

v3 changes:
 * Adapt code to recent cyclic function changes
 * Move software blinking functions to separate file
 * Other small changes

v4 changes:
 * Refactoring of led_set_period() function

v5 changes
 * Fix compilation if CONFIG_LED_BLINK is not defined

v6 changes:
 * Enable LEDST_BLINK state unconditionally.
 * Function led_set_period() becomes available when CONFIG_LED_BLINK
   is disabled. This makes led code simpler.
 * Software blinking requires about 100 bytes of data for a led. It's
   not a good idea to allocate so much memory for each supported led.
   Change the code to allocate blinking data only for required leds.

1  2 
include/led.h

diff --cc include/led.h
index a6353166289d294c416332ffc98faab9e7ee5343,8270d6cef93389d0c6819535d1d2d44e2ebeccbd..99f93c5ef86d5afc22dedd975251260d307a5593
@@@ -7,6 -7,6 +7,9 @@@
  #ifndef __LED_H
  #define __LED_H
  
++#include <stdbool.h>
++#include <cyclic.h>
++
  struct udevice;
  
  enum led_state_t {