[PATCH v4 05/11] media: davinci: vpif_capture: use module_platform_driver()

2013-06-17 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch uses module_platform_driver() to simplify the code. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/platform/davinci/vpif_capture.c | 28

[PATCH v4 10/11] media: davinci: vpif_display: Convert to devm_* api

2013-06-17 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com use devm_request_irq() instead of request_irq(). This ensures more consistent error values and simplifies error paths. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com ---

[PATCH v4 02/11] media: davinci: vpif: Convert to devm_* api

2013-06-17 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Use devm_ioremap_resource instead of reques_mem_region()/ioremap(). This ensures more consistent error values and simplifies error paths. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Acked-by: Laurent Pinchart

[PATCH v4 00/11] media: davinci: vpif driver cleanup

2013-06-17 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch series cleans the VPIF driver, uses devm_* api wherever required and uses module_platform_driver() to simplify the code. This patch series applies on http://git.linuxtv.org/hverkuil/media_tree.git/ shortlog/refs/heads/for-v3.11 and is

Re: [PATCH v2] ARM: edma: Convert to devm_* api

2013-06-18 Thread Prabhakar Lad
Hi Sekhar, On Tue, Jun 18, 2013 at 2:05 PM, Sekhar Nori nsek...@ti.com wrote: On 6/17/2013 8:27 PM, Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com Use devm_ioremap_resource instead of reques_mem_region()/ioremap(), devm_request_irq() instead of request_irq() and kzalloc

[PATCH RFC] media: i2c: mt9p031: add OF support

2013-04-29 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the mt9p031 sensor driver. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com Cc: Mauro Carvalho Chehab mche...@redhat.com Cc:

Re: [PATCH RFC] media: i2c: mt9p031: add OF support

