devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v12 00/23] Add display driver for MT8188 VDOSYS1
@ 2023-12-14  5:58 Hsiao Chien Sung
  2023-12-14  5:58 ` [PATCH v12 01/23] dt-bindings: display: mediatek: ethdr: Add compatible for MT8188 Hsiao Chien Sung
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Hsiao Chien Sung @ 2023-12-14  5:58 UTC (permalink / raw)
  To: AngeloGioacchino Del Regno, CK Hu
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Chun-Kuang Hu,
	Philipp Zabel, David Airlie, Daniel Vetter, Maarten Lankhorst,
	Maxime Ripard, Thomas Zimmermann, Matthias Brugger, Moudy Ho,
	Hsiao Chien Sung, Nathan Lu, Nancy . Lin, Roy-CW . Yeh,
	Jason-JH . Lin, xinlei lee, devicetree, linux-kernel, dri-devel,
	linux-mediatek, linux-arm-kernel

This series is based on mediatek-drm-next branch of
kernel/git/chunkuang.hu/linux.git

Changes in v12:
- Rebase on mediatek-drm-next branch of kernel/git/chunkuang.hu/linux.git

Changes in v11:
- Change "mtk-padding" to "mtk-disp-padding" for consistency
- Remove patch "drm/mediatek: Remove ineffectual power management codes
  for backward compatibility

Changes in v10:
- Remove "Reviewed-by" tags from the following commits:
    - drm/mediatek: Power on/off devices with function pointers
    - drm/mediatek: Manage component's clock with function pointers
- Separate the commit into smaller ones
    - (new) drm/mediatek: Remove ineffectual power management codes

Changes in v9:
- Add a static inline function to power off the device
- Change driver name to "mediatek-disp-padding"
- Fix typo and kernel doc format error

Changes in v8:
- Power on/off the components with .power_on() and .power_off()
- Remove mtk_padding_config()
- Remove "Reviewed-by" tags from "drm/mediatek: Add Padding to OVL adaptor"

Changes in v7:
- Start/Stop the components in OVL Adaptor with function pointers
- Refine Padding driver
- Fix underrun when the layer is switching off

Changes in v6:
- Separate the commits into smaller ones
- Add DPI input mode setting
- Fix VDOSYS1 power-on issues

Changes in v5:
- Reuse .clk_enable/.clk_disable in struct mtk_ddp_comp_funcs
  in mtk_disp_ovl_adaptor.c
- Adjust commits order

Changes in v4:
- Add new functions in mtk_disp_ovl_adaptor.c to enable/disable
  components and reuse them when clock enable/disable
- Rename components in mtk_disp_ovl_adaptor.c and sort them in
  alphabetical order

Changes in v3:
- Define macro MMSYS_RST_NR in mtk-mmsys.h and update reset table
- Fix typos (ETDHR -> ETHDR, VSNYC -> VSYNC)
- Rebase dt-bindings on linux-next
- Refine description of Padding
- Squash reset bit map commits for VDO0 and VDO1 into one

Changes in v2:
- Remove redundant compatibles of MT8188 because it shares the same
  configuration with MT8195
- Separate dt-bindings by modules
- Support reset bit mapping in mmsys driver

Hsiao Chien Sung (23):
  dt-bindings: display: mediatek: ethdr: Add compatible for MT8188
  dt-bindings: display: mediatek: mdp-rdma: Add compatible for MT8188
  dt-bindings: display: mediatek: merge: Add compatible for MT8188
  dt-bindings: display: mediatek: padding: Add MT8188
  dt-bindings: arm: mediatek: Add compatible for MT8188
  dt-bindings: reset: mt8188: Add VDOSYS reset control bits
  soc: mediatek: Support MT8188 VDOSYS1 in mtk-mmsys
  soc: mediatek: Support MT8188 VDOSYS1 Padding in mtk-mmsys
  soc: mediatek: Support reset bit mapping in mmsys driver
  soc: mediatek: Add MT8188 VDOSYS reset bit map
  drm/mediatek: Rename OVL_ADAPTOR_TYPE_RDMA
  drm/mediatek: Add component ID to component match structure
  drm/mediatek: Manage component's clock with function pointers
  drm/mediatek: Power on/off devices with function pointers
  drm/mediatek: Start/Stop components with function pointers
  drm/mediatek: Sort OVL adaptor components
  drm/mediatek: Refine device table of OVL adaptor
  drm/mediatek: Support MT8188 Padding in display driver
  drm/mediatek: Add Padding to OVL adaptor
  drm/mediatek: Return error if MDP RDMA failed to enable the clock
  drm/mediatek: Remove the redundant driver data for DPI
  drm/mediatek: Fix underrun in VDO1 when switches off the layer
  drm/mediatek: Support MT8188 VDOSYS1 in display driver

 .../bindings/arm/mediatek/mediatek,mmsys.yaml |   1 +
 .../display/mediatek/mediatek,ethdr.yaml      |   6 +-
 .../display/mediatek/mediatek,mdp-rdma.yaml   |   6 +-
 .../display/mediatek/mediatek,merge.yaml      |   3 +
 .../display/mediatek/mediatek,padding.yaml    |  81 ++++++
 drivers/gpu/drm/mediatek/Makefile             |   3 +-
 drivers/gpu/drm/mediatek/mtk_disp_drv.h       |   8 +
 drivers/gpu/drm/mediatek/mtk_disp_merge.c     |   2 +-
 .../gpu/drm/mediatek/mtk_disp_ovl_adaptor.c   | 274 +++++++++++-------
 drivers/gpu/drm/mediatek/mtk_dpi.c            |  16 +-
 drivers/gpu/drm/mediatek/mtk_drm_crtc.c       |  10 +-
 drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.c   |   2 +
 drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h   |  20 ++
 drivers/gpu/drm/mediatek/mtk_drm_drv.c        |   5 +-
 drivers/gpu/drm/mediatek/mtk_drm_drv.h        |   2 +-
 drivers/gpu/drm/mediatek/mtk_mdp_rdma.c       |  19 +-
 drivers/gpu/drm/mediatek/mtk_padding.c        | 160 ++++++++++
 drivers/soc/mediatek/mt8188-mmsys.h           | 210 ++++++++++++++
 drivers/soc/mediatek/mtk-mmsys.c              |  27 ++
 drivers/soc/mediatek/mtk-mmsys.h              |  32 ++
 drivers/soc/mediatek/mtk-mutex.c              |  51 ++++
 include/dt-bindings/reset/mt8188-resets.h     |  75 +++++
 include/linux/soc/mediatek/mtk-mmsys.h        |   8 +
 23 files changed, 890 insertions(+), 131 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/display/mediatek/mediatek,padding.yaml
 create mode 100644 drivers/gpu/drm/mediatek/mtk_padding.c

--
2.18.0


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2023-12-14  5:59 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-14  5:58 [PATCH v12 00/23] Add display driver for MT8188 VDOSYS1 Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 01/23] dt-bindings: display: mediatek: ethdr: Add compatible for MT8188 Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 02/23] dt-bindings: display: mediatek: mdp-rdma: " Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 03/23] dt-bindings: display: mediatek: merge: " Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 04/23] dt-bindings: display: mediatek: padding: Add MT8188 Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 05/23] dt-bindings: arm: mediatek: Add compatible for MT8188 Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 06/23] dt-bindings: reset: mt8188: Add VDOSYS reset control bits Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 07/23] soc: mediatek: Support MT8188 VDOSYS1 in mtk-mmsys Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 08/23] soc: mediatek: Support MT8188 VDOSYS1 Padding " Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 09/23] soc: mediatek: Support reset bit mapping in mmsys driver Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 10/23] soc: mediatek: Add MT8188 VDOSYS reset bit map Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 11/23] drm/mediatek: Rename OVL_ADAPTOR_TYPE_RDMA Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 12/23] drm/mediatek: Add component ID to component match structure Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 13/23] drm/mediatek: Manage component's clock with function pointers Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 14/23] drm/mediatek: Power on/off devices " Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 15/23] drm/mediatek: Start/Stop components " Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 16/23] drm/mediatek: Sort OVL adaptor components Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 17/23] drm/mediatek: Refine device table of OVL adaptor Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 18/23] drm/mediatek: Support MT8188 Padding in display driver Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 19/23] drm/mediatek: Add Padding to OVL adaptor Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 20/23] drm/mediatek: Return error if MDP RDMA failed to enable the clock Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 21/23] drm/mediatek: Remove the redundant driver data for DPI Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 22/23] drm/mediatek: Fix underrun in VDO1 when switches off the layer Hsiao Chien Sung
2023-12-14  5:58 ` [PATCH v12 23/23] drm/mediatek: Support MT8188 VDOSYS1 in display driver Hsiao Chien Sung

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).