Home
last modified time | relevance | path

Searched +full:vddi +full:- +full:supply (Results 1 – 18 of 18) sorted by relevance

/Linux-v5.15/Documentation/devicetree/bindings/display/panel/
Dmantix,mlaf057we51-x.yaml1 # SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/display/panel/mantix,mlaf057we51-x.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Mantix MLAF057WE51-X 5.7" 720x1440 TFT LCD panel
10 - Guido Günther <agx@sigxcpu.org>
14 a MIPI-DSI video interface.
17 - $ref: panel-common.yaml#
22 - mantix,mlaf057we51-x
23 - ys,ys57pss36bh5gq
[all …]
Dpanel-dsi-cm.yaml1 # SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/display/panel/panel-dsi-cm.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Tomi Valkeinen <tomi.valkeinen@ti.com>
11 - Sebastian Reichel <sre@kernel.org>
23 - $ref: panel-common.yaml#
29 - enum:
30 - motorola,droid4-panel # Panel from Motorola Droid4 phone
31 - nokia,himalaya # Panel from Nokia N950 phone
[all …]
Dnovatek,nt35510.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Novatek NT35510-based display panels
10 - Linus Walleij <linus.walleij@linaro.org>
13 - $ref: panel-common.yaml#
18 - const: hydis,hva40wv1
19 - const: novatek,nt35510
26 reset-gpios: true
27 vdd-supply:
[all …]
Dsony,acx424akp.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Linus Walleij <linus.walleij@linaro.org>
13 - $ref: panel-common.yaml#
19 reset-gpios: true
20 vddi-supply:
21 description: regulator that supplies the vddi voltage
22 enforce-video-mode: true
25 - compatible
[all …]
Dilitek,ili9341.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Ilitek-9341 Display Panel
10 - Dillon Min <dillon.minfei@gmail.com>
18 - $ref: panel-common.yaml#
23 - enum:
24 # ili9341 240*320 Color on stm32f429-disco board
25 - st,sf-tc240t-9370-t
26 - const: ilitek,ili9341
[all …]
/Linux-v5.15/drivers/gpu/drm/panel/
Dpanel-mantix-mlaf057we51.c1 // SPDX-License-Identifier: GPL-2.0
3 * Mantix MLAF057WE51 5.7" MIPI-DSI panel driver
21 #define DRV_NAME "panel-mantix-mlaf057we51"
37 struct regulator *vddi; member
57 struct mipi_dsi_device *dsi = to_mipi_dsi_device(ctx->dev); in mantix_init_sequence()
58 struct device *dev = ctx->dev; in mantix_init_sequence()
84 struct device *dev = ctx->dev; in mantix_enable()
90 dev_err(ctx->dev, "Panel init sequence failed: %d\n", ret); in mantix_enable()
118 struct mipi_dsi_device *dsi = to_mipi_dsi_device(ctx->dev); in mantix_disable()
123 dev_err(ctx->dev, "Failed to turn off the display: %d\n", ret); in mantix_disable()
[all …]
Dpanel-sony-acx424akp.c1 // SPDX-License-Identifier: GPL-2.0+
3 * MIPI-DSI Sony ACX424AKP panel driver. This is a 480x864
4 * AMOLED panel with a command-only DSI interface.
8 * Based on code and know-how from Marcus Lorentzon
9 * Copyright (C) ST-Ericsson SA 2010
43 struct regulator *supply; member
96 struct mipi_dsi_device *dsi = to_mipi_dsi_device(acx->dev); in acx424akp_set_brightness()
98 int duty_ns = bl->props.brightness; in acx424akp_set_brightness()
110 dev_err(acx->dev, "failed to disable display backlight (%d)\n", ret); in acx424akp_set_brightness()
117 pwm_ratio = max(((duty_ns * 256) / period_ns) - 1, 1); in acx424akp_set_brightness()
[all …]
Dpanel-ilitek-ili9341.c1 // SPDX-License-Identifier: GPL-2.0-only
6 * - 16-bit parallel RGB interface
7 * - 18-bit parallel RGB interface
8 * - 4-line serial spi interface
13 * Derived from drivers/drm/gpu/panel/panel-ilitek-ili9322.c
17 * For only-dbi part, copy from David's code (drm/tiny/ili9341.c)
115 /* struct ili9341_config - the system specific ILI9341 configuration */
188 * The Stm32f429-disco board has a panel ili9341 connected to ltdc controller
218 * 0xa2 Normally white, G1 -> G320, S720 -> S1,
224 /* 0x10 AVDD=vci*2, VGH=vci*7, VGL=-vci*4 */
[all …]
Dpanel-dsi-cm.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
81 if (ddata->bldev) in dsicm_bl_power()
82 backlight = ddata->bldev; in dsicm_bl_power()
83 else if (ddata->extbldev) in dsicm_bl_power()
84 backlight = ddata->extbldev; in dsicm_bl_power()
89 backlight->props.fb_blank = FB_BLANK_UNBLANK; in dsicm_bl_power()
90 backlight->props.state = ~(BL_CORE_FBBLANK | BL_CORE_SUSPENDED); in dsicm_bl_power()
91 backlight->props.power = FB_BLANK_UNBLANK; in dsicm_bl_power()
93 backlight->props.fb_blank = FB_BLANK_NORMAL; in dsicm_bl_power()
[all …]
Dpanel-novatek-nt35510.c1 // SPDX-License-Identifier: GPL-2.0-only
16 * per-panel, e.g. for physical size.
128 * struct nt35510_config - the display-specific NT35510 configuration
154 * +------------------------------------------->
180 * @bt1ctr: setting for boost power control for the AVDD step-up
183 * frequency for the step-up circuit:
193 * amplification for the the step-up circuit:
204 * @avee: setting for AVEE ranging from 0x00 = -6.5V to 0x14 = -4.5V
205 * in 0.1V steps the default is 0x05 which means -6.0V
209 * @bt2ctr: setting for boost power control for the AVEE step-up
[all …]
/Linux-v5.15/arch/arm/boot/dts/
Dste-href-tvk1281618-r3.dtsi1 // SPDX-License-Identifier: GPL-2.0-or-later
7 #include <dt-bindings/interrupt-controller/irq.h>
8 #include <dt-bindings/input/input.h>
12 compatible = "gpio-keys";
13 #address-cells = <1>;
14 #size-cells = <0>;
15 vdd-supply = <&ab8500_ldo_aux1_reg>;
16 pinctrl-names = "default";
17 pinctrl-0 = <&hall_tvk_mode>;
32 interrupt-parent = <&gpio2>;
[all …]
Domap3-n950.dts1 // SPDX-License-Identifier: GPL-2.0-only
3 * omap3-n950.dts - Device Tree file for Nokia N950
8 /dts-v1/;
10 #include "omap3-n950-n9.dtsi"
11 #include <dt-bindings/input/input.h>
15 compatible = "nokia,omap3-n950", "ti,omap3630", "ti,omap36xx", "ti,omap3";
18 compatible = "gpio-keys";
23 linux,input-type = <EV_SW>;
25 wakeup-source;
26 pinctrl-names = "default";
[all …]
Dste-ux500-samsung-kyle.dts1 // SPDX-License-Identifier: GPL-2.0-only
3 * Devicetree for the Samsung Galaxy Amp SGH-I407 also known as Kyle.
10 /dts-v1/;
11 #include "ste-db8500.dtsi"
12 #include "ste-ab8505.dtsi"
13 #include "ste-dbx5x0-pinctrl.dtsi"
14 #include <dt-bindings/gpio/gpio.h>
15 #include <dt-bindings/leds/common.h>
16 #include <dt-bindings/input/input.h>
17 #include <dt-bindings/interrupt-controller/irq.h>
[all …]
Dste-ux500-samsung-skomer.dts1 // SPDX-License-Identifier: GPL-2.0-only
3 * Devicetree for the Samsung XCover 2 GT-S7710 also known as Skomer.
6 /dts-v1/;
7 #include "ste-db8500.dtsi"
8 #include "ste-ab8505.dtsi"
9 #include "ste-dbx5x0-pinctrl.dtsi"
10 #include <dt-bindings/gpio/gpio.h>
11 #include <dt-bindings/leds/common.h>
12 #include <dt-bindings/input/input.h>
13 #include <dt-bindings/interrupt-controller/irq.h>
[all …]
Dmotorola-mapphone-common.dtsi1 // SPDX-License-Identifier: GPL-2.0-only
2 /dts-v1/;
4 #include <dt-bindings/input/input.h>
6 #include "motorola-cpcap-mapphone.dtsi"
10 stdout-path = &uart3;
19 * We seem to have only 1021 MB accessible, 1021 - 1022 is locked,
20 * then 1023 - 1024 seems to contain mbm.
28 gpio-poweroff {
29 compatible = "gpio-poweroff";
30 pinctrl-0 = <&poweroff_gpio>;
[all …]
/Linux-v5.15/Documentation/devicetree/bindings/display/
Ddsi-controller.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/display/dsi-controller.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Linus Walleij <linus.walleij@linaro.org>
26 reg-property set to the virtual channel number, usually there is just
33 "#address-cells":
36 "#size-cells":
40 "^panel@[0-3]$":
50 from 0 to 3, as DSI uses a 2-bit addressing scheme. Some DSI
[all …]
/Linux-v5.15/arch/arm64/boot/dts/freescale/
Dimx8mq-librem5.dtsi1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2018-2020 Purism SPC
6 /dts-v1/;
8 #include "dt-bindings/input/input.h"
9 #include <dt-bindings/interrupt-controller/irq.h>
10 #include "dt-bindings/pwm/pwm.h"
11 #include "dt-bindings/usb/pd.h"
18 backlight_dsi: backlight-dsi {
19 compatible = "led-backlight";
23 pmic_osc: clock-pmic {
[all …]
/Linux-v5.15/drivers/usb/gadget/udc/
Ds3c-hsudc.c1 // SPDX-License-Identifier: GPL-2.0
2 /* linux/drivers/usb/gadget/s3c-hsudc.c
7 * S3C24XX USB 2.0 High-speed USB controller gadget driver
9 * The S3C24XX USB 2.0 high-speed USB controller supports upto 9 endpoints.
19 #include <linux/dma-mapping.h>
29 #include <linux/platform_data/s3c-hsudc.h>
35 /* Non-Indexed Registers */
89 "vdda", /* analog phy supply, 3.3V */
90 "vddi", /* digital phy supply, 1.2V */
91 "vddosc", /* oscillator supply, 1.8V - 3.3V */
[all …]