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

Merge tag 'drm-misc-next-2025-08-28' of...

Merge tag 'drm-misc-next-2025-08-28' of https://gitlab.freedesktop.org/drm/misc/kernel

 into drm-next

drm-misc-next for v6.18:

UAPI Changes:

atomic:
- Reallow no-op async page flips

Cross-subsystem Changes:

hid:
- i2c-hid: Make elan touch controllers power on after panel is enabled

video:
- Improve pixel-format handling for struct screen_info

Core Changes:

display:
- dp: Fix command length

Driver Changes:

amdxdna:
- Fixes

bridge:
- Add support for Radxa Ra620 plus DT bindings

msm:
- Fix VMA allocation

panel:
- ilitek-ili9881c: Refactor mode setting; Add support for Bestar
  BSD1218-A101KL68 LCD plus DT bindings
- lvds: Add support for Ampire AMP19201200B5TZQW-T03 to DT bindings

rockchip:
- dsi2: Add support for RK3576 plus DT bindings

stm:
- Clean up logging

vesadrm:
- Support 8-bit palette mode

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

From: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://lore.kernel.org/r/20250828065714.GA11906@linux.fritz.box
parents 1cd0c7af 5c76c794
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -223,13 +223,13 @@ Userspace components
Compiler
--------

Peano is an LLVM based open-source compiler for AMD XDNA Array compute tile
available at:
Peano is an LLVM based open-source single core compiler for AMD XDNA Array
compute tile. Peano is available at:
https://github.com/Xilinx/llvm-aie

The open-source IREE compiler supports graph compilation of ML models for AMD
NPU and uses Peano underneath. It is available at:
https://github.com/nod-ai/iree-amd-aie
IRON is an open-source array compiler for AMD XDNA Array based NPU which uses
Peano underneath. IRON is available at:
https://github.com/Xilinx/mlir-aie

Usermode Driver (UMD)
---------------------
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ properties:
      - enum:
          - adi,adv7123
          - dumb-vga-dac
          - radxa,ra620
          - ti,opa362
          - ti,ths8134
          - ti,ths8135
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ properties:
      - enum:
          - ampire,am8001280g
          - bananapi,lhr050h41
          - bestar,bsd1218-a101kl68
          - feixin,k101-im2byl02
          - raspberrypi,dsi-7inch
          - startek,kd050hdfia020
+2 −0
Original line number Diff line number Diff line
@@ -41,6 +41,8 @@ properties:
      - enum:
          # Admatec 9904379 10.1" 1024x600 LVDS panel
          - admatec,9904379
          # Ampire AMP19201200B5TZQW-T03 10.1" WUXGA (1920x1200) color TFT LCD panel
          - ampire,amp19201200b5tzqw-t03
          - auo,b101ew05
          # AUO G084SN05 V9 8.4" 800x600 LVDS panel
          - auo,g084sn05
+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@ maintainers:
properties:
  compatible:
    enum:
      - rockchip,rk3576-mipi-dsi2
      - rockchip,rk3588-mipi-dsi2

  reg:
Loading