On Fri, May 09, 2025 at 05:31:40PM +0100, Andre Przywara wrote: > On Fri, 9 May 2025 23:29:50 +0900 > Chen-Yu Tsai <w...@csie.org> wrote: > > > On Fri, May 9, 2025 at 11:14 PM Andre Przywara <andre.przyw...@arm.com> > > wrote: > > > > > > On Wed, 7 May 2025 15:19:21 -0500 > > > Chris Morgan <macroalph...@gmail.com> wrote: > > > > > > Hi, > > > > > > despite the slightly ill fate of this series, I was wondering if we could > > > get the non-controversial clock parts for instance already merged, to > > > reduce the number of patches and mitigate the churn with dependencies? > > > > Sure. Are we expecting any of the DT bits to go in this cycle? > > If not I won't have to split the DT header patch on a separate > > branch. > > I don't think so, the DT wouldn't make much sense on its own anyway. But > I guess it would help if the bindings / binding headers would go in > already? > > Cheers, > Andre
I erred in combining everything into a large patch series, so I'm going to resubmit with things broken out by subsystem/in-order. Do you just want me to resubmit these two patches by themselves or can you take them now since they're the first 2? I won't need them until I add the LCD bindings into the sun50i-h616.dtsi file which will be towards the end of the commit chain. Thank you, Chris. > > > > > > > From: Chris Morgan <macromor...@hotmail.com> > > > > > > > > Add the required LVDS reset for the LCD TCON. Note that while this > > > > reset is exposed for the T507, H616, and H700 only the H700 has > > > > an LCD controller. > > > > > > > > Signed-off-by: Chris Morgan <macromor...@hotmail.com> > > > > Signed-off-by: Ryan Walklin <r...@testtoast.com> > > > > > > Matches the T507 manual: > > > > > > Reviewed-by: Andre Przywara <andre.przyw...@arm.com> > > > > > > Cheers, > > > Andre > > > > > > > --- > > > > drivers/clk/sunxi-ng/ccu-sun50i-h616.c | 1 + > > > > 1 file changed, 1 insertion(+) > > > > > > > > diff --git a/drivers/clk/sunxi-ng/ccu-sun50i-h616.c > > > > b/drivers/clk/sunxi-ng/ccu-sun50i-h616.c > > > > index daa462c7d477..955c614830fa 100644 > > > > --- a/drivers/clk/sunxi-ng/ccu-sun50i-h616.c > > > > +++ b/drivers/clk/sunxi-ng/ccu-sun50i-h616.c > > > > @@ -1094,6 +1094,7 @@ static const struct ccu_reset_map > > > > sun50i_h616_ccu_resets[] = { > > > > [RST_BUS_TCON_LCD1] = { 0xb7c, BIT(17) }, > > > > [RST_BUS_TCON_TV0] = { 0xb9c, BIT(16) }, > > > > [RST_BUS_TCON_TV1] = { 0xb9c, BIT(17) }, > > > > + [RST_BUS_LVDS] = { 0xbac, BIT(16) }, > > > > [RST_BUS_TVE_TOP] = { 0xbbc, BIT(16) }, > > > > [RST_BUS_TVE0] = { 0xbbc, BIT(17) }, > > > > [RST_BUS_HDCP] = { 0xc4c, BIT(16) }, > > > > > > > > >