2013-04-29 Thread Prabhakar Lad
), + GFP_KERNEL); + if (!pdata) { + pr_warn(mt9p031 failed allocate memeory\n); Use dev_* for messages inside drivers. Fixed it. Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: [PATCH RFC] media: i2c: mt9p031: add OF support

2013-04-29 Thread Prabhakar Lad
= mt9p031_of_match, You can use the of_match_ptr() macro instead of defining mt9p031_of_match as NULL above. Ok Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: [PATCH] media: i2c: tvp514x: add OF support

2013-04-29 Thread Prabhakar Lad
as well. On Friday 26 April 2013 16:53:50 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the tvp514x driver. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Laurent Pinchart laurent.pinch

Re: [PATCH] media: i2c: tvp7002: enable TVP7002 decoder for media controller based usage

2013-04-29 Thread Prabhakar Lad
Hi Laurent, Thanks for the review. On Mon, Apr 29, 2013 at 7:57 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Prabhakar, Thank you for the patch. On Friday 26 April 2013 13:35:35 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch enables

Re: [PATCH] media: i2c: tvp7002: enable TVP7002 decoder for media controller based usage

2013-04-29 Thread Prabhakar Lad
Hi Laurent, On Mon, Apr 29, 2013 at 11:06 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Prabhakar, On Monday 29 April 2013 23:00:26 Prabhakar Lad wrote: On Mon, Apr 29, 2013 at 7:57 PM, Laurent Pinchart wrote: On Friday 26 April 2013 13:35:35 Prabhakar Lad wrote: From

Re: [PATCH] media: i2c: adv7343: add OF support

2013-04-29 Thread Prabhakar Lad
Hi Laurent, Thanks for the review. On Mon, Apr 29, 2013 at 7:32 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Prabhakar, Thank you for the patch. On Friday 26 April 2013 18:48:06 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support

[PATCH v2] media: i2c: tvp7002: enable TVP7002 decoder for media controller based usage

2013-05-01 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch enables tvp7002 decoder driver for media controller based usage by adding v4l2_subdev_pad_ops operations support for enum_mbus_code, set_pad_format, get_pad_format and media_entity_init() on probe and media_entity_cleanup() on remove.

[PATCH RFC v2] media: i2c: mt9p031: add OF support

2013-05-02 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the mt9p031 sensor driver. Alongside this patch sorts the header inclusion alphabetically. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Laurent Pinchart

Re: [PATCH] media: i2c: adv7343: add OF support

2013-05-02 Thread Prabhakar Lad
Hi Sylwester, Thanks for the review. On Mon, Apr 29, 2013 at 10:21 PM, Sylwester Nawrocki s.nawro...@samsung.com wrote: Hi, On 04/26/2013 03:18 PM, Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the adv7343 driver. +++ b/Documentation/devicetree

Re: [PATCH RFC v2] media: i2c: mt9p031: add OF support

2013-05-02 Thread Prabhakar Lad
Hi Sascha, Thanks for the quick review. On Thu, May 2, 2013 at 12:25 PM, Sascha Hauer s.ha...@pengutronix.de wrote: On Thu, May 02, 2013 at 11:52:34AM +0530, Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the mt9p031 sensor driver. Alongside

Re: [PATCH RFC v2] media: i2c: mt9p031: add OF support

2013-05-02 Thread Prabhakar Lad
Hi Laurent, Thanks for the review. On Thu, May 2, 2013 at 4:32 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Prabhakar, Thank you for the patch. On Thursday 02 May 2013 12:34:25 Prabhakar Lad wrote: On Thu, May 2, 2013 at 12:25 PM, Sascha Hauer wrote: On Thu, May 02

Re: [PATCH v2] media: i2c: tvp7002: enable TVP7002 decoder for media controller based usage

2013-05-02 Thread Prabhakar Lad
Hi Laurent, Thanks for the review. On Thu, May 2, 2013 at 4:40 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Ho Prabhakar, Thank you for the patch. On Thursday 02 May 2013 11:14:42 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch enables

[PATCH RFC v3] media: i2c: mt9p031: add OF support

2013-05-03 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the mt9p031 sensor driver. Alongside this patch sorts the header inclusion alphabetically. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Laurent Pinchart

[PATCH v3] media: i2c: tvp7002: enable TVP7002 decoder for media controller based usage

2013-05-03 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch enables tvp7002 decoder driver for media controller based usage by adding v4l2_subdev_pad_ops operations support for enum_mbus_code, set_pad_format, get_pad_format and media_entity_init() on probe and media_entity_cleanup() on remove.

[PATCH] media: davinci: vpbe: fix layer availability for NV12 format

2013-05-03 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com For NV12 format, even if display data is single image, both VIDWIN0 and VIDWIN1 parameters must be used. The start address of Y data plane and C data plane is configured in VIDEOWIN0ADH/L and VIDEOWIN1ADH/L respectively. cuurently only one layer was

Re: [PATCH 0/6] Davinci fbdev driver and enable it for DMx platform

2013-05-03 Thread Prabhakar Lad
On Fri, May 3, 2013 at 3:25 PM, Sekhar Nori nsek...@ti.com wrote: On 4/26/2013 11:16 AM, Prabhakar Lad wrote: Hi Laurent, On Thu, Apr 25, 2013 at 2:32 AM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Prabhakar, Thank you for the patch. On Wednesday 24 April 2013 17:30:02

Re: [PATCH, RFC 21/22] davinci: vpfe_capture needs i2c

2013-05-03 Thread Prabhakar Lad
, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

[PATCH RESEND] media: davinci: vpbe: fix checkpatch warning for CamelCase

2013-05-03 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch fixes checkpatch warning to avoid CamelCase. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- The initial version of this patch was a part of series, which is intended to be dropped so sending this patch individually.

Re: [PATCH] ARM: daVinci: remove __init modifier from function declaration

2013-06-04 Thread Prabhakar Lad
Hi Sekhar, On Mon, Apr 1, 2013 at 5:03 PM, Prabhakar lad prabhakar.cse...@gmail.com wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch removes the __init modifier from function declaration of all the header files for davinci platform. gentle ping for v3.11 Regards

[PATCH v6] media: i2c: tvp514x: add OF support

2013-06-04 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the tvp514x driver. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Mauro Carvalho Chehab mche...@redhat.com Cc:

Re: [PATCH v2 1/4] ARM: davinci: dm365 evm: remove init_enable from ths7303 pdata

2013-06-06 Thread Prabhakar Lad
Hi Sekhar, On Thu, Jun 6, 2013 at 10:06 AM, Sekhar Nori nsek...@ti.com wrote: On 5/25/2013 11:09 PM, Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com remove init_enable from ths7303 pdata as it is being dropped from ths7303_platform_data. Signed-off-by: Lad, Prabhakar

Re: [PATCH v2 0/4] media: i2c: ths7303 cleanup

2013-06-06 Thread Prabhakar Lad
Hi Hans, On Sun, May 26, 2013 at 6:50 AM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: On Saturday 25 May 2013 23:09:32 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com Trivial cleanup of the driver. Changes for v2: 1: Dropped the asynchronous probing

[PATCH 0/2] media: i2c: ths8200: Feature enhancement

2013-06-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com The first patch of the series adds supports for asynchronous subdev registration for ths8200 driver, and the second patch of the series adds OF support the driver. Lad, Prabhakar (2): media: i2c: ths8200: support asynchronous probing media:

[PATCH 1/2] media: i2c: ths8200: support asynchronous probing

2013-06-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch supports both synchronous and asynchronous ths8200 subdevice probing. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/media/i2c/ths8200.c |9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git

[PATCH 2/2] media: i2c: ths8200: add OF support

2013-06-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the ths8200 driver. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- .../devicetree/bindings/media/i2c/ths8200.txt | 19 +++ drivers/media/i2c/ths8200.c|9 +

[PATCH] media: i2c: adv7343: add support for asynchronous probing

2013-06-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Both synchronous and asynchronous adv7343 subdevice probing is supported by this patch. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com

[PATCH] media: i2c: tvp514x: add support for asynchronous probing

2013-06-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Both synchronous and asynchronous tvp514x subdevice probing is supported by this patch. Signed-off-by: Prabhakar Lad prabhakar.cse...@gmail.com Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com

[PATCH RFC v3] media: OF: add video sync endpoint property

2013-06-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch adds video sync properties as part of endpoint properties and also support to parse them in the parser. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Laurent Pinchart

[PATCH v2 0/2] media: i2c: tvp7002: feature enhancement

2013-06-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com The first patch of the series add support for asynchronous probing and the second patch adds OF support to tvp7002 driver. Lad, Prabhakar (2): media: i2c: tvp7002: add support for asynchronous probing media: i2c: tvp7002: add OF support

[PATCH v2 1/2] media: i2c: tvp7002: add support for asynchronous probing

2013-06-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Both synchronous and asynchronous tvp7002 subdevice probing is supported by this patch. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com Cc:

[PATCH v2 2/2] media: i2c: tvp7002: add OF support

2013-06-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the tvp7002 driver. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com Cc: Mauro Carvalho Chehab mche...@redhat.com Cc: Guennadi

[PATCH v3 2/6] ARM: davinci: da850: add DT node for mdio device

2013-06-23 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add mdio device tree node information to da850 by providing register details and bus frequency of mdio. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: linux-arm-ker...@lists.infradead.org Cc: linux-kernel@vger.kernel.org Cc:

[PATCH v3 0/6] ARM: davinci: da850: add ethernet driver DT support

2013-06-23 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch set enables Ethernet support through device tree model. This patch set enables mii interface only and is being tested to boot via rootfs. The rmii phy is present on the i2c gpio expander chip (UI board) for which yet support needs to be

[PATCH v3 3/6] ARM: davinci: da850: add OF_DEV_AUXDATA entry for mdio.

2013-06-23 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add OF_DEV_AUXDATA for mdio driver in da850 board dt file to use mdio clock. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: linux-arm-ker...@lists.infradead.org Cc: linux-kernel@vger.kernel.org Cc:

[PATCH v3 1/6] ARM: davinci: da8xx: fix clock lookup for mdio device

2013-06-23 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch removes the clock alias for mdio device and adds a entry in clock lookup table, this entry can now be used by both DT and NON DT case. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: linux-arm-ker...@lists.infradead.org Cc:

[PATCH v3 4/6] ARM: davinci: da850: add DT node for eth0.

2013-06-23 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add eth0 device tree node information and pinmux for mii to da850 by providing interrupt details and local mac address of eth0. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: linux-arm-ker...@lists.infradead.org Cc:

[PATCH v3 6/6] ARM: davinci: da850: configure system configuration chip(CFGCHIP3) for emac

2013-06-23 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch makes a common function for to configure emac and calls it appropriately in DT and non DT boot mode. The system configuration chip CFGCHIP3, controls the emac module. This patch appropriately configures this register for emac and sets

[PATCH v3 5/6] ARM: davinci: da850: add OF_DEV_AUXDATA entry for eth0.

2013-06-23 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add OF_DEV_AUXDATA for eth0 driver in da850 board dt file to use emac clock. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: linux-arm-ker...@lists.infradead.org Cc: linux-kernel@vger.kernel.org Cc:

Re: [PATCH] media: i2c: tvp514x: add support for asynchronous probing

2013-06-23 Thread Prabhakar Lad
Hi Guennadi, Thanks for the review. On Sun, Jun 23, 2013 at 8:49 PM, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: On Sat, 22 Jun 2013, Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com Both synchronous and asynchronous tvp514x subdevice probing is supported

Re: [PATCH v2 1/2] media: i2c: tvp7002: add support for asynchronous probing

2013-06-24 Thread Prabhakar Lad
Hi Hans, On Mon, Jun 24, 2013 at 12:44 PM, Hans Verkuil hverk...@xs4all.nl wrote: On Sat June 22 2013 19:44:14 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com Both synchronous and asynchronous tvp7002 subdevice probing is supported by this patch. Can I merge this patch

Re: [PATCH] media: i2c: tvp514x: add support for asynchronous probing

2013-06-24 Thread Prabhakar Lad
Hi Hans, On Mon, Jun 24, 2013 at 12:41 PM, Hans Verkuil hverk...@xs4all.nl wrote: On Sun June 23 2013 17:48:20 Prabhakar Lad wrote: Hi Guennadi, Thanks for the review. On Sun, Jun 23, 2013 at 8:49 PM, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: On Sat, 22 Jun 2013, Prabhakar Lad

Re: [PATCH] media: i2c: tvp514x: add support for asynchronous probing

2013-06-24 Thread Prabhakar Lad
Hi Hans, On Mon, Jun 24, 2013 at 2:09 PM, Hans Verkuil hverk...@xs4all.nl wrote: On Mon June 24 2013 10:24:02 Prabhakar Lad wrote: Hi Hans, On Mon, Jun 24, 2013 at 12:41 PM, Hans Verkuil hverk...@xs4all.nl wrote: On Sun June 23 2013 17:48:20 Prabhakar Lad wrote: Hi Guennadi, Thanks

[PATCH 0/2] tvp514x/tvp7002 remove manual setting of subdev names

2013-06-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch series removes manual setting of subdev names, as ideally the subdev names must be unique and this would not be the case if there are two devices. Lad, Prabhakar (2): media: i2c: tvp7002: remove manual setting of subdev name media:

[PATCH 1/2] media: i2c: tvp7002: remove manual setting of subdev name

2013-06-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch removes manual setting of subdev name in the probe, ideally subdev names must be unique. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hverk...@xs4all.nl --- drivers/media/i2c/tvp7002.c |1 - 1 file

[PATCH 2/2] media: i2c: tvp514x: remove manual setting of subdev name

2013-06-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch removes manual setting of subdev name in the probe, ideally subdev names must be unique. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hverk...@xs4all.nl --- drivers/media/i2c/tvp514x.c |1 - 1 file

[PATCH v2] media: i2c: tvp514x: add support for asynchronous probing

2013-06-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Both synchronous and asynchronous tvp514x subdevice probing is supported by this patch. This patch also fixes the error path by calling media_entity_cleanup() on failure in probe when CONFIG_MEDIA_CONTROLLER is enabled. Signed-off-by: Prabhakar Lad

Re: [PATCH RFC v3] media: OF: add video sync endpoint property

2013-06-24 Thread Prabhakar Lad
Hi Hans, Thanks for the review. On Mon, Jun 24, 2013 at 1:21 PM, Hans Verkuil hverk...@xs4all.nl wrote: Hi Prabhakar, On Sat June 22 2013 17:03:03 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch adds video sync properties as part of endpoint properties

Re: [PATCH RFC v3] media: OF: add video sync endpoint property

2013-06-25 Thread Prabhakar Lad
Hi Hans, On Mon, Jun 24, 2013 at 1:21 PM, Hans Verkuil hverk...@xs4all.nl wrote: Hi Prabhakar, On Sat June 22 2013 17:03:03 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com [snip] +#ifndef _DT_BINDINGS_VIDEO_INTERFACES_H +#define _DT_BINDINGS_VIDEO_INTERFACES_H

[PATCH 1/2] media: davinci: vpif: capture: add V4L2-async support

2013-06-25 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add support for asynchronous subdevice probing, using the v4l2-async API. The legacy synchronous mode is still supported too, which allows to gradually update drivers and platforms. Signed-off-by: Prabhakar Lad prabhakar.cse...@gmail.com Cc

[PATCH 0/2] media: davinci: vpif: capture/display support for async subdevice probing

2013-06-25 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch series adds support for vpif capture and display driver to support asynchronously register subdevices. Need for this support: Currently bridge device drivers register devices for all subdevices synchronously, typically, during their

[PATCH 2/2] media: davinci: vpif: display: add V4L2-async support

2013-06-25 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add support for asynchronous subdevice probing, using the v4l2-async API. The legacy synchronous mode is still supported too, which allows to gradually update drivers and platforms. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc:

[PATCH v2 0/3] net: davinci: driver cleanup

2013-06-25 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch series cleans up the davinci driver. This patch series applies on 3.10.rc7 and is boot tested on OMAP-L138 EVM with DT and non DT cases. Changes for v2: 1: Dropped patches which removed include files. Lad, Prabhakar (3): net:

[PATCH v2 2/3] net: davinci_emac: simplify the OF parser code

2013-06-25 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch cleans up the OF parser code, removes unnecessary checks on of_property_read_*() and guards davinci_emac_of_match table with CONFIG_OF. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/net/ethernet/ti/davinci_emac.c

[PATCH v2 3/3] net: davinci_mdio: gaurd the DT code with IS_ENABLED(CONFIG_OF)

2013-06-25 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com guard the davinci_mdio_of_mtable table and davinci_mdio_probe_dt() with CONFIG_OF. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/net/ethernet/ti/davinci_mdio.c |5 - 1 file changed, 4 insertions(+), 1 deletion(-)

[PATCH v2 1/3] net: davinci: emac: Convert to devm_* api

2013-06-25 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Use devm_ioremap_resource instead of devm_request_mem_region()/devm_ioremap() and devm_request_irq() instead of request_irq(). This ensures more consistent error values and simplifies error paths. Signed-off-by: Lad, Prabhakar

Re: [PATCH 2/2] video:da8xx-fb: Convert to devm_* api

2013-06-26 Thread Prabhakar Lad
error values and simplifies error paths. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- Can you pick up this patch and drop 1/2. Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org

Re: [PATCH 2/2] video:da8xx-fb: Convert to devm_* api

2013-06-26 Thread Prabhakar Lad
da8xx-fb series. Can you check if there are differences? I don't see similar changes in his patch series. Darren while you are at it you can take this patch along you series. let me know how you plan to. Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux

Re: [PATCH 2/2] video:da8xx-fb: Convert to devm_* api

2013-06-26 Thread Prabhakar Lad
Hi Tomi, On Wed, Jun 26, 2013 at 5:30 PM, Tomi Valkeinen tomi.valkei...@ti.com wrote: On 26/06/13 14:56, Prabhakar Lad wrote: Hi Tomi, On Wed, Jun 26, 2013 at 5:09 PM, Tomi Valkeinen tomi.valkei...@ti.com wrote: On 16/05/13 10:10, Lad Prabhakar wrote: From: Lad, Prabhakar prabhakar.cse

Re: [PATCH 1/2] media: davinci: vpif: capture: add V4L2-async support

2013-06-27 Thread Prabhakar Lad
Hi Hans, Thanks for the review. On Thu, Jun 27, 2013 at 11:27 AM, Hans Verkuil hverk...@xs4all.nl wrote: On Tue June 25 2013 17:17:34 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com Add support for asynchronous subdevice probing, using the v4l2-async API. The legacy

Re: [PATCH 1/2] rtc: omap: add option to indicate wakeup support through DT

2013-05-31 Thread Prabhakar Lad
in previous ompa1 boards. [snip] +Optional properties: +- ti,wakeup_capable: Inform the rtc driver that this module is wake-up For devicetree properties '-' is preferred over '_'. Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body

Re: [PATCH 2/2] rtc: omap: add rtc wakeup support to alarm events

2013-05-31 Thread Prabhakar Lad
of the file ? Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH v2 1/4] ARM: davinci: dm365 evm: remove init_enable from ths7303 pdata

