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

Merge tag 'drm-misc-next-2026-03-12' of...

Merge tag 'drm-misc-next-2026-03-12' of https://gitlab.freedesktop.org/drm/misc/kernel

 into drm-next

drm-misc-next for v7.1:

UAPI Changes:

amdxdna:
- Add sensors ioctls

Cross-subsystem Changes:

dma-buf:
- clean pages with helpers

Documenatation:
- devicetree: Add lxd vendor prefix

Core Changes:

buddy:
- improve aligned allocations

gem-shmem:
- Track page accessed/dirty status across mmap/vmap

ttm:
- fix fence signalling

Driver Changes:

amdxdna:
- provide NPU power estimate
- support sensor for column utilization

bridge:
- anx7625: Fix USB Type-C handling
- cdns-mhdp8546-core: Handle HDCP state in bridge atomic_check

ivpu:
- fixes

loongson:
- replace custom code with drm_gem_ttm_dumb_map_offset()

mxsfb:
- lcdif: report probing errors with dev_err_probe()

panel:
- ilitek-ili9882t: Allow GPIO calls to sleep
- jadard: Support TAIGUAN XTI05101-01A
- lxd: Support LXD M9189A plus DT bindings
- mantix: Fix pixel clock; Clean up
- motorola: Support Motorola Atrix 4G and Droid X2 plus DT bindings
- novatek: Support Novatek/Tianma NT37700F plus DT bindings
- renesas: Clean up
- simple: Support EDT ET057023UDBA plus DT bindings; Support Powertip
  PH800480T032-ZHC19 plus DT bindings; Support Waveshare 13.3"
  - clean up DT bindings of various drivers

panthor:
- fix fence handling

vc4:
- check return value of platform_get_irq_byname()

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

From: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patch.msgid.link/20260312075629.GA21234@linux.fritz.box
parents 58351f46 f08ceb71
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -844,6 +844,12 @@ properties:
              - google,sargo
          - const: qcom,sdm670

      - items:
          - enum:
              - google,bonito-tianma
          - const: google,bonito
          - const: qcom,sdm670

      - items:
          - enum:
              - qcom,sdx55-mtp
+0 −5
Original line number Diff line number Diff line
@@ -20,11 +20,6 @@ properties:
  reg:
    maxItems: 1

  backlight: true
  port: true
  power-supply: true
  reset-gpios: true

required:
  - compatible
  - reg
+2 −2
Original line number Diff line number Diff line
@@ -41,8 +41,6 @@ properties:
  panel-timing: true
  port: true

additionalProperties: false

required:
  - compatible
  - data-mapping
@@ -51,6 +49,8 @@ required:
  - panel-timing
  - port

additionalProperties: false

examples:
  - |+
    panel {
+2 −2
Original line number Diff line number Diff line
@@ -56,8 +56,6 @@ properties:
      - port@0
      - port@1

additionalProperties: false

required:
  - compatible
  - width-mm
@@ -65,6 +63,8 @@ required:
  - data-mapping
  - panel-timing

additionalProperties: false

examples:
  - |+
    panel-lvds {
+2 −2
Original line number Diff line number Diff line
@@ -22,10 +22,10 @@ properties:
  enable-gpios: true
  port: true

additionalProperties: false

required:
  - compatible
  - power-supply

additionalProperties: false

...
Loading