ram: k3-am654: add support for LPDDR4 and DDR3L DDRs
[oweals/u-boot.git] / drivers / led / Kconfig
index 609b1fa3fe92a583424d393808c9661c3f716b8f..5643939348c1f10f2469d747a7c9088a634b8524 100644 (file)
@@ -9,6 +9,41 @@ config LED
          can provide access to board-specific LEDs. Use of the device tree
          for configuration is encouraged.
 
+config LED_BCM6328
+       bool "LED Support for BCM6328"
+       depends on LED && ARCH_BMIPS
+       help
+         This option enables support for LEDs connected to the BCM6328
+         LED HW controller accessed via MMIO registers.
+         HW blinking is supported and up to 24 LEDs can be controlled.
+         All LEDs can blink at the same time but the delay is shared, which
+         means that if one LED is set to blink at 100ms and then a different
+         LED is set to blink at 200ms, both will blink at 200ms.
+
+config LED_BCM6358
+       bool "LED Support for BCM6358"
+       depends on LED && ARCH_BMIPS
+       help
+         This option enables support for LEDs connected to the BCM6358
+         LED HW controller accessed via MMIO registers.
+         HW has no blinking capabilities and up to 32 LEDs can be controlled.
+
+config LED_BCM6858
+       bool "LED Support for BCM6858"
+       depends on LED && (ARCH_BCM6858 || ARCH_BCM63158)
+       help
+         This option enables support for LEDs connected to the BCM6858
+         HW has blinking capabilities and up to 32 LEDs can be controlled.
+
+config LED_BLINK
+       bool "Support LED blinking"
+       depends on LED
+       help
+         Some drivers can support automatic blinking of LEDs with a given
+         period, without needing timers or extra code to handle the timing.
+         This option enables support for this which adds slightly to the
+         code size.
+
 config SPL_LED
        bool "Enable LED support in SPL"
        depends on SPL && SPL_DM
@@ -17,6 +52,7 @@ config SPL_LED
          If this is acceptable and you have a need to use LEDs in SPL,
          enable this option. You will need to enable device tree in SPL
          for this to work.
+
 config LED_GPIO
        bool "LED support for GPIO-connected LEDs"
        depends on LED && DM_GPIO