Re: [PATCH v2] fbdev: sh_mipi_dsi: remove driver

2016-05-10 Thread Tomi Valkeinen
On 04/04/16 04:48, Simon Horman wrote: > Remove the sh_mipi_dsi driver as it appears to be unused since > c0bb9b302769 ("ARCH: ARM: shmobile: Remove ag5evm board support"). > > Signed-off-by: Simon Horman > --- > Based on v4.6-rc1 > > v2 > * Update patch referred to

Re: [PATCH 0/2] fbdev: sh_mobile_meram: use ARCH_RENESAS

2016-05-10 Thread Tomi Valkeinen
On 11/03/16 04:28, Simon Horman wrote: > Use ARCH_RENESAS in place of ARCH_SHMOBILE. > > This is part of an ongoing process to migrate from ARCH_SHMOBILE to > ARCH_RENESAS the motivation for which being that RENESAS seems to be a more > appropriate name than SHMOBILE for the majority of Renesas

Re: [PATCH 1/6] video: of: Constify node argument to display timing functions

2016-10-21 Thread Tomi Valkeinen
+++--- > include/video/of_display_timing.h | 15 --- > 2 files changed, 11 insertions(+), 10 deletions(-) > > Cc: David Airlie <airl...@linux.ie> > Cc: Tomi Valkeinen <tomi.valkei...@ti.com> Reviewed-by: Tomi Valkeinen <tomi.valkei...@ti.com> And ack for merg

Re: [PATCH 3/4] kms++util: Add verification module

2017-12-18 Thread Tomi Valkeinen
On 18/12/17 13:50, Laurent Pinchart wrote: That's an option too. I had a look at the code once to find out how ImageMagick was performing scaling and gave up with a headache soon afterwards. We need more formats than what ImageMagick currently supports (it's mostly focused on image file formats

Re: [PATCH 3/4] kms++util: Add verification module

2017-12-18 Thread Tomi Valkeinen
On 18/12/17 17:41, Laurent Pinchart wrote: Hi Tomi, On Monday, 18 December 2017 14:04:45 EET Tomi Valkeinen wrote: On 18/12/17 13:50, Laurent Pinchart wrote: That's an option too. I had a look at the code once to find out how ImageMagick was performing scaling and gave up with a headache soon

Re: [PATCH 3/4] kms++util: Add verification module

2017-12-18 Thread Tomi Valkeinen
On 18/12/17 13:36, Laurent Pinchart wrote: The problem with PNG (or any other format really) is that you not only need to encode the image into the target format (PNG or JPG would require external libraries, simpler formats such as BMP or PNM could be handled internally), but you also need to

Re: [PATCH 3/4] kms++util: Add verification module

2017-12-18 Thread Tomi Valkeinen
On 16/12/17 18:13, Kieran Bingham wrote: +void save_raw_frame(IFramebuffer& fb, const char *filename) +{ +    unique_ptr os; +    os = unique_ptr(new ofstream(filename, ofstream::binary)); + +    for (unsigned i = 0; i < fb.num_planes(); ++i) +    os->write((char*)fb.map(i), fb.size(i)); +}

Re: [PATCH 4/4] kms++util: Add frame compare functionality

2017-12-15 Thread Tomi Valkeinen
Hi, On 14/12/17 01:10, Kieran Bingham wrote: From: Kieran Bingham Provide a means to compare two identically sized framebuffers. This basic implementation expects the two buffers to have the same formats and sizes, and will return zero for identical frames,

Re: [PATCH 3/4] kms++util: Add verification module

2017-12-15 Thread Tomi Valkeinen
Hi, On 14/12/17 01:10, Kieran Bingham wrote: From: Kieran Bingham Provide a util module to provide helpers involved in validation and verification of data frames. The first addition is a raw frame binary output with bindings to python modelled on Tomi's

Re: [PATCH 0/4] kms++util: Provide validation helpers

2017-12-15 Thread Tomi Valkeinen
On 14/12/17 01:10, Kieran Bingham wrote: From: Kieran Bingham Our kms-tests test suite for verifying the R-Car DU is based on kmsxx. We are implementing a 'loop-back' validator, by providing an HDMI cable from the display output directly into the HDMI receiver

Re: [PATCH 15/61] gpu: drm: omapdrm: displays: simplify getting .drvdata

2018-05-23 Thread Tomi Valkeinen
On 19/04/18 17:05, Wolfram Sang wrote: > We should get drvdata from struct device directly. Going via > platform_device is an unneeded step back and forth. > > Signed-off-by: Wolfram Sang > --- > > Build tested only. buildbot is happy. Please apply