2013-05-31 Thread Prabhakar Lad
Hi Sekhar, On Sat, May 25, 2013 at 11:13 PM, Prabhakar Lad prabhakar.cse...@gmail.com wrote: Hi Sekhar, On Sat, May 25, 2013 at 11:09 PM, Prabhakar Lad prabhakar.cse...@gmail.com wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com remove init_enable from ths7303 pdata as it is being

Re: [PATCH] of/base: fix typos

2013-05-31 Thread Prabhakar Lad
Hi Linus, On Thu, May 23, 2013 at 5:58 PM, Prabhakar Lad prabhakar.cse...@gmail.com wrote: Hi Rob/Grant, On Tue, May 7, 2013 at 11:34 AM, Prabhakar Lad prabhakar.cse...@gmail.com wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com the function of_property_read_u8/16/32_array() has

[PATCH 0/2] media: i2c: add suppport for ths8200 encoder.

2013-06-03 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com The first patch of the series adds support for the THS8200 encoder The full datasheets are available from TI website[1]. The second patch of the series adds supports for v4l-async subdevice probing. [1] http://www.ti.com/product/ths8200 Hans

[PATCH 1/2] media: i2c: ths8200: driver for TI video encoder.

2013-06-03 Thread Prabhakar Lad
From: Hans Verkuil hans.verk...@cisco.com The full datasheets are available from TI website:- http://www.ti.com/product/ths8200 Note:- This patch adds support only for progressive format as of now. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Mats Randgaard

