Message ID | 20220906084449.20124-1-nathan.lu@mediatek.com (mailing list archive) |
---|---|
Headers | show |
Series | Add first version mt8188 vdosys0 driver | expand |
On 06/09/2022 10:44, nathan.lu wrote: > From: Nathan Lu <nathan.lu@mediatek.com> > > This path is based on [1] and [2] > [1] Add MediaTek SoC(vdosys1) support for mt8195 > - https://patchwork.kernel.org/project/linux-mediatek/list/?series=658416 > [2] Add MediaTek SoC DRM (vdosys1) support for mt8195 > - https://patchwork.kernel.org/project/linux-mediatek/list/?series=665269 > Can you stop ccing internal/fake/non-existing email addresses? Your message couldn't be delivered to wsd_upstream@mediatek.com because the remote server is misconfigured. See the technical details below for more information. Best regards, Krzysztof
Hi Krzysztof, Apologize for the incovenience. I will remove it. Best regards, On Thu, 2022-09-08 at 15:14 +0200, Krzysztof Kozlowski wrote: > On 06/09/2022 10:44, nathan.lu wrote: > > From: Nathan Lu <nathan.lu@mediatek.com> > > > > This path is based on [1] and [2] > > [1] Add MediaTek SoC(vdosys1) support for mt8195 > > - > > https://urldefense.com/v3/__https://patchwork.kernel.org/project/linux-mediatek/list/?series=658416__;!!CTRNKA9wMg0ARbw!zuOwDY1dopRZLeZe36Ate1lspoWzDaM06Gj2x8zf9OprwhIMON5dJOlixUGivOIU$ > > > > [2] Add MediaTek SoC DRM (vdosys1) support for mt8195 > > - > > https://urldefense.com/v3/__https://patchwork.kernel.org/project/linux-mediatek/list/?series=665269__;!!CTRNKA9wMg0ARbw!zuOwDY1dopRZLeZe36Ate1lspoWzDaM06Gj2x8zf9OprwhIMON5dJOlixX9HBrk2$ > > > > > > Can you stop ccing internal/fake/non-existing email addresses? > > Your message couldn't be delivered to wsd_upstream@mediatek.com > because > the remote server is misconfigured. See the technical details below > for > more information. > > > Best regards, > Krzysztof
From: Nathan Lu <nathan.lu@mediatek.com> This path is based on [1] and [2] [1] Add MediaTek SoC(vdosys1) support for mt8195 - https://patchwork.kernel.org/project/linux-mediatek/list/?series=658416 [2] Add MediaTek SoC DRM (vdosys1) support for mt8195 - https://patchwork.kernel.org/project/linux-mediatek/list/?series=665269 This patch is to add first version mt8188 vdosys0 driver Modify and add new files include: 1. bindings documents 2. mtk mmsys 3. mtk mutex 4. mtk drm driver Change in V2: - Seperate bindings doucment into mmsys/mutex/display 3 parts - Remove redundent char in mediatek,gamma.yaml - Add another mediatek,mt8188-disp-rdma in mediatek,rdma.yaml - Remove io_start variable setting in mtk_drm_drv.c and mtk_mmsys.c Nathan Lu (6): dt-bindings: mediatek: modify VDOSYS0 display device tree Documentations for MT8188 dt-bindings: mediatek: modify VDOSYS0 mmsys device tree Documentations for MT8188 dt-bindings: mediatek: modify VDOSYS0 mutex device tree Documentations for MT8188 soc: mediatek: add mtk-mmsys support for mt8188 vdosys0 soc: mediatek: add mtk-mutex support for mt8188 vdosys0 drm/mediatek: add mediatek-drm of vdosys0 support for mt8188 .../bindings/arm/mediatek/mediatek,mmsys.yaml | 1 + .../display/mediatek/mediatek,aal.yaml | 1 + .../display/mediatek/mediatek,ccorr.yaml | 1 + .../display/mediatek/mediatek,color.yaml | 1 + .../display/mediatek/mediatek,dither.yaml | 1 + .../display/mediatek/mediatek,gamma.yaml | 1 + .../display/mediatek/mediatek,ovl.yaml | 1 + .../display/mediatek/mediatek,postmask.yaml | 1 + .../display/mediatek/mediatek,rdma.yaml | 4 + .../bindings/soc/mediatek/mediatek,mutex.yaml | 1 + drivers/gpu/drm/mediatek/mtk_drm_drv.c | 29 ++++ drivers/soc/mediatek/mt8188-mmsys.h | 149 ++++++++++++++++++ drivers/soc/mediatek/mtk-mmsys.c | 18 +++ drivers/soc/mediatek/mtk-mutex.c | 51 ++++++ 14 files changed, 260 insertions(+) create mode 100644 drivers/soc/mediatek/mt8188-mmsys.h