Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/leds/kinetic,ktd2692.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: KTD2692 Flash LED Driver from Kinetic Technologies maintainers: - Markuss Broks <markuss.broks@gmail.com> description: | KTD2692 is the ideal power solution for high-power flash LEDs. It uses ExpressWire single-wire programming for maximum flexibility. The ExpressWire interface through CTRL pin can control LED on/off and enable/disable the IC, Movie(max 1/3 of Flash current) / Flash mode current, Flash timeout, LVP(low voltage protection). Also, When the AUX pin is pulled high while CTRL pin is high, LED current will be ramped up to the flash-mode current level. properties: compatible: const: kinetic,ktd2692 ctrl-gpios: maxItems: 1 description: Specifier of the GPIO connected to CTRL pin. aux-gpios: maxItems: 1 description: Specifier of the GPIO connected to CTRL pin. vin-supply: description: LED supply (2.7V to 5.5V). led: type: object $ref: common.yaml# description: Properties for the LED. properties: function: true color: true flash-max-timeout-us: description: Flash LED maximum timeout. led-max-microamp: maximum: 300000 description: Minimum Threshold for Timer protection is defined internally (Maximum 300mA). flash-max-microamp: maximum: 300000 description: Flash LED maximum current Formula - I(uA) = 15000000 / Rset. additionalProperties: false required: - compatible - ctrl-gpios - led additionalProperties: false examples: - | #include <dt-bindings/gpio/gpio.h> #include <dt-bindings/leds/common.h> ktd2692 { compatible = "kinetic,ktd2692"; ctrl-gpios = <&gpc0 1 0>; aux-gpios = <&gpc0 2 0>; vin-supply = <&vbat>; led { function = LED_FUNCTION_FLASH; color = <LED_COLOR_ID_WHITE>; flash-max-timeout-us = <250000>; flash-max-microamp = <150000>; led-max-microamp = <25000>; }; }; ... |