[PATCH 2/2] media: i2c: ths8200: add support v4l-async

2013-06-03 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch supports ths8200 driver for v4l-async subdevice probing. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/media/i2c/ths8200.c | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git

[PATCH RFC v2 0/4] media: davinci: vpif: capture/display support for async subdevice probing

2013-04-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch series adds support for vpif capture and display driver to support asynchronously register subdevices. The first two patches adds asynchronous probing for adv7343 and tvp514x respectively. Need for this support: Currently bridge device

[PATCH RFC v2 1/4] media: i2c: adv7343: add support for asynchronous probing

2013-04-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Both synchronous and asynchronous adv7343 subdevice probing is supported by this patch. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com

[PATCH RFC v2 2/4] media: i2c: tvp514x: add support for asynchronous probing

2013-04-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Both synchronous and asynchronous tvp514x subdevice probing is supported by this patch. Signed-off-by: Lad, Prabhakar prabhakar@ti.com Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com Cc:

[PATCH RFC v2 3/4] media: davinci: vpif: capture: add V4L2-async support

2013-04-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add support for asynchronous subdevice probing, using the v4l2-async API. The legacy synchronous mode is still supported too, which allows to gradually update drivers and platforms. Signed-off-by: Prabhakar Lad prabhakar.cse...@gmail.com Cc

