Commit b3239df3 authored by Dave Airlie's avatar Dave Airlie
Browse files

Merge tag 'drm-misc-next-2025-12-01-1' of...

Merge tag 'drm-misc-next-2025-12-01-1' of https://gitlab.freedesktop.org/drm/misc/kernel

 into drm-next

Extra drm-misc-next for v6.19-rc1:

UAPI Changes:
- Add support for drm colorop pipeline.
- Add COLOR PIPELINE plane property.
- Add DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE.

Cross-subsystem Changes:
- Attempt to use higher order mappings in system heap allocator.
- Always taint kernel with sw-sync.

Core Changes:
- Small fixes to drm/gem.
- Support emergency restore to drm-client.
- Allocate and release fb_info in single place.
- Rework ttm pipelined eviction fence handling.

Driver Changes:
- Support the drm color pipeline in vkms, amdgfx.
- Add NVJPG driver for tegra.
- Assorted small fixes and updates to rockchip, bridge/dw-hdmi-qp,
  panthor.
- Add ASL CS5263 DP-to-HDMI simple bridge.
- Add and improve support for G LD070WX3-SL01 MIPI DSI, Samsung LTL106AL0,
  Samsung LTL106AL01, Raystar RFF500F-AWH-DNN, Winstar WF70A8SYJHLNGA,
  Wanchanglong w552946aaa, Samsung SOFEF00, Lenovo X13s panel.
- Add support for it66122 to it66121.
- Support mali-G1 gpu in panthor.

Signed-off-by: default avatarDave Airlie <airlied@redhat.com>

From: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: https://patch.msgid.link/aa5cbd50-7676-4a59-bbed-e8428af86804@linux.intel.com
parents 62433efe db2bad93
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ properties:
  compatible:
    enum:
      - ite,it66121
      - ite,it66122
      - ite,it6610

  reg:
+2 −0
Original line number Diff line number Diff line
@@ -27,7 +27,9 @@ properties:
          - const: adi,adv7123
      - enum:
          - adi,adv7123
          - asl-tek,cs5263
          - dumb-vga-dac
          - parade,ps185hdm
          - radxa,ra620
          - realtek,rtd2171
          - ti,opa362
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ properties:
          - raspberrypi,dsi-7inch
          - startek,kd050hdfia020
          - tdo,tl050hdv35
          - wanchanglong,w552946aaa
          - wanchanglong,w552946aba
      - const: ilitek,ili9881c

+60 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/display/panel/lg,ld070wx3-sl01.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: LG Corporation 7" WXGA TFT LCD panel

maintainers:
  - Svyatoslav Ryhel <clamor95@gmail.com>

allOf:
  - $ref: panel-common.yaml#

properties:
  compatible:
    items:
      - const: lg,ld070wx3-sl01

  reg:
    maxItems: 1

  vdd-supply: true
  vcc-supply: true

  backlight: true
  port: true

required:
  - compatible
  - vdd-supply
  - vcc-supply

additionalProperties: false

examples:
  - |
    #include <dt-bindings/gpio/gpio.h>

    dsi {
        #address-cells = <1>;
        #size-cells = <0>;

        panel@0 {
            compatible = "lg,ld070wx3-sl01";
            reg = <0>;

            vdd-supply = <&vdd_3v3_lcd>;
            vcc-supply = <&vcc_1v8_lcd>;

            backlight = <&backlight>;

            port {
                endpoint {
                    remote-endpoint = <&dsi0_out>;
                };
            };
        };
    };
...
+2 −0
Original line number Diff line number Diff line
@@ -59,6 +59,8 @@ properties:
          # Jenson Display BL-JT60050-01A 7" WSVGA (1024x600) color TFT LCD LVDS panel
          - jenson,bl-jt60050-01a
          - tbs,a711-panel
          # Winstar WF70A8SYJHLNGA 7" WSVGA (1024x600) color TFT LCD LVDS panel
          - winstar,wf70a8syjhlnga

      - const: panel-lvds

Loading