This patch fixes the issue by adding a check for IOMMU.
Signed-off-by: Vikas Sajjan
Signed-off-by: Arun Kumar
---
drivers/gpu/drm/exynos/exynos_drm_fbdev.c |9 -
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fbdev.c
b/drivers/gpu/drm
Hi Tomasz,
On 2 August 2013 04:50, Tomasz Figa wrote:
>
> Hi Vikas,
>
> On Thursday 01 of August 2013 16:49:32 Vikas Sajjan wrote:
> > While trying to get boot-logo up on exynos5420 SMDK which has eDP panel
> > connected with resolution 2560x1600, following error occ
Hi Rob,
On 2 August 2013 06:03, Rob Clark wrote:
> On Thu, Aug 1, 2013 at 7:20 PM, Tomasz Figa wrote:
>> Hi Vikas,
>>
>> On Thursday 01 of August 2013 16:49:32 Vikas Sajjan wrote:
>>> While trying to get boot-logo up on exynos5420 SMDK which has eDP panel
>>&
Hi Inki Dae,
On 2 August 2013 12:58, Inki Dae wrote:
>
>
> 2013/8/2 Vikas Sajjan
>>
>> Hi Rob,
>>
>> On 2 August 2013 06:03, Rob Clark wrote:
>> > On Thu, Aug 1, 2013 at 7:20 PM, Tomasz Figa
>> > wrote:
>> >> Hi Vikas,
>&g
Hi Sylwester,
On 2 August 2013 16:28, Sylwester Nawrocki wrote:
> Hi Vikas,
>
> On 08/02/2013 12:10 PM, Vikas Sajjan wrote:
>> yeah, we could not allocate CMA region for FIMD, because the function
>> dma_declare_contiguous() needs "dev" as the first argument and
To address the case where physically continous memory MAY NOT be a
mandatory requirement for fb, the patch adds a feature to get non physically
continous memory for fb if IOMMU is supported and if CONTIG memory allocation
fails.
Signed-off-by: Vikas Sajjan
Signed-off-by: Arun Kumar
---
changes
To address the cases where physically continous memory MAY NOT be a
mandatory requirement for fb, the patch adds a feature to get non physically
continous memory for fb if IOMMU is supported and if CONTIG memory allocation
fails.
Signed-off-by: Vikas Sajjan
Signed-off-by: Arun Kumar
Reviewed-by
Hi Inki,
On Tue, Aug 6, 2013 at 5:27 PM, Sachin Kamat wrote:
> On 6 August 2013 17:22, Vikas Sajjan wrote:
>> While trying to get boot-logo up on exynos5420 SMDK which has eDP panel
>> connected with resolution 2560x1600, following error occured even with
>> IOMMU
To address the cases where physically contiguous memory MAY NOT be a
mandatory requirement for fb, the patch adds a feature to get non physically
contiguous memory for fb if physically contiguous memory allocation fails
and if IOMMU is supported.
Signed-off-by: Vikas Sajjan
Signed-off-by: Arun
Hi Inki Dae,
On 7 August 2013 10:18, Inki Dae wrote:
>
>
>> -Original Message-
>> From: linux-samsung-soc-ow...@vger.kernel.org [mailto:linux-samsung-soc-
>> ow...@vger.kernel.org] On Behalf Of Vikas Sajjan
>> Sent: Wednesday, August 07, 2013 1:11 PM
&g
if IOMMU is supported.
Signed-off-by: Vikas Sajjan
Signed-off-by: Arun Kumar
---
drivers/gpu/drm/exynos/exynos_drm_gem.c | 13 +
1 file changed, 13 insertions(+)
diff --git a/drivers/gpu/drm/exynos/exynos_drm_gem.c
b/drivers/gpu/drm/exynos/exynos_drm_gem.c
index 2eabe1a..66d1b40
adding linux-samsung-soc mailing list and Dave Airlie.
On Fri, Aug 23, 2013 at 12:05 PM, Vikas Sajjan wrote:
> To address the case where physically contiguous memory MAY NOT be a mandatory
> requirement for framebuffer for the application calling
> exynos_drm_gem_dumb_create,
> the
Thanks.
On 27 August 2013 08:14, Inki Dae wrote:
> Applied.
>
> Thanks,
> Inki Dae
>
>> -Original Message-
>> From: Vikas Sajjan [mailto:vikas.saj...@linaro.org]
>> Sent: Friday, August 23, 2013 3:35 PM
>> To: dri-devel@lists.freedesktop
w...@vger.kernel.org [mailto:linux-samsung-soc-
>> ow...@vger.kernel.org] On Behalf Of Vikas Sajjan
>> Sent: Tuesday, August 27, 2013 12:05 PM
>> To: Inki Dae
>> Cc: DRI mailing list; kgene.kim; Sylwester Nawrocki; Rob Clark; Tomasz
>> Figa; Laurent Pinchart
; +struct mipi_dbi_bus *bus);
> +void mipi_dbi_device_unregister(struct mipi_dbi_device *dev);
> +
> +struct mipi_dbi_driver {
> + int(*probe)(struct mipi_dbi_device *);
> + int(*remove)(struct mipi_dbi_device *);
> + struct device_driv
truct mipi_dbi_device *);
> + int(*remove)(struct mipi_dbi_device *);
> + struct device_driver driver;
> + const struct mipi_dbi_device_id *id_table;
> +};
> +
> +#define to_mipi_dbi_driver(d) container_of(d, struct mipi_dbi_driver,
> driver)
> +
> +int mipi_dbi_driver_register(struct mipi_dbi_driver *drv);
> +void mipi_dbi_driver_unregister(struct mipi_dbi_driver *drv);
> +
> +static inline void *mipi_dbi_get_drvdata(const struct mipi_dbi_device *dev)
> +{
> + return dev_get_drvdata(&dev->dev);
> +}
> +
> +static inline void mipi_dbi_set_drvdata(struct mipi_dbi_device *dev,
> + void *data)
> +{
> + dev_set_drvdata(&dev->dev, data);
> +}
> +
> +/* module_mipi_dbi_driver() - Helper macro for drivers that don't do
> + * anything special in module init/exit. This eliminates a lot of
> + * boilerplate. Each module may only use this macro once, and
> + * calling it replaces module_init() and module_exit()
> + */
> +#define module_mipi_dbi_driver(__mipi_dbi_driver) \
> + module_driver(__mipi_dbi_driver, mipi_dbi_driver_register, \
> + mipi_dbi_driver_unregister)
> +
> +int mipi_dbi_set_data_width(struct mipi_dbi_device *dev, unsigned int width);
> +
> +int mipi_dbi_write_command(struct mipi_dbi_device *dev, u16 cmd);
> +int mipi_dbi_read_data(struct mipi_dbi_device *dev, u8 *data, size_t len);
> +int mipi_dbi_write_data(struct mipi_dbi_device *dev, const u8 *data,
> + size_t len);
> +
> +#endif /* __MIPI_DBI_BUS__ */
> --
> 1.8.1.5
>
--
Thanks and Regards
Vikas Sajjan
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
Hi Laurent,
On 6 September 2013 20:07, Laurent Pinchart
wrote:
> Hi Vikas,
>
> On Wednesday 04 September 2013 16:20:59 Vikas Sajjan wrote:
>> On 9 August 2013 22:44, Laurent Pinchart wrote:
>> > MIPI DBI is a configurable-width parallel display bus that transmit
if IOMMU is supported.
Signed-off-by: Vikas Sajjan
Signed-off-by: Arun Kumar
---
drivers/gpu/drm/exynos/exynos_drm_gem.c | 13 +
1 file changed, 13 insertions(+)
diff --git a/drivers/gpu/drm/exynos/exynos_drm_gem.c
b/drivers/gpu/drm/exynos/exynos_drm_gem.c
index 2eabe1a..66d1b40
adding linux-samsung-soc mailing list and Dave Airlie.
On Fri, Aug 23, 2013 at 12:05 PM, Vikas Sajjan
wrote:
> To address the case where physically contiguous memory MAY NOT be a mandatory
> requirement for framebuffer for the application calling
> exynos_drm_gem_dumb_create,
> th
Thanks.
On 27 August 2013 08:14, Inki Dae wrote:
> Applied.
>
> Thanks,
> Inki Dae
>
>> -Original Message-
>> From: Vikas Sajjan [mailto:vikas.sajjan at linaro.org]
>> Sent: Friday, August 23, 2013 3:35 PM
>> To: dri-devel at lists.freedes
owner at vger.kernel.org [mailto:linux-samsung-soc-
>> owner at vger.kernel.org] On Behalf Of Vikas Sajjan
>> Sent: Tuesday, August 27, 2013 12:05 PM
>> To: Inki Dae
>> Cc: DRI mailing list; kgene.kim; Sylwester Nawrocki; Rob Clark; Tomasz
>> Figa; Laurent Pinchart; Patch
robe calls the probe and init
sequence of the LCD driver.
Wanted know if anybody about any thoughts on this ?
2.One more thing is, when went through the patchset I coudn't get who
will register the mipi_dbi_bus_ops?
Regards
Vikas Sajjan
--
Regards,
Laurent Pinchart
Hi Laurent,
Thanks for the reply.
On 17 December 2012 20:55, Laurent Pinchart <
laurent.pinch...@ideasonboard.com> wrote:
> Hi Vikas,
>
> Sorry for the late reply. I now have more time to work on CDF, so delays
> should be much shorter.
>
> On Thursday 06 December 20
Hi All,
On 17 December 2012 20:55, Laurent Pinchart
wrote:
>
> Hi Vikas,
>
> Sorry for the late reply. I now have more time to work on CDF, so delays
> should be much shorter.
>
> On Thursday 06 December 2012 10:51:15 Vikas Sajjan wrote:
> > Hi Laurent,
> >
>
rite = dsi_bus_dcs_write,
.dcs_read = dsi_bus_dcs_read,
.configure_pins = dsi_bus_configure_pins,
.set_clocks = dsi_bus_set_clocks,
.enable = dsi_bus_enable,
.disable = dsi_bus_disable,
.set_size = dsi_bus_set_siz
On 27 December 2012 20:13, Tomasz Figa wrote:
> Hi Laurent,
>
> On Monday 24 of December 2012 15:12:28 Laurent Pinchart wrote:
>> Hi Tomasz,
>>
>> On Friday 21 December 2012 11:00:52 Tomasz Figa wrote:
>> > On Tuesday 18 of December 2012 08:31:30 Vikas Sajjan
Hi Sachin,
Thanks for the comments.
On Thu, Jan 3, 2013 at 11:14 AM, Sachin Kamat wrote:
> Hi Vikas,
>
> Some nitpicks inline
>
> Subject: s/Complaint/Compliant
>
Oops, nice catch.
> On 2 January 2013 18:47, Vikas C Sajjan wrote:
>> From: Vikas Sajjan
>>
>
Hi Mr. Figa,
Thanks for reviewing.
On 3 January 2013 16:29, Tomasz Figa wrote:
> Hi Vikas,
>
> On Wednesday 02 of January 2013 18:47:22 Vikas C Sajjan wrote:
>> From: Vikas Sajjan
>>
>> Signed-off-by: Vikas Sajjan
>> ---
>> include/video/displa
Hi Laurent,
On 10 January 2013 05:05, Laurent Pinchart
wrote:
> Hi Vikas,
>
> Thank you for the patch.
>
> On Friday 04 January 2013 10:24:04 Vikas Sajjan wrote:
>> On 3 January 2013 16:29, Tomasz Figa wrote:
>> > On Wednesday 02 of January 2013 18:47:22 Vikas C S
rg/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
It is tested on Exynos4412 board by applying dependent patches available at
http://www.mail-archive.com/dri-devel@lists.freedesktop.org/msg33354.html
Vikas Sajjan (1):
video: drm: exynos: Adds display-timing node parsing using video
helpe
This patch adds display-timing node parsing using video helper function
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c | 35 --
1 file changed, 33 insertions(+), 2 deletions(-)
diff --git a/drivers
rg/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Is tested on Exynos5250 and Exynos4412 by applying dependent patches available
at http://lists.freedesktop.org/archives/dri-devel/2013-January/033998.html
Vikas Sajjan (1):
video: drm: exynos: Adds display-timing node parsing using video
This patch adds display-timing node parsing using video helper function
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c | 38 +++---
1 file changed, 35 insertions(+), 3 deletions(-)
diff --git a/drivers
Hi Sean,
On 30 January 2013 21:28, Sean Paul wrote:
> On Wed, Jan 30, 2013 at 1:30 AM, Vikas Sajjan wrote:
>> This patch adds display-timing node parsing using video helper function
>>
>> Signed-off-by: Leela Krishna Amudala
>> Signed-off-by: Vikas Sajjan
>&g
Hi Sean,
Sorry, wrongly sent incomplete mail.
On 31 January 2013 10:41, Vikas Sajjan wrote:
> Hi Sean,
>
> On 30 January 2013 21:28, Sean Paul wrote:
>> On Wed, Jan 30, 2013 at 1:30 AM, Vikas Sajjan
>> wrote:
>>> This patch adds display-timing node parsi
/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Is tested on Exynos5250 and Exynos4412 by applying dependent patches available
at http://lists.freedesktop.org/archives/dri-devel/2013-January/033998.html
Vikas Sajjan (1):
video: drm: exynos: Adds display-timing node parsing using video
helper
This patch adds display-timing node parsing using video helper function
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c | 39 +++---
1 file changed, 35 insertions(+), 4 deletions(-)
diff --git a/drivers
v1:
- addressed comments from Sean Paul
Vikas Sajjan (1):
video: drm: exynos: Adds display-timing node parsing using video
helper function
drivers/gpu/drm/exynos/exynos_drm_fimd.c | 41 +++---
1 file changed, 37 insertions(+), 4 de
This patch adds display-timing node parsing using video helper function
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c | 41 +++---
1 file changed, 37 insertions(+), 4 deletions(-)
diff --git a/drivers
Add support for parsing the display-timing node using video helper
function.
The DT node parsing and pinctrl selection is done only if 'dev.of_node'
exists and the NON-DT logic is still maintained under the 'else' part.
Signed-off-by: Leela Krishna Amudala
Signed-
s NON-DT code unchanged.
(reported by: Rahul Sharma )
changes since v1:
- addressed comments from Sean Paul
Vikas Sajjan (1):
video: drm: exynos: Add display-timing node parsing using video
helper function
drivers/gpu/drm/exynos/exynos_drm_fimd.c | 41 ++
Hi Mr. Paul,
On Wed, Feb 6, 2013 at 3:20 PM, Paul Menzel
wrote:
> Am Mittwoch, den 06.02.2013, 09:54 +0530 schrieb Vikas Sajjan:
>> Add support for parsing the display-timing node using video helper
>> function.
>>
>> The DT node parsing and pinctrl selection i
Hi Figa,
On Wed, Jan 30, 2013 at 9:09 PM, Tomasz Figa wrote:
> This patch adds Common Display Framework driver for Samsung s6e8ax0
> MIPI DSI display panel.
>
> Signed-off-by: Tomasz Figa
> Signed-off-by: Kyungmin Park
> ---
> drivers/video/display/Kconfig |3 +
> drivers/video/dis
part of
panel_set_state.
Testing:
Tested on Exynos5 SoC with s6e8aa0 panel connected, by applying some of
the dependent patches
Could see the linux logo and ran "modetest" application and saw the
test pattern on display panel.
Vikas Sajjan (
Adds the frame related ops to MIPI DSI video source struct
Signed-off-by: Vikas Sajjan
---
include/video/display.h |6 ++
1 file changed, 6 insertions(+)
diff --git a/include/video/display.h b/include/video/display.h
index b639fd0..fb2f437 100644
--- a/include/video/display.h
+++ b
Modifies the exynos mipi dsi driver as per the CDF-T.
Signed-off-by: Vikas Sajjan
---
drivers/video/exynos/exynos_mipi_dsi.c| 197 ++---
drivers/video/exynos/exynos_mipi_dsi_common.c | 22 ++-
drivers/video/exynos/exynos_mipi_dsi_common.h | 12 +-
include/video
Made necessary changes in s6e8ax0 panel driver as per the CDF-T.
It also removes the dependency on backlight and lcd framework
Signed-off-by: Vikas Sajjan
---
drivers/video/exynos/s6e8ax0.c | 848 +---
1 file changed, 444 insertions(+), 404 deletions
Hi Mr. Lee,
thanks for the review.
On 14 February 2013 07:30, Donghwa Lee wrote:
> On Wed, Feb 13, 2013 at 19:01, Vikas Sajjan wrote:
>>
>> Made necessary changes in s6e8ax0 panel driver as per the CDF-T.
>> It also removes the dependency on backlight and lcd framewor
Hi Mr. Inki Dae,
Thanks for review.
On 15 February 2013 08:50, Inki Dae wrote:
> 2013/2/6 Vikas Sajjan :
>> Add support for parsing the display-timing node using video helper
>> function.
>>
>> The DT node parsing and pinctrl selection is done only if 'dev.o
Add support for parsing the display-timing node using video helper
function.
The DT node parsing and pinctrl selection is done only if 'dev.of_node'
exists and the NON-DT logic is still maintained under the 'else' part.
Signed-off-by: Leela Krishna Amudala
Signed-
(reported by: Rahul Sharma )
changes since v1:
- addressed comments from Sean Paul
Vikas Sajjan (1):
video: drm: exynos: Add display-timing node parsing using video
helper function
drivers/gpu/drm/exynos/exynos_drm_fimd.c | 37 ++
1 fil
Hi Mr. Inki Dae,
On 20 February 2013 16:45, Inki Dae wrote:
>
>
>> -Original Message-----
>> From: Vikas Sajjan [mailto:vikas.saj...@linaro.org]
>> Sent: Friday, February 15, 2013 3:43 PM
>> To: dri-devel@lists.freedesktop.org
>> Cc: linux-me...@vg
27; function call under
'if (pdev->dev.of_node)', this makes NON-DT code unchanged.
(reported by: Rahul Sharma )
changes since v1:
- addressed comments from Sean Paul
Vikas Sajjan (2):
video: drm: exynos: Add display-timing node parsing u
Add support for parsing the display-timing node using video helper
function.
The DT node parsing and pinctrl selection is done only if 'dev.of_node'
exists and the NON-DT logic is still maintained under the 'else' part.
Signed-off-by: Leela Krishna Amudala
Signed-
Adds support for pinctrl to drm fimd.
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c |9 +
1 file changed, 9 insertions(+)
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
b/drivers/gpu/drm/exynos
Hi,
On 21 February 2013 12:25, Joonyoung Shim wrote:
> Hi,
>
>
> On 02/15/2013 03:43 PM, Vikas Sajjan wrote:
>>
>> Add support for parsing the display-timing node using video helper
>> function.
>>
>> The DT node parsing and pinctrl selection is done o
Hi Mr.Shim,
On 21 February 2013 12:35, Joonyoung Shim wrote:
> Hi,
>
>
> On 02/21/2013 02:11 PM, Vikas Sajjan wrote:
>>
>> Adds support for pinctrl to drm fimd.
>>
>> Signed-off-by: Leela Krishna Amudala
>> Signed-off-by: Vikas Sajjan
>> ---
>
ork.kernel.org/patch/2144861/
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c |4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
index 9537761..433ed35 100644
--- a/dr
return values and print messages.
changes since v2:
- moved 'devm_pinctrl_get_select_default' function call under
'if (pdev->dev.of_node)', this makes NON-DT code unchanged.
(reported by: Rahul Sharma )
changes since v1:
- addres
Add support for parsing the display-timing node using video helper
function.
The DT node parsing and pinctrl selection is done only if 'dev.of_node'
exists and the NON-DT logic is still maintained under the 'else' part.
Signed-off-by: Leela Krishna Amudala
Signed-
Adds support for pinctrl to drm fimd
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c |9 +
1 file changed, 9 insertions(+)
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
b/drivers/gpu/drm/exynos
On Thu, Feb 28, 2013 at 8:21 AM, Joonyoung Shim wrote:
> On 02/28/2013 11:45 AM, Vikas Sajjan wrote:
>>
>> Hi,
>>
>> On 28 February 2013 08:07, Joonyoung Shim wrote:
>>>
>>> On 02/27/2013 08:49 PM, Vikas Sajjan wrote:
>>>>
>>>&g
Thanks Mr. Shim.
On 28 February 2013 08:12, Joonyoung Shim wrote:
> On 02/27/2013 07:32 PM, Vikas Sajjan wrote:
>>
>> modified compatible string for exynos4 fimd as "exynos4210-fimd" and
>> exynos5 fimd as "exynos5250-fimd" to stick to the rule that
Hi,
On 28 February 2013 08:07, Joonyoung Shim wrote:
> On 02/27/2013 08:49 PM, Vikas Sajjan wrote:
>>
>> Add support for parsing the display-timing node using video helper
>> function.
>>
>> The DT node parsing and pinctrl selection is done only if 'dev.of_n
print messages.
changes since v2:
- moved 'devm_pinctrl_get_select_default' function call under
'if (pdev->dev.of_node)', this makes NON-DT code unchanged.
(reported by: Rahul Sharma )
changes since v1:
- addressed comments from
Add support for parsing the display-timing node using video helper
function.
The DT node parsing is done only if 'dev.of_node'
exists and the NON-DT logic is still maintained under the 'else' part.
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
Acke
Adds support for pinctrl to drm fimd
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c |9 +
1 file changed, 9 insertions(+)
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
b/drivers/gpu/drm/exynos
Hi Linus,
On Fri, Mar 1, 2013 at 2:49 PM, Linus Walleij wrote:
> On Thu, Feb 28, 2013 at 5:12 AM, Vikas Sajjan wrote:
>
>> Adds support for pinctrl to drm fimd
>>
>> Signed-off-by: Leela Krishna Amudala
>> Signed-off-by: Vikas Sajjan
&g
Hi All,
On Fri, Mar 1, 2013 at 11:04 AM, Vikas Sajjan wrote:
> Adds support for pinctrl to drm fimd
>
> Signed-off-by: Leela Krishna Amudala
> Signed-off-by: Vikas Sajjan
> ---
> drivers/gpu/drm/exynos/exynos_drm_fimd.c |9 +
> 1 file changed, 9 insertion
print messages.
changes since v2:
- moved 'devm_pinctrl_get_select_default' function call under
'if (pdev->dev.of_node)', this makes NON-DT code unchanged.
(reported by: Rahul Sharma )
changes since v1:
- addressed comments from
Add support for parsing the display-timing node using video helper
function.
The DT node parsing is done only if 'dev.of_node'
exists and the NON-DT logic is still maintained under the 'else' part.
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
Acke
Adds support for pinctrl to drm fimd
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c |9 +
1 file changed, 9 insertions(+)
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
b/drivers/gpu/drm/exynos
Hi,
On 6 March 2013 14:12, Inki Dae wrote:
> 2013/3/1 Vikas Sajjan :
>> Add support for parsing the display-timing node using video helper
>> function.
>>
>> The DT node parsing is done only if 'dev.of_node'
>> exists and the NON-DT logic is still mai
>dev.of_node)', this makes NON-DT code unchanged.
(reported by: Rahul Sharma )
changes since v1:
- addressed comments from Sean Paul
Vikas Sajjan (2):
video: drm: exynos: Add display-timing node parsing using video
helper function
drm/exynos: enable OF_VIDEOMODE and FB_MODE_
Add support for parsing the display-timing node using video helper
function.
The DT node parsing is done only if 'dev.of_node'
exists and the NON-DT logic is still maintained under the 'else' part.
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
Acke
patch adds "select OF_VIDEOMODE" and "select FB_MODE_HELPERS" when
EXYNOS_DRM_FIMD config is selected.
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/Kconfig |2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/exynos/Kconfig b/drivers/gpu/drm/
Hi Mr Inki Dae,
On 28 February 2013 08:12, Joonyoung Shim wrote:
> On 02/27/2013 07:32 PM, Vikas Sajjan wrote:
>>
>> modified compatible string for exynos4 fimd as "exynos4210-fimd" and
>> exynos5 fimd as "exynos5250-fimd" to stick to the rule that compat
Thanks.
On 7 March 2013 12:47, Inki Dae wrote:
> Already merged. :)
>
>> -Original Message-----
>> From: Vikas Sajjan [mailto:vikas.saj...@linaro.org]
>> Sent: Thursday, March 07, 2013 4:09 PM
>> To: InKi Dae
>> Cc: dri-devel@lists.freedesktop.org; l
et_select_default' function call under
'if (pdev->dev.of_node)', this makes NON-DT code unchanged.
(reported by: Rahul Sharma )
changes since v1:
- addressed comments from Sean Paul
Vikas Sajjan (2):
video: drm: exynos: Add display-timing node pars
Add support for parsing the display-timing node using video helper
function.
The DT node parsing is done only if 'dev.of_node'
exists and the NON-DT logic is still maintained under the 'else' part.
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
Acke
patch adds "select OF_VIDEOMODE" and "select FB_MODE_HELPERS" when
EXYNOS_DRM_FIMD config is selected.
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/Kconfig |2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/exynos/Kconfig b/drivers/gpu/drm/
Hi Mr. Dae,
On 7 March 2013 13:34, Inki Dae wrote:
>
>
>> -Original Message-
>> From: linux-media-ow...@vger.kernel.org [mailto:linux-media-
>> ow...@vger.kernel.org] On Behalf Of Vikas Sajjan
>> Sent: Thursday, March 07, 2013 4:40 PM
>> To: dri-deve
l , to modify
the return values and print messages.
changes since v2:
- moved 'devm_pinctrl_get_select_default' function call under
'if (pdev->dev.of_node)', this makes NON-DT code unchanged.
(reported by: Rahul Sharma )
changes since
Add support for parsing the display-timing node using video helper
function.
The DT node parsing is done only if 'dev.of_node'
exists and the NON-DT logic is still maintained under the 'else' part.
Signed-off-by: Leela Krishna Amudala
Signed-off-by: Vikas Sajjan
Acke
patch adds "select OF_VIDEOMODE" and "select FB_MODE_HELPERS" when
EXYNOS_DRM_FIMD config is selected. Also adds the "OF" dependency.
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/Kconfig |4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff
<11, 2> keeping "vsync" as the 1st paramter.
This patch fixes the above mentioned "hack" of re-ordering of the
FIMD interrupt numbers by getting interrupt resource of FIMD by using
platform_get_resource_byname().
Signed-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos
-off-by: Vikas Sajjan
---
drivers/gpu/drm/exynos/exynos_drm_fimd.c |3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
index 9537761..d93dd8a 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
+++ b/drivers
patch also replaces clk_disable() with clk_disable_unprepare()
during exit.
Signed-off-by: Vikas Sajjan
---
Changes since v1:
- added error checking for clk_prepare_enable() and also replaced
clk_disable() with clk_disable_unprepare() during exit.
---
drivers/gpu/drm/exynos
Hi,
On 27 March 2013 15:53, Inki Dae wrote:
> 2013/3/20 Vikas Sajjan :
>> While migrating to common clock framework (CCF), found that the FIMD clocks
>> were pulled down by the CCF.
>> If CCF finds any clock(s) which has NOT been claimed by any of the
>> drivers, th
patch also replaces clk_disable() with clk_disable_unprepare()
during exit.
Signed-off-by: Vikas Sajjan
---
Changes since v2:
- moved clk_prepare_enable() and clk_disable_unprepare() from
fimd_probe() to fimd_clock() as suggested by Inki Dae
Changes since v1:
- added error
Hi Mr. Inki Dae,
Can you please review this patch.?
On Wed, Mar 13, 2013 at 4:22 PM, Vikas Sajjan wrote:
> Replaces the "platform_get_resource() for IORESOURCE_IRQ" with
> platform_get_resource_byname().
> Both in exynos4 and exynos5, FIMD IP has 3 interrupts in the orde
replaces clk_disable() with clk_unprepare() during exit, since
clk_prepare() is called in fimd_probe().
Signed-off-by: Vikas Sajjan
---
Changes since v3:
- added clk_prepare() in fimd_probe() and clk_unprepare() in
fimd_remove()
as suggested by Viresh Kumar
Changes since v2
Hi Inki Dae and Viresh,
On 8 April 2013 16:41, Viresh Kumar wrote:
> On 8 April 2013 16:37, Vikas Sajjan wrote:
> > While migrating to common clock framework (CCF), I found that the FIMD
> clocks
> > were pulled down by the CCF.
> > If CCF finds any clock(s) which has
On Apr 20, 2013 8:56 PM, "Inki Dae" wrote:
>
>
>
>
> 2013/4/19 Vikas Sajjan
>>
>> Hi Inki Dae and Viresh,
>>
>> On 8 April 2013 16:41, Viresh Kumar wrote:
>>>
>>> On 8 April 2013 16:37, Vikas Sajjan wrote:
>>> >
Hi Mr Dae,
On 22 April 2013 11:19, Inki Dae wrote:
> Hi, Mr. Vikas
>
> Please fix the below typos Viresh pointed out and my comments.
>
> > -Original Message-
> > From: Viresh Kumar [mailto:viresh.ku...@linaro.org]
> > Sent: Monday, April 01, 2013 5:51
Hi Tomasz,
On 10 May 2013 08:25, Vikas Sajjan wrote:
> Hi Tomasz,
>
>
> On 10 May 2013 05:35, Tomasz Figa wrote:
>
>> Hi Vikas,
>>
>> On Wednesday 08 of May 2013 11:31:34 Vikas Sajjan wrote:
>> > Adds display timing node for a DP panel to Arndale Boa
robe calls the probe and init
sequence of the LCD driver.
Wanted know if anybody about any thoughts on this ?
2.One more thing is, when went through the patchset I coudn't get who
will register the mipi_dbi_bus_ops?
Regards
Vikas Sajjan
--
Regards,
Laurent Pinchart
-- next part ---
Hi Laurent,
Thanks for the reply.
On 17 December 2012 20:55, Laurent Pinchart <
laurent.pinchart at ideasonboard.com> wrote:
> Hi Vikas,
>
> Sorry for the late reply. I now have more time to work on CDF, so delays
> should be much shorter.
>
> On Thursday 06 December 20
Hi All,
On 17 December 2012 20:55, Laurent Pinchart
wrote:
>
> Hi Vikas,
>
> Sorry for the late reply. I now have more time to work on CDF, so delays
> should be much shorter.
>
> On Thursday 06 December 2012 10:51:15 Vikas Sajjan wrote:
> > Hi Laurent,
> >
>
rite = dsi_bus_dcs_write,
.dcs_read = dsi_bus_dcs_read,
.configure_pins = dsi_bus_configure_pins,
.set_clocks = dsi_bus_set_clocks,
.enable = dsi_bus_enable,
.disable = dsi_bus_disable,
.set_size = dsi_bus_set_size,
.set_operation_mode = dsi_bus_set_operation_mode,
.set_pixel_format = dsi_bus_set_pixel_format,
.enable_hs = dsi_bus_enable_hs,
};
if you can post CDF v3 patches early, it will give us more clarity
w.r.t to discussions you and Tomi had.
> Points that we forgot to discuss
>
>
> - DISPLAY_ENTITY_STREAM_SINGLE_SHOT vs. update() operation
>
> I'll look into that.
>
> Please let me know if I've forgotten anything.
>
> --
> Regards,
>
> Laurent Pinchart
Regards
Vikas Sajjan
Samsung India Software Operations Pvt Ltd.
Bangalore , India.
> ___
> dri-devel mailing list
> dri-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
1 - 100 of 181 matches
Mail list logo