[PATCH RFC v2 4/4] media: davinci: vpif: display: add V4L2-async support

2013-04-22 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com Add support for asynchronous subdevice probing, using the v4l2-async API. The legacy synchronous mode is still supported too, which allows to gradually update drivers and platforms. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc:

Re: [PATCH RFC v2 1/4] media: i2c: adv7343: add support for asynchronous probing

2013-04-22 Thread Prabhakar Lad
Hi Guennadi, Thanks for the quick review. On Mon, Apr 22, 2013 at 4:08 PM, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: Hi Prabhakar On Mon, 22 Apr 2013, Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com Both synchronous and asynchronous adv7343 subdevice probing

[PATCH 0/6] Davinci fbdev driver and enable it for DMx platform

2013-04-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch series adds an fbdev driver for Texas Instruments Davinci SoC.The display subsystem consists of OSD and VENC, with OSD supporting 2 RGb planes and 2 video planes. http://focus.ti.com/general/docs/lit/

[PATCH 1/6] media: davinci: vpbe: fix checkpatch warning for CamelCase

2013-04-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch fixes checkpatch warning to avoid CamelCase. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- drivers/media/platform/davinci/vpbe_display.c |2 +- drivers/media/platform/davinci/vpbe_osd.c | 24

[PATCH 2/6] media: davinci: vpbe: enable vpbe for fbdev addition

