Re: [PATCH v9 12/14] drm/mediatek: add DSC support for mediatek-drm

2021-09-04 Thread Chun-Kuang Hu
Hi, Jason: jason-jh.lin 於 2021年8月25日 週三 下午10:48寫道: > > DSC is designed for real-time systems with real-time compression, > transmission, decompression and display. > The DSC standard is a specification of the algorithms used for > compressing and decompressing image display streams, including > t

Re: [PATCH v9 11/14] drm/mediatek: adjust to the alphabetic order for mediatek-drm

2021-09-04 Thread Chun-Kuang Hu
Hi, Jason: jason-jh.lin 於 2021年8月25日 週三 下午10:48寫道: > > Adjust to the alphabetic order for the define, function, struct > and array in mediatek-drm driver Reviewed-by: Chun-Kuang Hu > > Signed-off-by: jason-jh.lin > --- > rebase on [1] series > [1] drm/mediatek: Separate aal module > - https:/

Re: [PATCH v9 10/14] drm/mediatek: rename the define of register offset

2021-09-04 Thread Chun-Kuang Hu
Hi, Jason: jason-jh.lin 於 2021年8月25日 週三 下午10:48寫道: > > Add DISP_REG prefix for the define of register offset to > make the difference from the define of register value. Reviewed-by: Chun-Kuang Hu > > Signed-off-by: jason-jh.lin > --- > rebase on [1] series > [1] drm/mediatek: Separate aal mod

Re: [PATCH v9 09/14] drm/mediatek: remove unused define in mtk_drm_ddp_comp.c

2021-09-04 Thread Chun-Kuang Hu
Hi, Jason: jason-jh.lin 於 2021年8月25日 週三 下午10:48寫道: > > Remove the unsed define in mtk_drm_ddp_comp.c Reviewed-by: Chun-Kuang Hu > > Signed-off-by: jason-jh.lin > --- > rebase on [1] series > [1] drm/mediatek: Separate aal module > - https://patchwork.kernel.org/project/linux-mediatek/list/?se

Re: [PATCH v9 05/14] dt-bindings: mediatek: display: add mt8195 SoC binding

2021-09-04 Thread Chun-Kuang Hu
Hi, Jason: jason-jh.lin 於 2021年8月25日 週三 下午10:48寫道: > > 1. Add mt8195 SoC binding to AAL, CCORR, COLOR, DITHER, GAMMA, MERGE, >MUTEX, OVL and RDMA yaml schema. > > 2. Add MERGE additional property description for mt8195 > - async clock > - fifo setting enable > - reset controller I would like

Re: [PATCH v9 04/14] dt-bindings: mediatek: add mediatek, dsc.yaml for mt8195 SoC binding

2021-09-04 Thread Chun-Kuang Hu
Hi, Jason: jason-jh.lin 於 2021年8月25日 週三 下午10:48寫道: > > 1. Add mediatek,dsc.yaml to describe DSC module in details. > 2. Add mt8195 SoC binding to mediatek,dsc.yaml. > > Signed-off-by: jason-jh.lin > --- > .../display/mediatek/mediatek,dsc.yaml| 70 +++ > 1 file changed,

Re: [PATCH v9 03/14] dt-bindings: mediatek: display: split each block to individual yaml

2021-09-04 Thread Chun-Kuang Hu
Hi, Jason: jason-jh.lin 於 2021年8月25日 週三 下午10:48寫道: > > 1. Remove mediatek,dislpay.txt > 2. Split each display function block to individual yaml file. > > Signed-off-by: jason-jh.lin > --- [snip] > diff --git > a/Documentation/devicetree/bindings/display/mediatek/mediatek,aal.yaml > b/Documen

[Bug 211277] sometimes crash at s2ram-wake (Ryzen 3500U): amdgpu, drm, commit_tail, amdgpu_dm_atomic_commit_tail

2021-09-04 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=211277 Arham Jain (arhamj...@gmail.com) changed: What|Removed |Added CC||arhamj...@gmail.com --

[PATCH] drm/fourcc: Add QCOM tiled modifiers

2021-09-04 Thread Rob Clark
From: Rob Clark These are mainly used internally in mesa, although I believe the display should be able to scan out the TILED3 format. Currently we define this modifier internally in mesa for use with modifier based allocation. But we can get rid of that hack if we define the modfiers properly.

[PATCH] drm/radeon: Prefer kcalloc over open coded arithmetic

2021-09-04 Thread Len Baker
As noted in the "Deprecated Interfaces, Language Features, Attributes, and Conventions" documentation [1], size calculations (especially multiplication) should not be performed in memory allocator (or similar) function arguments due to the risk of them overflowing. This could lead to values wrappin

[PATCH] video: fbdev: udlfb: Fix brace coding style error

2021-09-04 Thread Srivathsa Dara
Fix brace coding-style error for function defination Signed-off-by: Srivathsa Dara drivers/video/fbdev/udlfb.c:82 --- drivers/video/fbdev/udlfb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/video/fbdev/udlfb.c b/drivers/video/fbdev/udlfb.c index b9cdd02c1000..25

Re: Regression with mainline kernel on rpi4

2021-09-04 Thread Sudip Mukherjee
Hi Maxime, On Sat, Sep 4, 2021 at 10:10 AM Maxime Ripard wrote: > > On Fri, Sep 03, 2021 at 09:09:50PM +0100, Sudip Mukherjee wrote: > > Hi Maxime, > > > > On Fri, Sep 3, 2021 at 5:03 PM Maxime Ripard wrote: > > > > > > Hi Sudip, > > > > > > On Thu, Sep 02, 2021 at 10:08:19AM +0100, Sudip Mukher

[PATCH] Fix ERROR: trailing statements should be on next line

2021-09-04 Thread srivathsa
Signed-off-by: Srivathsa Dara --- drivers/staging/fbtft/fbtft-core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/fbtft/fbtft-core.c b/drivers/staging/fbtft/fbtft-core.c index ed992ca605eb..65de1c02e7dc 100644 --- a/drivers/staging/fbtft/fbtft-core.c +++

[PATCH] staging: fbtft: fbtft-core: fix 'trailing statements should be on next line' coding style error

2021-09-04 Thread Srivathsa Dara
Fix coding style error 'trailing statements should be on next line' Signed-off-by: Srivathsa Dara --- drivers/staging/fbtft/fbtft-core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/fbtft/fbtft-core.c b/drivers/staging/fbtft/fbtft-core.c index ed992ca605

Re: Regression with mainline kernel on rpi4

2021-09-04 Thread Maxime Ripard
On Fri, Sep 03, 2021 at 09:09:50PM +0100, Sudip Mukherjee wrote: > Hi Maxime, > > On Fri, Sep 3, 2021 at 5:03 PM Maxime Ripard wrote: > > > > Hi Sudip, > > > > On Thu, Sep 02, 2021 at 10:08:19AM +0100, Sudip Mukherjee wrote: > > > Hi All, > > > > > > > > > > > > > > > > You can see the complet

Re: [PATCH] Fix ERROR: trailing statements should be on next line

2021-09-04 Thread Greg KH
On Sat, Sep 04, 2021 at 12:01:27PM +0530, srivathsa wrote: > Signed-off-by: Srivathsa Dara > --- > drivers/staging/fbtft/fbtft-core.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/staging/fbtft/fbtft-core.c > b/drivers/staging/fbtft/fbtft-core.c > index ed99