Skip to content

Commit e9b71eb

Browse files
committed
Merge tag 'mediatek-drm-next-6.3' of https://git.kernel.org/pub/scm/linux/kernel/git/chunkuang.hu/linux into drm-next
Mediatek DRM Next for Linux 6.3 1. Reduce the time of dsi from LP11 to sending cmd 2. Remove dependency on GEM DMA helper 3. Drop unbalanced obj unref 4. Fix the fallback for mediatek,mt8186-disp-ccorr 5. Fixup for error path. Signed-off-by: Dave Airlie <[email protected]> From: Chun-Kuang Hu <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
2 parents 820ba9a + 137272e commit e9b71eb

23 files changed

+71
-9
lines changed

Documentation/devicetree/bindings/display/mediatek/mediatek,aal.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ properties:
3131
- items:
3232
- enum:
3333
- mediatek,mt8186-disp-aal
34+
- mediatek,mt8188-disp-aal
3435
- mediatek,mt8192-disp-aal
3536
- mediatek,mt8195-disp-aal
3637
- const: mediatek,mt8183-disp-aal

Documentation/devicetree/bindings/display/mediatek/mediatek,ccorr.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ properties:
2727
- const: mediatek,mt8192-disp-ccorr
2828
- items:
2929
- enum:
30+
- mediatek,mt8188-disp-ccorr
3031
- mediatek,mt8195-disp-ccorr
3132
- const: mediatek,mt8192-disp-ccorr
3233
- items:
3334
- enum:
3435
- mediatek,mt8186-disp-ccorr
35-
- const: mediatek,mt8183-disp-ccorr
36+
- const: mediatek,mt8192-disp-ccorr
3637

3738
reg:
3839
maxItems: 1

Documentation/devicetree/bindings/display/mediatek/mediatek,color.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ properties:
3737
- enum:
3838
- mediatek,mt8183-disp-color
3939
- mediatek,mt8186-disp-color
40+
- mediatek,mt8188-disp-color
4041
- mediatek,mt8192-disp-color
4142
- mediatek,mt8195-disp-color
4243
- const: mediatek,mt8173-disp-color

Documentation/devicetree/bindings/display/mediatek/mediatek,dither.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ properties:
2727
- items:
2828
- enum:
2929
- mediatek,mt8186-disp-dither
30+
- mediatek,mt8188-disp-dither
3031
- mediatek,mt8192-disp-dither
3132
- mediatek,mt8195-disp-dither
3233
- const: mediatek,mt8183-disp-dither

Documentation/devicetree/bindings/display/mediatek/mediatek,gamma.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ properties:
2828
- items:
2929
- enum:
3030
- mediatek,mt8186-disp-gamma
31+
- mediatek,mt8188-disp-gamma
3132
- mediatek,mt8192-disp-gamma
3233
- mediatek,mt8195-disp-gamma
3334
- const: mediatek,mt8183-disp-gamma

Documentation/devicetree/bindings/display/mediatek/mediatek,ovl.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ properties:
3636
- const: mediatek,mt2701-disp-ovl
3737
- items:
3838
- enum:
39+
- mediatek,mt8188-disp-ovl
3940
- mediatek,mt8195-disp-ovl
4041
- const: mediatek,mt8183-disp-ovl
4142
- items:

Documentation/devicetree/bindings/display/mediatek/mediatek,postmask.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ properties:
2626
- items:
2727
- enum:
2828
- mediatek,mt8186-disp-postmask
29+
- mediatek,mt8188-disp-postmask
2930
- const: mediatek,mt8192-disp-postmask
3031

3132
reg:

Documentation/devicetree/bindings/display/mediatek/mediatek,rdma.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ properties:
3131
- const: mediatek,mt8183-disp-rdma
3232
- items:
3333
- const: mediatek,mt8195-disp-rdma
34+
- items:
35+
- enum:
36+
- mediatek,mt8188-disp-rdma
37+
- const: mediatek,mt8195-disp-rdma
3438
- items:
3539
- enum:
3640
- mediatek,mt7623-disp-rdma

drivers/gpu/drm/mediatek/Kconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ config DRM_MEDIATEK
77
depends on HAVE_ARM_SMCCC
88
depends on OF
99
depends on MTK_MMSYS
10-
select DRM_GEM_DMA_HELPER
1110
select DRM_KMS_HELPER
1211
select DRM_MIPI_DSI
1312
select DRM_PANEL

drivers/gpu/drm/mediatek/mtk_cec.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
#include <linux/platform_device.h>
1313

1414
#include "mtk_cec.h"
15+
#include "mtk_hdmi.h"
16+
#include "mtk_drm_drv.h"
1517

1618
#define TR_CONFIG 0x00
1719
#define CLEAR_CEC_IRQ BIT(15)

0 commit comments

Comments
 (0)