mirror of
https://github.com/torvalds/linux.git
synced 2026-04-20 15:53:59 -04:00
Pull devicetree updates from Rob Herring:
- Sync dtc to upstream version v1.6.0-51-g183df9e9c2b9 and build host
fdtoverlay
- Add kbuild support to build DT overlays (%.dtbo)
- Drop NULLifying match table in of_match_device().
In preparation for this, there are several driver cleanups to use
(of_)?device_get_match_data().
- Drop pointless wrappers from DT struct device API
- Convert USB binding schemas to use graph schema and remove old plain
text graph binding doc
- Convert spi-nor and v3d GPU bindings to DT schema
- Tree wide schema fixes for if/then schemas, array size constraints,
and undocumented compatible strings in examples
- Handle 'no-map' correctly for already reserved memblock regions
* tag 'devicetree-for-5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux: (35 commits)
driver core: platform: Drop of_device_node_put() wrapper
of: Remove of_dev_{get,put}()
dt-bindings: usb: Change descibe to describe in usbmisc-imx.txt
dt-bindings: can: rcar_canfd: Group tuples in pin control properties
dt-bindings: power: renesas,apmu: Group tuples in cpus properties
dt-bindings: mtd: spi-nor: Convert to DT schema format
dt-bindings: Use portable sort for version cmp
dt-bindings: ethernet-controller: fix fixed-link specification
dt-bindings: irqchip: Add node name to PRUSS INTC
dt-bindings: interconnect: Fix the expected number of cells
dt-bindings: Fix errors in 'if' schemas
dt-bindings: iommu: renesas,ipmmu-vmsa: Make 'power-domains' conditionally required
dt-bindings: Fix undocumented compatible strings in examples
kbuild: Add support to build overlays (%.dtbo)
scripts: dtc: Remove the unused fdtdump.c file
scripts: dtc: Build fdtoverlay tool
scripts/dtc: Update to upstream version v1.6.0-51-g183df9e9c2b9
scripts: dtc: Fetch fdtoverlay.c from external DTC project
dt-bindings: thermal: sun8i: Fix misplaced schema keyword in compatible strings
dt-bindings: iio: dac: Fix AD5686 references
...
77 lines
1.6 KiB
YAML
77 lines
1.6 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/display/panel/mantix,mlaf057we51-x.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Mantix MLAF057WE51-X 5.7" 720x1440 TFT LCD panel
|
|
|
|
maintainers:
|
|
- Guido Günther <agx@sigxcpu.org>
|
|
|
|
description:
|
|
Mantix MLAF057WE51 X is a 720x1440 TFT LCD panel connected using
|
|
a MIPI-DSI video interface.
|
|
|
|
allOf:
|
|
- $ref: panel-common.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- mantix,mlaf057we51-x
|
|
- ys,ys57pss36bh5gq
|
|
|
|
port: true
|
|
reg:
|
|
maxItems: 1
|
|
description: DSI virtual channel
|
|
|
|
avdd-supply:
|
|
description: Positive analog power supply
|
|
|
|
avee-supply:
|
|
description: Negative analog power supply
|
|
|
|
vddi-supply:
|
|
description: 1.8V I/O voltage supply
|
|
|
|
reset-gpios: true
|
|
|
|
mantix,tp-rstn-gpios:
|
|
maxItems: 1
|
|
description: second reset line that triggers DSI config load
|
|
|
|
backlight: true
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- avdd-supply
|
|
- avee-supply
|
|
- vddi-supply
|
|
- reset-gpios
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
dsi {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
panel@0 {
|
|
compatible = "mantix,mlaf057we51-x";
|
|
reg = <0>;
|
|
avdd-supply = <®_avdd>;
|
|
avee-supply = <®_avee>;
|
|
vddi-supply = <®_1v8_p>;
|
|
reset-gpios = <&gpio1 29 GPIO_ACTIVE_LOW>;
|
|
mantix,tp-rstn-gpios = <&gpio1 24 GPIO_ACTIVE_LOW>;
|
|
backlight = <&backlight>;
|
|
};
|
|
};
|
|
|
|
...
|