2013-04-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com enable the venc, osd and vpbe display driver for addition of fbdev driver. Mainly includes fbdev ops structure inclusion, palette and osd layer related functionality for OSD block. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com ---

[PATCH 4/6] ARM: davinci: dm355: enable fbdev driver

2013-04-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch enables fbdev driver by creating fbdev device and register it. Alongside renames 'vpfe_capture_dma_mask' to 'dm355_video_dma_mask' for better clarity since it was reused by capture and diplay aswell. Signed-off-by: Lad, Prabhakar

[PATCH 6/6] ARM: davinci: dm644x: enable fbdev driver

2013-04-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch enables fbdev driver by creating fbdev device and register it. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- arch/arm/mach-davinci/dm644x.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git

[PATCH 5/6] ARM: davinci: dm365: enable fbdev driver

2013-04-24 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch enables fbdev driver by creating fbdev device and register it. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com --- arch/arm/mach-davinci/dm365.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git

Re: [PATCH 0/6] Davinci fbdev driver and enable it for DMx platform

2013-04-25 Thread Prabhakar Lad
Hi Laurent, On Thu, Apr 25, 2013 at 2:32 AM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Prabhakar, Thank you for the patch. On Wednesday 24 April 2013 17:30:02 Prabhakar Lad wrote: From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch series adds an fbdev driver

