@@ -21,6 +21,14 @@ properties:
- {}
- const: panel-dpi
+ bus-format:
+ $ref: /schemas/types.yaml#/definitions/uint32
+ description: |
+ Describes how the display panel is connected to the display interface.
+ Valid values are defined in <dt-bindings/display/dt-media-bus-format.h>.
+ The mapping between the color/significance of the panel lines to the
+ parallel data lines are defined in [1].
+ [1] https://www.kernel.org/doc/html/v5.17/userspace-api/media/v4l/subdev-formats.html#packed-rgb-formats
backlight: true
enable-gpios: true
height-mm: true
@@ -39,11 +47,14 @@ additionalProperties: false
examples:
- |
+ #include <dt-bindings/display/dt-media-bus-format.h>
+ ...
panel {
compatible = "startek,startek-kd050c", "panel-dpi";
label = "osddisplay";
power-supply = <&vcc_supply>;
backlight = <&backlight>;
+ bus-format = "DT_MEDIA_BUS_FMT_RGB888_1X24";
port {
lcd_in: endpoint {
new file mode 100644
@@ -0,0 +1,23 @@
+/* SPDX-License-Identifier: GPL-2.0-only OR MIT */
+/*
+ * Copyright 2022 Max Krummenacher <max.krummenacher@toradex.com>
+ */
+
+#ifndef __DT_BINDINGS_DT_MEDIA_BUS_FORMAT_H
+#define __DT_BINDINGS_DT_MEDIA_BUS_FORMAT_H
+
+/*
+ * Attention: Keep these macro names in sync with
+ * include/uapi/linux/media-bus-format.h
+ */
+
+#define DT_MEDIA_BUS_FMT_RGB565_1X16 1
+#define DT_MEDIA_BUS_FMT_RGB666_1X18 2
+#define DT_MEDIA_BUS_FMT_RBG888_1X24 3
+#define DT_MEDIA_BUS_FMT_RGB666_1X24_CPADHI 4
+#define DT_MEDIA_BUS_FMT_BGR888_1X24 5
+#define DT_MEDIA_BUS_FMT_GBR888_1X24 6
+#define DT_MEDIA_BUS_FMT_RGB888_1X24 7
+#define DT_MEDIA_BUS_FMT_RGB888_1X32_PADHI 8
+
+#endif /* __DT_BINDINGS_DT_MEDIA_BUS_FORMAT_H */