Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-22 Thread Maxime Ripard
On Sun, Feb 21, 2021 at 09:24:18AM -0700, Simon Glass wrote: > > > > +static int sunxi_de_bind(struct udevice *dev) > > > > +{ > > > > + struct video_uc_plat *plat = dev_get_uclass_plat(dev); > > > > + > > > > + plat->size = LCD_MAX_WIDTH * LCD_MAX_HEIGHT * > > > > +

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-22 Thread Maxime Ripard
Hi Andre, On Sun, Feb 21, 2021 at 12:07:35AM +, Andre Przywara wrote: > > > enum sunxi_monitor { > > > sunxi_monitor_none, > > > sunxi_monitor_dvi, > > > @@ -59,12 +68,11 @@ enum sunxi_monitor { > > > #define SUNXI_MONITOR_LAST sunxi_monitor_composite_pal_nc > > > > > > stru

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-21 Thread Anatolij Gustschin
Hi Andre, On Mon, 22 Feb 2021 00:17:05 + Andre Przywara andre.przyw...@arm.com wrote: ... > Thanks for that. I just sent a v4 with some small fixes and all the > tags. > > And just to be sure: with "queue it" you mean for -next, so the April > merge window? I meant to queue it for my build t

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-21 Thread Andre Przywara
On Sun, 21 Feb 2021 17:47:53 +0100 Anatolij Gustschin wrote: Hi Anatolij, > On Sat, 20 Feb 2021 19:45:17 -0500 > Tom Rini tr...@konsulko.com wrote: > > > On Sun, Feb 21, 2021 at 12:07:35AM +, Andre Przywara wrote: > > > > > On Sun, 7 Feb 2021 07:37:34 -0700 > > > Simon Glass wrote: > >

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-21 Thread Anatolij Gustschin
On Sat, 20 Feb 2021 19:45:17 -0500 Tom Rini tr...@konsulko.com wrote: > On Sun, Feb 21, 2021 at 12:07:35AM +, Andre Przywara wrote: > > > On Sun, 7 Feb 2021 07:37:34 -0700 > > Simon Glass wrote: > > > > Hi Simon, > > > > coming back to this patch, answering to the other comments I skipped

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-21 Thread Simon Glass
Hi Andre, On Sat, 20 Feb 2021 at 17:08, Andre Przywara wrote: > > On Sun, 7 Feb 2021 07:37:34 -0700 > Simon Glass wrote: > > Hi Simon, > > coming back to this patch, answering to the other comments I skipped > over the last time. > > In general this patch is the shortest way to get to some kind

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-20 Thread Tom Rini
On Sun, Feb 21, 2021 at 12:07:35AM +, Andre Przywara wrote: > On Sun, 7 Feb 2021 07:37:34 -0700 > Simon Glass wrote: > > Hi Simon, > > coming back to this patch, answering to the other comments I skipped > over the last time. > > In general this patch is the shortest way to get to some kin

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-20 Thread Andre Przywara
On Sun, 7 Feb 2021 07:37:34 -0700 Simon Glass wrote: Hi Simon, coming back to this patch, answering to the other comments I skipped over the last time. In general this patch is the shortest way to get to some kind of DM driver, in many ways it still looks like a non-DM driver on the inside, whi

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-07 Thread Simon Glass
Hi Andre, On Sun, 7 Feb 2021 at 18:37, Andre Przywara wrote: > > On Sun, 7 Feb 2021 07:37:34 -0700 > Simon Glass wrote: > > Hi Simon, > > > On Thu, 4 Feb 2021 at 18:08, Andre Przywara wrote: > > > > > > From: Jagan Teki > > > > > > DM_VIDEO migration deadline is already expired, but around > >

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-07 Thread Andre Przywara
On Sun, 7 Feb 2021 07:37:34 -0700 Simon Glass wrote: Hi Simon, > On Thu, 4 Feb 2021 at 18:08, Andre Przywara wrote: > > > > From: Jagan Teki > > > > DM_VIDEO migration deadline is already expired, but around > > 80 Allwinner boards are still using video in a legacy way. > > > > ==

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-07 Thread Simon Glass
Hi Andre, On Thu, 4 Feb 2021 at 18:08, Andre Przywara wrote: > > From: Jagan Teki > > DM_VIDEO migration deadline is already expired, but around > 80 Allwinner boards are still using video in a legacy way. > > = WARNING == > This board does not use CONFIG_

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-05 Thread Andre Przywara
On Fri, 05 Feb 2021 17:27:25 +0100 Jernej Škrabec wrote: > Dne petek, 05. februar 2021 ob 02:07:48 CET je Andre Przywara napisal(a): > > From: Jagan Teki > > > > DM_VIDEO migration deadline is already expired, but around > > 80 Allwinner boards are still using video in a legacy way. > > > > ==

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-05 Thread Jernej Škrabec
Dne petek, 05. februar 2021 ob 02:07:48 CET je Andre Przywara napisal(a): > From: Jagan Teki > > DM_VIDEO migration deadline is already expired, but around > 80 Allwinner boards are still using video in a legacy way. > > = WARNING == > This board does not

Re: [PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-05 Thread Maxime Ripard
On Fri, Feb 05, 2021 at 01:07:48AM +, Andre Przywara wrote: > From: Jagan Teki > > DM_VIDEO migration deadline is already expired, but around > 80 Allwinner boards are still using video in a legacy way. > > = WARNING == > This board does not use CONFIG

[PATCH v3] video: sunxi_display: Convert to DM_VIDEO

2021-02-04 Thread Andre Przywara
From: Jagan Teki DM_VIDEO migration deadline is already expired, but around 80 Allwinner boards are still using video in a legacy way. = WARNING == This board does not use CONFIG_DM_VIDEO Please update the board to use CONFIG_DM_VIDEO before the v2019.07 r