mirror of
https://github.com/torvalds/linux.git
synced 2026-04-25 18:12:26 -04:00
The 5" and 7" Raspberry Pi 720x1280 Display 2 MCU is a bit more
complex than the original Display 1 ATTINY88 and the binding is
also a bit more demanding. Split the binding into separate file
and fill in required gpio-controller, #gpio-cells and #pwm-cells
which must be present for the V2 MCU. Include mention of the 5"
panel in the description of Display 2, as the 5" panel uses the
same MCU.
Fixes: 6d09c6e474 ("regulator: dt-bindings: rpi-panel: Add regulator for 7" Raspberry Pi 720x1280")
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Message-ID: <20250905191637.147141-1-marek.vasut+renesas@mailbox.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
45 lines
953 B
YAML
45 lines
953 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/regulator/raspberrypi,7inch-touchscreen-panel-regulator.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: RaspberryPi 7" display ATTINY88-based regulator/backlight controller
|
|
|
|
maintainers:
|
|
- Marek Vasut <marex@denx.de>
|
|
|
|
description: |
|
|
The RaspberryPi 7" display has an ATTINY88-based regulator/backlight
|
|
controller on the PCB, which is used to turn the display unit on/off
|
|
and control the backlight.
|
|
|
|
allOf:
|
|
- $ref: regulator.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
const: raspberrypi,7inch-touchscreen-panel-regulator
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
additionalProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
examples:
|
|
- |
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
regulator@45 {
|
|
compatible = "raspberrypi,7inch-touchscreen-panel-regulator";
|
|
reg = <0x45>;
|
|
};
|
|
};
|
|
|
|
...
|