Re: [PATCH 1/3] video: Introduce video_sync call

2020-12-14 Thread Simon Glass
Hi Michal, On Mon, 14 Dec 2020 at 01:39, Michal Simek wrote: > > Hi Simon, > > On 12. 12. 20 16:35, Simon Glass wrote: > > Hi Michal, > > > > On Thu, 3 Dec 2020 at 02:13, Michal Simek wrote: > >> > >> Some drivers like LCD connected via SPI requires explicit sync function > >> which copy framebu

Re: [PATCH 1/3] video: Introduce video_sync call

2020-12-14 Thread Michal Simek
Hi Simon, On 12. 12. 20 16:35, Simon Glass wrote: > Hi Michal, > > On Thu, 3 Dec 2020 at 02:13, Michal Simek wrote: >> >> Some drivers like LCD connected via SPI requires explicit sync function >> which copy framebuffer content over SPI to controller to display. >> This hook doesn't exist yet th

Re: [PATCH 1/3] video: Introduce video_sync call

2020-12-12 Thread Simon Glass
Hi Michal, On Thu, 3 Dec 2020 at 02:13, Michal Simek wrote: > > Some drivers like LCD connected via SPI requires explicit sync function > which copy framebuffer content over SPI to controller to display. > This hook doesn't exist yet that's why introduce it via video operations. > > Signed-off-by

[PATCH 1/3] video: Introduce video_sync call

2020-12-03 Thread Michal Simek
Some drivers like LCD connected via SPI requires explicit sync function which copy framebuffer content over SPI to controller to display. This hook doesn't exist yet that's why introduce it via video operations. Signed-off-by: Michal Simek --- Simon: Please review this. I didn't find existing wa