[PATCH] media: i2c: tvp7002: enable TVP7002 decoder for media controller based usage

2013-04-26 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com This patch enables tvp7002 decoder driver for media controller based usage by adding v4l2_subdev_pad_ops operations support for enum_mbus_code, set_pad_format, get_pad_format and media_entity_init() on probe and media_entity_cleanup() on remove.

[PATCH] media: i2c: tvp514x: add OF support

2013-04-26 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the tvp514x driver. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com Cc: Mauro Carvalho Chehab mche...@redhat.com Cc: Guennadi

[PATCH] media: i2c: adv7343: add OF support

2013-04-26 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com add OF support for the adv7343 driver. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com Cc: Hans Verkuil hans.verk...@cisco.com Cc: Laurent Pinchart laurent.pinch...@ideasonboard.com Cc: Mauro Carvalho Chehab mche...@redhat.com Cc: Guennadi

Re: [PATCH RFC] media: OF: add field-active and sync-on-green endpoint properties

2013-05-15 Thread Prabhakar Lad
field-active to fid-pol ? Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH RFC] media: OF: add field-active and sync-on-green endpoint properties

2013-05-16 Thread Prabhakar Lad
Hi Sylwester, On Thu, May 16, 2013 at 4:13 PM, Sylwester Nawrocki sylvester.nawro...@gmail.com wrote: Hi, On 05/16/2013 06:53 AM, Prabhakar Lad wrote: [Snip] May be we rename field-active to fid-pol ? I guess we failed to clearly describe the 'field-even-active' property then. It seems

