/Linux-v5.10/Documentation/devicetree/bindings/leds/ |
D | leds-ktd2692.txt | 1 * Kinetic Technologies - KTD2692 Flash LED Driver 3 KTD2692 is the ideal power solution for high-power flash LEDs. 4 It uses ExpressWire single-wire programming for maximum flexibility. 7 enable/disable the IC, Movie(max 1/3 of Flash current) / Flash mode current, 8 Flash timeout, LVP(low voltage protection). 11 LED current will be ramped up to the flash-mode current level. 14 - compatible : Should be "kinetic,ktd2692". 15 - ctrl-gpios : Specifier of the GPIO connected to CTRL pin. 16 - aux-gpios : Specifier of the GPIO connected to AUX pin. 19 - vin-supply : "vin" LED supply (2.7V to 5.5V). [all …]
|
D | leds-aat1290.txt | 1 * Skyworks Solutions, Inc. AAT1290 Current Regulator for Flash LEDs 4 asserted high, enable flash strobe and movie mode (max 1/2 of flash current) 7 of the flash chip. The switch is controlled with pin control. 11 - compatible : Must be "skyworks,aat1290". 12 - flen-gpios : Must be device tree identifier of the flash device FL_EN pin. 13 - enset-gpios : Must be device tree identifier of the flash device EN_SET pin. 16 - pinctrl-names : Must contain entries: "default", "host", "isp". Entries 23 node - see Documentation/devicetree/bindings/leds/common.txt. 26 - led-max-microamp : see Documentation/devicetree/bindings/leds/common.txt 27 - flash-max-microamp : see Documentation/devicetree/bindings/leds/common.txt [all …]
|
D | leds-lm3601x.txt | 1 * Texas Instruments - lm3601x Single-LED Flash Driver 3 The LM3601X are ultra-small LED flash drivers that 7 - compatible : Can be one of the following 10 - reg : I2C slave address 11 - #address-cells : 1 12 - #size-cells : 0 15 - reg : 0 - Indicates a IR mode 16 1 - Indicates a Torch (white LED) mode 18 Required properties for flash LED child nodes: 20 - flash-max-microamp : Range from 11mA - 1.5A [all …]
|
D | ams,as3645a.txt | 3 The AS3645A flash LED controller can drive two LEDs, one high current 4 flash LED and one indicator LED. The high current flash LED can be 18 #address-cells : 1 19 #size-cells : 0 22 Required properties of the flash child node (0) 26 flash-timeout-us: Flash timeout in microseconds. The value must be in 28 flash-max-microamp: Maximum flash current in microamperes. Has to be 31 led-max-microamp: Maximum torch (assist) current in microamperes. The 34 ams,input-max-microamp: Maximum flash controller input current. The 39 Optional properties of the flash child node [all …]
|
D | common.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Jacek Anaszewski <jacek.anaszewski@gmail.com> 11 - Pavel Machek <pavel@ucw.cz> 14 LED and flash LED devices provide the same basic functionality as current 15 regulators, but extended with LED and flash LED specific features like 16 blinking patterns, flash timeout, flash faults and external flash strobe mode. 25 led-sources: 30 $ref: /schemas/types.yaml#definitions/uint32-array [all …]
|
D | leds-sgm3140.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/leds/leds-sgm3140.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Luca Weiss <luca@z3ntu.xyz> 13 The SGM3140 is a current-regulated charge pump which can regulate two current 14 levels for Flash and Torch modes. 17 http://www.sg-micro.com/uploads/soft/20190626/1561535688.pdf 23 enable-gpios: 27 flash-gpios: [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/media/i2c/ |
D | adp1653.txt | 1 * Analog Devices ADP1653 flash LED driver 5 - compatible: Must contain "adi,adp1653" 7 - reg: I2C slave address 9 - enable-gpios: Specifier of the GPIO connected to EN pin 11 There are two LED outputs available - flash and indicator. One LED is 12 represented by one child node, nodes need to be named "flash" and "indicator". 15 - led-max-microamp : see Documentation/devicetree/bindings/leds/common.txt 17 Required properties of the flash LED child node: 19 - flash-max-microamp : see Documentation/devicetree/bindings/leds/common.txt 20 - flash-timeout-us : see Documentation/devicetree/bindings/leds/common.txt [all …]
|
/Linux-v5.10/drivers/leds/ |
D | leds-sgm3140.c | 1 // SPDX-License-Identifier: GPL-2.0 5 #include <linux/led-class-flash.h> 10 #include <media/v4l2-flash-led-class.h> 27 /* current timeout in us */ 28 u32 timeout; member 29 /* maximum timeout in us */ 43 if (priv->enabled == state) in sgm3140_strobe_set() 47 ret = regulator_enable(priv->vin_regulator); in sgm3140_strobe_set() 49 dev_err(fled_cdev->led_cdev.dev, in sgm3140_strobe_set() 53 gpiod_set_value_cansleep(priv->flash_gpio, 1); in sgm3140_strobe_set() [all …]
|
D | leds-ktd2692.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * LED driver : leds-ktd2692.c 12 #include <linux/led-class-flash.h> 24 /* Value related the flash mode */ 29 /* Macro for getting offset of flash timeout */ 30 #define GET_TIMEOUT_OFFSET(timeout, step) ((timeout) / (step)) argument 56 /* Movie / Flash Mode Control */ 66 /* maximum LED current in flash mode */ 68 /* maximum flash timeout */ 70 /* max LED brightness level */ [all …]
|
D | leds-aat1290.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * LED Flash class driver for the AAT1290 4 * 1.5A Step-Up Current Regulator for Flash LEDs 12 #include <linux/led-class-flash.h> 20 #include <media/v4l2-flash-led-class.h> 51 /* maximum LED current in flash mode */ 53 /* maximum flash timeout */ 57 /* max LED brightness level */ 67 /* corresponding LED Flash class device */ 69 /* V4L2 Flash device */ [all …]
|
D | leds-as3645a.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * drivers/leds/leds-as3645a.c - AS3645A and LM3555 flash controllers driver 5 * Copyright (C) 2008-2011 Nokia Corporation 16 #include <linux/led-class-flash.h> 23 #include <media/v4l2-flash-led-class.h> 25 #define AS_TIMER_US_TO_CODE(t) (((t) / 1000 - 100) / 50) 30 /* Read-only Design info register: Reset state: xxxx 0001 */ 35 /* Read-only Version control register: Reset state: 0000 0000 86 #define AS_FLASH_TIMEOUT_MIN 100000 /* us */ 105 ((min_t(u32, AS_PEAK_mA_MAX, a) - 1250) / 250) [all …]
|
D | leds-lm3601x.c | 1 // SPDX-License-Identifier: GPL-2.0 2 // Flash and torch driver for Texas Instruments LM3601X LED 3 // Flash driver chip family 4 // Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/ 9 #include <linux/led-class-flash.h> 73 * struct lm3601x_led - 74 * @fled_cdev: flash LED class device pointer 79 * @flash_timeout: the timeout for the flash 82 * @flash_current_max: maximum current for the flash 83 * @max_flash_timeout: maximum timeout for the flash [all …]
|
D | leds-max77693.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * LED Flash class driver for the flash cell of max77693 mfd. 11 #include <linux/led-class-flash.h> 13 #include <linux/mfd/max77693-common.h> 14 #include <linux/mfd/max77693-private.h> 20 #include <media/v4l2-flash-led-class.h> 41 FLASH, enumerator 59 /* corresponding LED Flash class device */ 61 /* V4L2 Flash device */ 66 /* flash timeout cache */ [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/mfd/ |
D | max77693.txt | 1 Maxim MAX77693 multi-function device 4 - PMIC, 5 - CHARGER, 6 - LED, 7 - MUIC, 8 - HAPTIC 14 - compatible : Must be "maxim,max77693". 15 - reg : Specifies the i2c slave address of PMIC block. 16 - interrupts : This i2c device has an IRQ line connected to the main SoC. 19 - regulators : The regulators of max77693 have to be instantiated under subnode [all …]
|
/Linux-v5.10/arch/arm/boot/dts/ |
D | exynos4412-galaxy-s3.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 9 /dts-v1/; 10 #include "exynos4412-midas.dtsi" 20 flen-gpios = <&gpj1 1 GPIO_ACTIVE_HIGH>; 21 enset-gpios = <&gpj1 2 GPIO_ACTIVE_HIGH>; 23 pinctrl-names = "default", "host", "isp"; 24 pinctrl-0 = <&camera_flash_host>; 25 pinctrl-1 = <&camera_flash_host>; 26 pinctrl-2 = <&camera_flash_isp>; 28 flash-led { [all …]
|
D | omap3-n950-n9.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * omap3-n950-n9.dtsi - Device Tree file for Nokia N950 & N9 (common stuff) 13 cpu0-supply = <&vcc>; 23 compatible = "regulator-fixed"; 24 regulator-name = "VEMMC"; 25 regulator-min-microvolt = <2900000>; 26 regulator-max-microvolt = <2900000>; 28 startup-delay-us = <150>; 29 enable-active-high; 33 compatible = "regulator-fixed"; [all …]
|
D | r8a7791-koelsch.dts | 1 // SPDX-License-Identifier: GPL-2.0 6 * Copyright (C) 2013-2014 Renesas Solutions Corp. 11 * SSI-AK4643 38 /dts-v1/; 40 #include <dt-bindings/gpio/gpio.h> 41 #include <dt-bindings/input/input.h> 60 stdout-path = "serial0:115200n8"; 74 #address-cells = <1>; 75 #size-cells = <1>; 79 compatible = "gpio-keys"; [all …]
|
D | r8a7790-lager.dts | 1 // SPDX-License-Identifier: GPL-2.0 5 * Copyright (C) 2013-2014 Renesas Solutions Corp. 7 * Copyright (C) 2015-2016 Renesas Electronics Corporation 11 * SSI-AK4643 38 /dts-v1/; 40 #include <dt-bindings/gpio/gpio.h> 41 #include <dt-bindings/input/input.h> 60 stdout-path = "serial0:115200n8"; 74 #address-cells = <1>; 75 #size-cells = <1>; [all …]
|
/Linux-v5.10/Documentation/firmware-guide/acpi/dsd/ |
D | leds.rst | 1 .. SPDX-License-Identifier: GPL-2.0 14 Referring to LEDs in Device tree is documented in [4], in "flash-leds" property 19 mechanism on ACPI is not possible. A mechanism to refer to non-device ACPI nodes 43 ToUUID("dbb8e3e6-5886-4ba6-8795-1319f52a966b"), 50 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"), 53 Package () { "flash-max-microamp", 1000000 }, 54 Package () { "flash-timeout-us", 200000 }, 55 Package () { "led-max-microamp", 100000 }, 56 Package () { "label", "white:flash" }, 60 ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"), [all …]
|
/Linux-v5.10/drivers/watchdog/ |
D | aspeed_wdt.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 35 { .compatible = "aspeed,ast2400-wdt", .data = &ast2400_config }, 36 { .compatible = "aspeed,ast2500-wdt", .data = &ast2500_config }, 37 { .compatible = "aspeed,ast2600-wdt", .data = &ast2500_config }, 65 * * Drive mode: push-pull vs open-drain 78 * and bit 30 represents push-pull or open-drain. With respect to write, magic 106 wdt->ctrl |= WDT_CTRL_ENABLE; in aspeed_wdt_enable() 108 writel(0, wdt->base + WDT_CTRL); in aspeed_wdt_enable() 109 writel(count, wdt->base + WDT_RELOAD_VALUE); in aspeed_wdt_enable() 110 writel(WDT_RESTART_MAGIC, wdt->base + WDT_RESTART); in aspeed_wdt_enable() [all …]
|
/Linux-v5.10/arch/um/drivers/ |
D | vector_kern.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 42 /* backlink to device which owns us */ 67 #define VERIFY_HEADER_NOK -1 78 /* Timeout timer in TX */ 97 int req_size; /* different from max packet - used for TSO */ 102 /* remote address if any - some transports will leave this as null */ 124 /* guest allowed to use ethtool flash to load bpf */
|
/Linux-v5.10/drivers/media/i2c/ |
D | adp1653.c | 1 // SPDX-License-Identifier: GPL-2.0-only 5 * Copyright (C) 2008--2011 Nokia Corporation 15 * - fault interrupt handling 16 * - hardware strobe 17 * - power doesn't need to be ON if all lights are off 27 #include <media/v4l2-device.h> 31 #define TIMEOUT_MIN (TIMEOUT_MAX - ADP1653_REG_CONFIG_TMR_SET_MAX \ 33 #define TIMEOUT_US_TO_CODE(t) ((TIMEOUT_MAX + (TIMEOUT_STEP / 2) - (t)) \ 35 #define TIMEOUT_CODE_TO_US(c) (TIMEOUT_MAX - (c) * TIMEOUT_STEP) 38 static int adp1653_update_hw(struct adp1653_flash *flash) in adp1653_update_hw() argument [all …]
|
/Linux-v5.10/drivers/usb/storage/ |
D | shuttle_usbat.c | 1 // SPDX-License-Identifier: GPL-2.0+ 3 * Driver for SCM Microsystems (a.k.a. Shuttle) USB-ATAPI cable 12 * Flash support based on earlier work by: 20 * which does the USB-to-ATAPI conversion. By obtaining the data sheet on 46 #define DRV_NAME "ums-usbat" 48 MODULE_DESCRIPTION("Driver for SCM Microsystems (a.k.a. Shuttle) USB-ATAPI cable"); 84 /* USBAT Flash Media status types */ 88 /* USBAT Flash Media change types */ 134 /* Used for Flash readers only */ 149 static int usbat_flash_transport(struct scsi_cmnd * srb, struct us_data *us); [all …]
|
/Linux-v5.10/drivers/staging/media/atomisp/pci/ |
D | atomisp_internal.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 29 #include <media/media-device.h> 30 #include <media/v4l2-subdev.h> 49 (((isp)->media_dev.hw_revision & ATOMISP_HW_REVISION_MASK) == \ 57 /* MRFLD with 0x1179: max ISP freq limited to 400MHz */ 59 /* MRFLD with 0x117a: max ISP freq is 400MHz and max freq at Vmin is 200MHz */ 76 /* sub-QCIF resolution */ 118 * 1000 us is a reasonable value considering that the processing 119 * time is typically ~2000 us. 131 * This is to differentiate between ext-isp and soc camera in [all …]
|
/Linux-v5.10/drivers/staging/media/atomisp/include/linux/ |
D | atomisp.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 49 * buffer has a per-frame parameter. 132 /* [gain] The strength of sharpness in pell-mell area. u5_11 */ 256 * Because we have 2 pipes at max to output metadata, therefore driver will use 303 * struct atomisp_cont_capture_conf - continuous capture parameters 312 * offset:-2 333 unsigned int gr; /* unsigned <integer_bits>.<16-integer_bits> */ 334 unsigned int r; /* unsigned <integer_bits>.<16-integer_bits> */ 335 unsigned int b; /* unsigned <integer_bits>.<16-integer_bits> */ 336 unsigned int gb; /* unsigned <integer_bits>.<16-integer_bits> */ [all …]
|