Re: [PATCH RFC] media: OF: add field-active and sync-on-green endpoint properties

2013-05-16 Thread Prabhakar Lad
. Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH 2/6] ARM: davinci: dm365 evm: remove init_enable from ths7303 pdata

2013-05-16 Thread Prabhakar Lad
Hi Laurent, On Wed, May 15, 2013 at 5:41 PM, Prabhakar Lad prabhakar.cse...@gmail.com wrote: Hi Laurent, Thanks for the review. On Wed, May 15, 2013 at 5:35 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Prabhakar, Thank you for the patch. On Wednesday 15 May 2013 17

Re: [PATCH v3] media: i2c: tvp514x: add OF support

2013-05-16 Thread Prabhakar Lad
: of_node_put(endpoint); return pdata; with a goto done in the devm_kzalloc error path would be better. OK Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info

Re: [PATCH v3] media: i2c: tvp514x: add OF support

2013-05-16 Thread Prabhakar Lad
Hi Laurent, On Thu, May 16, 2013 at 6:20 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Prabhakar, On Thursday 16 May 2013 18:13:38 Prabhakar Lad wrote: On Thu, May 16, 2013 at 5:40 PM, Laurent Pinchart wrote: Hi Prabhakar, [Snip] + + pdata = devm_kzalloc(client

Re: [PATCH 5/5] net: davinci_mdio: trivial cleanup

2013-05-16 Thread Prabhakar Lad
/the/them/. OK also guard the davinci_mdio_of_mtable table and davinci_mdio_probe_dt() with CONFIG_OF. Saying also in the changelog is often a good sign there should be one more patch -- as in this case. OK I'll split the patch. Regards, --Prabhakar Lad -- To unsubscribe from this list: send

Re: [PATCH 2/5] net: davinci_emac: remove unwanted header inclusion and sort the alphabetically

2013-05-16 Thread Prabhakar Lad
in the series. and sorts them alphabetically In the subject you typed the instead of them. Hmm carry forwarded this copy paste error every where will fix it in V2. Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: [PATCH 1/6] media: i2c: ths7303: remove init_enable option from pdata

2013-05-16 Thread Prabhakar Lad
= 0xf8; You can assign mask in declaration. It'd be nice to have a human-readable name for the mask, too. This function gets removed in the preceding patch of this series. Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: [PATCH] ARM: davinci: dma: Convert to devm_* api

2013-05-16 Thread Prabhakar Lad
), GFP_KERNEL); Maybe it's worth using devm_kzalloc() too? OK Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read

Re: [PATCH 1/7] media: davinci: vpif: remove unwanted header includes

2013-05-16 Thread Prabhakar Lad
reorganizes the kernel headers internal includes then the driver might break. As a general rule of good practice you should include headers for all the APIs you use. OK, do you want me too drop the similar patches from this series ? Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line

Re: [PATCH RFC v2] media: OF: add sync-on-green endpoint property

2013-05-21 Thread Prabhakar Lad
with the patch can I send non RFC version of it ? Regards, --Prabhakar Lad -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

<    1   2   3   4   5   6   7   8   9   10   >