[PATCH v2 08/10] [media] tvp5150: Add OF match table

2016-01-07 Thread Javier Martinez Canillas
tch. Signed-off-by: Eduard Gavin <egav...@gmail.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> Reviewed-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> --- Changes in v2: - Add Reviewed-by tag from Laurent Pinchart to patch 8/10. drivers/media/i

[PATCH v2 05/10] [media] tvp5150: Add s_stream subdev operation support

2016-01-07 Thread Javier Martinez Canillas
From: Laurent Pinchart <laurent.pinch...@ideasonboard.com> This patch adds the .s_stream subdev operation to the driver. Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- Changes in v2: No

[PATCH v2 07/10] [media] tvp5150: Add device tree binding document

2016-01-07 Thread Javier Martinez Canillas
Add a Device Tree binding document for the TVP5150 video decoder. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> Reviewed-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> --- Changes in v2: - Fix indentation of the DTS example. Suggested by Rob Herri

[PATCH v2 04/10] [media] tvp5150: Add pixel rate control support

2016-01-07 Thread Javier Martinez Canillas
From: Laurent Pinchart <laurent.pinch...@ideasonboard.com> This patch adds support for the V4L2_CID_PIXEL_RATE control. Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- Changes in v2: No

[PATCH v2 01/10] [media] tvp5150: Restructure version detection

2016-01-07 Thread Javier Martinez Canillas
From: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Move the version detection code to a separate function and restructure it to prepare for TVP5151 support. Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <jav...@

[PATCH v2 03/10] [media] tvp5150: Add pad-level subdev operations

2016-01-07 Thread Javier Martinez Canillas
m> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- Changes in v2: None drivers/media/i2c/tvp5150.c | 60 + 1 file changed, 45 insertions(+), 15 deletions(-) diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i

[PATCH v2 00/10] [media] tvp5150: add MC and DT support

2016-01-07 Thread Javier Martinez Canillas
k if the hsync, vsync and field even active properties are correct. Suggested by Laurent Pinchart. Eduard Gavin (1): [media] tvp5150: Add OF match table Javier Martinez Canillas (3): [media] tvp5150: Add device tree binding document [media] tvp5150: Initialize the chip on probe [media] tvp515

Re: [PATCH 09/10] [media] tvp5150: Initialize the chip on probe

2016-01-06 Thread Javier Martinez Canillas
Hello Laurent, On 01/06/2016 07:59 AM, Laurent Pinchart wrote: > Hi Javier, > > Thankk you for the patch. > Thanks a lot for your feedback. > On Monday 04 January 2016 09:25:31 Javier Martinez Canillas wrote: >> After power-up, the tvp5150 decoder is in a unknown state un

Re: [PATCH 10/10] [media] tvp5150: Configure data interface via pdata or DT

2016-01-06 Thread Javier Martinez Canillas
Hello Laurent, Thanks a lot for your feedback. On 01/06/2016 07:56 AM, Laurent Pinchart wrote: > Hi Javier, > > Thank you for the patch. > > On Monday 04 January 2016 09:25:32 Javier Martinez Canillas wrote: >> The video decoder supports either 8-bit 4:2:2 YUV with discr

Re: [PATCH 07/10] [media] tvp5150: Add device tree binding document

2016-01-06 Thread Javier Martinez Canillas
mentation/devicetree/bindings/gpio/gpio.txt says nothing about it. I'll change it to pdn-gpios since it could be easier to match with the doc. Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe from this list: send the line "unsub

Re: [PATCH 10/10] [media] tvp5150: Configure data interface via pdata or DT

2016-01-06 Thread Javier Martinez Canillas
set returned by >>> tvp5150_g_mbus_config() when pdata is NULL is never set by >>> v4l2_of_parse_endpoint(), should you add it unconditionally ? >> >> But v4l2_of_parse_endpoint() calls v4l2_of_parse_parallel_bus() which does >> it or did I read the code incorre

[PATCH 09/10] [media] tvp5150: Initialize the chip on probe

2016-01-04 Thread Javier Martinez Canillas
. This patch used as a reference the logic in the IGEPv2 board file from the ISEE 2.6.37 vendor tree. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- drivers/media/i2c/tvp5150.c | 35 +++ 1 file changed, 35 insertions(+) diff --git a/d

[PATCH 08/10] [media] tvp5150: Add OF match table

2016-01-04 Thread Javier Martinez Canillas
tch. Signed-off-by: Eduard Gavin <egav...@gmail.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- drivers/media/i2c/tvp5150.c | 9 + 1 file changed, 9 insertions(+) diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i2c/tvp5150.c index 105bd

Re: [PATCH 09/10] [media] tvp5150: Initialize the chip on probe

2016-01-04 Thread Javier Martinez Canillas
e system] > > url: > https://github.com/0day-ci/linux/commits/Javier-Martinez-Canillas/tvp5150-add-MC-and-DT-support/20160104-203224 > base: git://linuxtv.org/media_tree.git master > config: x86_64-randconfig-x008-01040711 (attached as .config) > reproduce: > # save t

[PATCH 05/10] [media] tvp5150: Add s_stream subdev operation support

2016-01-04 Thread Javier Martinez Canillas
From: Laurent Pinchart <laurent.pinch...@ideasonboard.com> This patch adds the .s_stream subdev operation to the driver. Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- drivers/media/

[PATCH 02/10] [media] tvp5150: Add tvp5151 support

2016-01-04 Thread Javier Martinez Canillas
From: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Expand the version detection code to identity the tvp5151. Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- drivers/media/i2c/t

[PATCH 06/10] [media] tvp5150: Add g_mbus_config subdev operation support

2016-01-04 Thread Javier Martinez Canillas
From: Laurent Pinchart <laurent.pinch...@ideasonboard.com> This patch adds the .g_mbus_config subdev operation to the driver. Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- drivers/m

[PATCH 07/10] [media] tvp5150: Add device tree binding document

2016-01-04 Thread Javier Martinez Canillas
Add a Device Tree binding document for the TVP5150 video decoder. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- .../devicetree/bindings/media/i2c/tvp5150.txt | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 Documentation/devi

[PATCH 00/10] [media] tvp5150: add MC and DT support

2016-01-04 Thread Javier Martinez Canillas
epedency but just to avoid merge conflicts and I don't expect them to be picked before that anyways. Best regards, Javier [0]: http://lists.infradead.org/pipermail/linux-arm-kernel/2015-August/367109.html [1]: http://git.linuxtv.org/pinchartl/media.git/log/?h=omap3isp/tvp5151 Eduard Gavin (1):

[PATCH 01/10] [media] tvp5150: Restructure version detection

2016-01-04 Thread Javier Martinez Canillas
From: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Move the version detection code to a separate function and restructure it to prepare for TVP5151 support. Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <jav...@

[PATCH 03/10] [media] tvp5150: Add pad-level subdev operations

2016-01-04 Thread Javier Martinez Canillas
m> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- drivers/media/i2c/tvp5150.c | 60 + 1 file changed, 45 insertions(+), 15 deletions(-) diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i2c/tvp5150.c index b3b34e24

[PATCH 04/10] [media] tvp5150: Add pixel rate control support

2016-01-04 Thread Javier Martinez Canillas
From: Laurent Pinchart <laurent.pinch...@ideasonboard.com> This patch adds support for the V4L2_CID_PIXEL_RATE control. Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- drivers/media

[PATCH 10/10] [media] tvp5150: Configure data interface via pdata or DT

2016-01-04 Thread Javier Martinez Canillas
The video decoder supports either 8-bit 4:2:2 YUV with discrete syncs or 8-bit ITU-R BT.656 with embedded syncs output format but currently BT.656 it's always reported. Allow to configure the format to use via either platform data or a device tree definition. Signed-off-by: Javier Martinez

Re: [PATCH 07/10] [media] tvp5150: Add device tree binding document

2016-01-04 Thread Javier Martinez Canillas
Hello Rob, Thanks a lot for your feedback. On 01/04/2016 11:07 AM, Rob Herring wrote: > On Mon, Jan 04, 2016 at 09:25:29AM -0300, Javier Martinez Canillas wrote: >> Add a Device Tree binding document for the TVP5150 video decoder. >> >> Signed-off-by: Javier M

Re: [PATCH v2 2/3] wlcore/wl12xx: spi: add device tree support

2015-12-24 Thread Javier Martinez Canillas
Hello Uri, On Thu, Dec 24, 2015 at 12:35 PM, Uri Mashiach wrote: > Add DT support for the wl1271 SPI WiFi. > > Add documentation file for the wl1271 SPI WiFi. > > Signed-off-by: Uri Mashiach > Acked-by: Igor Grinberg

Re: [PATCH v2 3/3] wlcore/wl12xx: spi: add wifi support to cm-t335

2015-12-24 Thread Javier Martinez Canillas
Hello Uri, On Thu, Dec 24, 2015 at 12:35 PM, Uri Mashiach wrote: > Device tree modifications: > - Pinmux for SPI0 and WiFi GPIOs. > - SPI0 node with wlcore as a child node. > > Cc: Tony Lindgren > Signed-off-by: Uri Mashiach

Re: [PATCH 5/6] ARM: LG Optimus Black (P970) codename sniper support, with basic features

2015-12-23 Thread Javier Martinez Canillas
Hello Paul, [snip] > + > +_pmx_core { > + pinctrl-names = "default"; > + > + uart3_pins: pinmux_uart3_pins { > + pinctrl-single,pins = < > + 0x16e (PIN_INPUT | MUX_MODE0) /* > uart3_rx_irrx */ > + 0x170 (PIN_OUTPUT

Re: [RESEND PATCH] modpost: don't add a trailing wildcard for OF module aliases

2015-12-08 Thread Javier Martinez Canillas
On 12/08/2015 11:00 PM, Javier Martinez Canillas wrote: >>> >>> I sent this patch before [0] but was never picked. MAINTAINERS doesn't >>> say who should manage patches to file2alias so maybe I didn't add the >>> right person to the cc list. >> >>

Re: [RESEND PATCH] modpost: don't add a trailing wildcard for OF module aliases

2015-12-08 Thread Javier Martinez Canillas
Hello Andrew, On 12/08/2015 08:11 PM, Andrew Morton wrote: > On Tue, 8 Dec 2015 19:13:32 -0300 Javier Martinez Canillas > <jav...@osg.samsung.com> wrote: [snip] >> >> I sent this patch before [0] but was never picked. MAINTAINERS doesn't >> say who should manage

[RESEND PATCH] modpost: don't add a trailing wildcard for OF module aliases

2015-12-08 Thread Javier Martinez Canillas
ot;always" from the add_wildcard() function comment since that was carried from the time where a wildcard was always added at the end of the module alias for all the devices. Suggested-by: Brian Norris <computersforpe...@gmail.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.co

Re: [PATCH 4/4] ARM: dts: Use OF graph for DP to panel connection in exynos5800-peach-pi

2015-12-07 Thread Javier Martinez Canillas
Hello Inki, On 12/07/2015 09:52 AM, Inki Dae wrote: > From: Javier Martinez Canillas <jav...@osg.samsung.com> > Thanks a lot for posting this patch. > The DT binding for the Exynos DRM Display Port (DP) driver isn't consistent > since it uses a phandle to describe the connect

Re: [PATCH 4/4] ARM: dts: Use OF graph for DP to panel connection in exynos5800-peach-pi

2015-12-07 Thread Javier Martinez Canillas
Hello Krzysztof, On 12/07/2015 09:48 PM, Krzysztof Kozlowski wrote: > On 08.12.2015 00:36, Inki Dae wrote: >> Hi Javier, >> >> 2015-12-07 22:41 GMT+09:00 Javier Martinez Canillas <jav...@osg.samsung.com>: >>> Hello Inki, >>> >>> On 12/07/201

Re: [PATCH 4/4] ARM: dts: Use OF graph for DP to panel connection in exynos5800-peach-pi

2015-12-07 Thread Javier Martinez Canillas
Hello Krzysztof, On 12/07/2015 09:45 PM, Krzysztof Kozlowski wrote: > On 07.12.2015 21:52, Inki Dae wrote: >> From: Javier Martinez Canillas <jav...@osg.samsung.com> >> >> The DT binding for the Exynos DRM Display Port (DP) driver isn't consistent >> si

Re: [PATCH v3 1/3] drm/exynos: dp: add of_graph dt binding support for panel

2015-12-04 Thread Javier Martinez Canillas
Hello Inki, On 12/04/2015 06:00 AM, Inki Dae wrote: > Hi Javier, > > 2015년 12월 03일 22:55에 Javier Martinez Canillas 이(가) 쓴 글: >> Hello Inki, >> >> I found that v2 of this patch is alredy in your exynos-drm for-next branch so >> so I had to revert it in linux-ne

Re: [PATCH v3 1/3] drm/exynos: dp: add of_graph dt binding support for panel

2015-12-04 Thread Javier Martinez Canillas
Hello Inki, On 12/04/2015 11:57 AM, Inki Dae wrote: > Hi Javier, > > 2015-12-04 21:38 GMT+09:00 Javier Martinez Canillas <jav...@osg.samsung.com>: >> Hello Inki, >> >> On 12/04/2015 06:00 AM, Inki Dae wrote: >>> Hi Javier, >>> >>

Re: [PATCH 3/3] dt-bindings: exynos-dp: update ports node binding for panel

2015-12-03 Thread Javier Martinez Canillas
reg = <0>; > + ... > + port { > + dp_in: endpoint { > + remote-endpoint = <_out>; > }; > }; > }; > The rest looks good to me so with the two changes feel

Re: [PATCH v3 1/3] drm/exynos: dp: add of_graph dt binding support for panel

2015-12-03 Thread Javier Martinez Canillas
t;of_node, NULL); > if (endpoint) { > bridge_node = of_graph_get_remote_port_parent(endpoint); > @@ -1423,6 +1441,7 @@ static int exynos_dp_probe(struct platform_device *pdev) > return -EPROBE_DEFER; > } > > +out: > pm_runtime_enable(dev);

[PATCH 2/2] ARM: dts: omap3-igep0030: Use MMC pwrseq to init SDIO WiFi

2015-12-03 Thread Javier Martinez Canillas
. But now the simple MMC power sequence provider can be used for this and the workaround removed. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- arch/arm/boot/dts/omap3-igep0030.dts | 24 1 file changed, 8 insertions(+), 16 deletions(-) diff

[PATCH 1/2] ARM: dts: omap3-igep0020: Use MMC pwrseq to init SDIO WiFi

2015-12-03 Thread Javier Martinez Canillas
. But now the simple MMC power sequence provider can be used for this and the workaround removed. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- arch/arm/boot/dts/omap3-igep0020.dts | 24 1 file changed, 8 insertions(+), 16 deletions(-) diff

Re: [PATCH 0/2] ARM: dts: Use MMC pwrseq instead regulators for IGEP WiFi init

2015-12-03 Thread Javier Martinez Canillas
Hello Tony, On 12/03/2015 03:16 PM, Tony Lindgren wrote: > * Javier Martinez Canillas <jav...@osg.samsung.com> [151203 10:03]: >> Hello, >> >> This series converts the IGEPv2 (IGEP0020) and IGEP COM Module (IGEP0030) >> Device Tree to use the MMC power sequenc

[PATCH 0/2] ARM: dts: Use MMC pwrseq instead regulators for IGEP WiFi init

2015-12-03 Thread Javier Martinez Canillas
preferred to leave those untouched. Best regards, Javier Javier Martinez Canillas (2): ARM: dts: omap3-igep0020: Use MMC pwrseq to init SDIO WiFi ARM: dts: omap3-igep0030: Use MMC pwrseq to init SDIO WiFi arch/arm/boot/dts/omap3-igep0020.dts | 24 arch/arm/boot/dts/omap3

Re: [PATCH 1/2] regulator: Add coupled regulator

2015-11-30 Thread Javier Martinez Canillas
Hello Maxime, On Mon, Nov 30, 2015 at 12:29 PM, Maxime Ripard wrote: [snip] > > +config REGULATOR_COUPLED_VOLTAGE Shouldn't this depend on OF? > + tristate "Coupled voltage regulator support" the Kconfig symbol is tristate so the driver can be built

Re: [PATCH v2] arm: dts: Fix audio card detection on peach boards

2015-11-30 Thread Javier Martinez Canillas
Hi Alim, On 11/30/2015 01:59 PM, Alim Akhtar wrote: > Hi Javier, > > On Mon, Nov 30, 2015 at 7:31 PM, Javier Martinez Canillas > <jav...@osg.samsung.com> wrote: >> Hello Alim, >> >> On 10/12/2015 09:37 AM, Alim Akhtar wrote: >>> Since commit 2fad

Re: [PATCH v2] arm: dts: Fix audio card detection on peach boards

2015-11-30 Thread Javier Martinez Canillas
akes sense or not. Also, do you know if the "simple-audio-card" can be used instead for snow and peachs as it is used for other Exynos5 boards or a specific ASoC machine driver is really needed for these Chromebooks? Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research Am

[PATCH] ARM: dts: Remove unneeded GPIO include in exynos4412-odroidu3

2015-11-25 Thread Javier Martinez Canillas
The header is already included in the exynos4412-odroid-common DTSI so there's no need to do it again in the DTS file. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- arch/arm/boot/dts/exynos4412-odroidu3.dts | 1 - 1 file changed, 1 deletion(-) diff --git a/ar

Re: [PATCH v2 0/6] Switch to generic syscon regmap based drivers

2015-11-19 Thread Javier Martinez Canillas
Hello Alim, On Thu, Nov 19, 2015 at 3:06 PM, Alim Akhtar wrote: [snip] >> >> Javier, Alim, Ulf, >> >> I am not grabbing any more patches for v4.4 because I doubt that they >> could be merged to arm-soc for this cycle. My last pull requests for >> v4.4 is still pending...

[PATCH] modpost: don't add a trailing wildcard for OF module aliases

2015-11-19 Thread Javier Martinez Canillas
ot;always" from the add_wildcard() function comment since that was carried from the time where a wildcard was always added at the end of the module alias for all the devices. Suggested-by: Brian Norris <computersforpe...@gmail.com> Signed-off-by: Javier Martinez Canillas <jav...@osg.sa

Re: [PATCH 3/3] doc: dt: mtd: stop referring to driver code for spi-nor IDs

2015-11-18 Thread Javier Martinez Canillas
Hello Brian, On 11/18/2015 04:43 PM, Brian Norris wrote: > Hi, > > On Tue, Nov 17, 2015 at 11:04:55AM -0300, Javier Martinez Canillas wrote: >> On 11/16/2015 07:34 PM, Brian Norris wrote: >>> diff --git a/Documentation/devicetree/bindings/mtd/jedec,spi-nor.txt >&g

[RESEND PATCH v2 0/6] ARM: dts: Use correct CD properties for SDIO and eMMC in Snow and Peach

2015-11-18 Thread Javier Martinez Canillas
-by tags that were previously collected. [0]: https://lkml.org/lkml/2015/10/15/640 Best regards, Javier Javier Martinez Canillas (6): ARM: dts: Mark SDIO as non-removable in exynos5800-peach-pi ARM: dts: Mark SDIO as non-removable in exynos5420-peach-pit ARM: dts: Mark SDIO as non-removable

[RESEND PATCH v2 5/6] ARM: dts: Remove broken-cd from eMMC node in exynos5420-peach-pi

2015-11-18 Thread Javier Martinez Canillas
that is not needed with non-removable. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> Reviewed-by: Krzysztof Kozlowski <k.kozlow...@samsung.com> Reviewed-by: Alim Akhtar <alim.akh...@samsung.com> Tested-by: Alim Akhtar <alim.akh...@samsung.com> --- arch

[RESEND PATCH v2 6/6] ARM: dts: Mark eMMC as non-removable in exynos5250-snow-common

2015-11-18 Thread Javier Martinez Canillas
The eMMC is non-removable so mark it using the non-removable DT property to avoid having to redetect it after a suspend/resume. Also remove the card-detect-delay property that is not needed with non-removable. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> Reviewed-by:

[RESEND PATCH v2 1/6] ARM: dts: Mark SDIO as non-removable in exynos5800-peach-pi

2015-11-18 Thread Javier Martinez Canillas
warnings is shown after a resume: [ 181.944636] mmc2: error -2 during resume (card was removed?) Also remove the card-detect-delay property that is not needed with non-removable. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> Reviewed-by: Krzysztof Kozlowski <

[RESEND PATCH v2 3/6] ARM: dts: Mark SDIO as non-removable in exynos5250-snow-common

2015-11-18 Thread Javier Martinez Canillas
warnings is shown after a resume: [ 181.944636] mmc2: error -2 during resume (card was removed?) Also remove the card-detect-delay property that is not needed with non-removable. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> Reviewed-by: Tomeu Vizoso <tomeu.viz...@coll

[RESEND PATCH v2 4/6] ARM: dts: Remove broken-cd from eMMC node in exynos5800-peach-pi

2015-11-18 Thread Javier Martinez Canillas
that is not needed with non-removable. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> Reviewed-by: Krzysztof Kozlowski <k.kozlow...@samsung.com> Reviewed-by: Alim Akhtar <alim.akh...@samsung.com> Tested-by: Alim Akhtar <alim.akh...@samsung.com> --- arch

[RESEND PATCH v2 2/6] ARM: dts: Mark SDIO as non-removable in exynos5420-peach-pit

2015-11-18 Thread Javier Martinez Canillas
warnings is shown after a resume: [ 181.944636] mmc2: error -2 during resume (card was removed?) Also remove the card-detect-delay property that is not needed with non-removable. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> Reviewed-by: Krzysztof Kozlowski <

Re: [RESEND PATCH v2 6/6] ARM: dts: Mark eMMC as non-removable in exynos5250-snow-common

2015-11-18 Thread Javier Martinez Canillas
Hello, On 11/18/2015 10:23 AM, Javier Martinez Canillas wrote: > The eMMC is non-removable so mark it using the non-removable DT > property to avoid having to redetect it after a suspend/resume. > > Also remove the card-detect-delay property that is not needed with > non-removab

Re: [PATCH 3/3] doc: dt: mtd: stop referring to driver code for spi-nor IDs

2015-11-17 Thread Javier Martinez Canillas
c > + m25p64-nonjedec > + m25p128-nonjedec > + Same here, I would prefer if the DT binding make it clear that not having a vendor is wrong and is only documented to maintain backward compatibility. > - reg : Chip-Select number > - spi-max-frequency :

Re: [PATCH 1/2] ARM: ux500: remove regulator-compatible usage

2015-11-13 Thread Javier Martinez Canillas
Hello, On 09/25/2015 09:51 AM, Javier Martinez Canillas wrote: > The regulator-compatible property from the regulator DT binding was > deprecated and the correct approach is to use the node's name. > > This patch has no functional changes since the values of the node's > name an

Re: [PATCH v2] ARM: dts: am335x-boneblack: Use pinctrl constants and AM33XX_IOPAD macro

2015-11-10 Thread Javier Martinez Canillas
Hello Andrew, On Sat, Oct 24, 2015 at 2:05 PM, Andrew F. Davis wrote: > Using constants for pinctrl allows better readability and removes > redundancy with comments. AM33XX_IOPAD allows us to use part of the > pinctrl physical address as in the TRM instead of an offset. > >

Re: [PATCH] arm64: dts: Added syscon-reboot node for FSL's LS2080A SoC

2015-11-06 Thread Javier Martinez Canillas
quot;syscon-reboot"; > + regmap = <>; > + offset = <0x0>; > + mask = <0x2>; > + }; > + > timer { > compatible = "arm,armv8-timer"; > interrupts = <1 13 0

Re: [PATCH 2/2] arm64: dts: exynos7: Enable HS200 mode operation

2015-11-02 Thread Javier Martinez Canillas
.dts > @@ -405,8 +405,8 @@ > _0 { > status = "okay"; > num-slots = <1>; > - broken-cd; > cap-mmc-highspeed; > + mmc-hs200-1_8v; > non-removable; > card-detect-delay = <200>; > clock-frequency = <80000>;

Re: [PATCH 1/2] arm64: dts: exynos7: Add pmic s2mps15 device tree node

2015-11-02 Thread Javier Martinez Canillas
regulator-name = "vdd_ldo1"; > + regulator-min-microvolt = <50>; > + regulator-max-microvolt = <90>; > + regulator-always-on; I see that all regulators are marked as regulator-

Re: [PATCH v2] ARM: dts: am335x-boneblack: Use pinctrl constants and AM33XX_IOPAD macro

2015-10-26 Thread Javier Martinez Canillas
set. > > Signed-off-by: Andrew F. Davis <a...@ti.com> > --- I haven't verified the values against the TRM, but assuming there are correct: Reviewed-by: Javier Martinez Canillas <jav...@osg.samsung.com> Best regards, Javier -- To unsubscribe from this list: send the line

Re: [PATCH] ARM: dts: am335x-boneblack: Use pinctrl constants

2015-10-23 Thread Javier Martinez Canillas
Hello Andrew, On Fri, Oct 23, 2015 at 3:08 PM, Andrew F. Davis wrote: > On 10/22/2015 04:23 PM, Tony Lindgren wrote: >> >> * Andrew F. Davis [151022 09:21]: >>> >>> Using constants for pinctrl allows better readability and removes >>> redundancy with comments. >> >> >>

Re: [PATCH] ARM: dts: am335x-boneblack: Use pinctrl constants

2015-10-23 Thread Javier Martinez Canillas
Hello Andrew, On Fri, Oct 23, 2015 at 4:36 PM, Andrew F. Davis <a...@ti.com> wrote: > On 10/23/2015 09:29 AM, Javier Martinez Canillas wrote: >> >> Hello Andrew, >> >> On Fri, Oct 23, 2015 at 3:08 PM, Andrew F. Davis <a...@ti.com> wrote: >>>

Re: [PATCH v2 0/6] Switch to generic syscon regmap based drivers

2015-10-21 Thread Javier Martinez Canillas
Hello Alim, On 10/21/2015 04:50 PM, Alim Akhtar wrote: [snip] >> >> [0]: >> From c9b250ee03bae338339b70693e906145c719f783 Mon Sep 17 00:00:00 2001 >> From: Javier Martinez Canillas <jav...@osg.samsung.com> >> Date: Wed, 21 Oct 2015 11:59:44 +0200 >> Sub

Re: [PATCH v2 0/6] Switch to generic syscon regmap based drivers

2015-10-21 Thread Javier Martinez Canillas
rio 128 and the watchdog handlers to 0. Best regards, [0]: http://lxr.free-electrons.com/source/kernel/reboot.c#L113 Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of

Re: [PATCH v2 0/6] Switch to generic syscon regmap based drivers

2015-10-21 Thread Javier Martinez Canillas
s the issue, reboot works now on U3. >>> >> Good to know that. >> Thanks >>> >>> Tested-by: Markus Reichl <m.rei...@fivetechno.de> >>> >>> Thanks, >>> -- >>> Markus >>> >>> >>>> >>>> Bes

Re: [PATCH v2 0/6] Switch to generic syscon regmap based drivers

2015-10-21 Thread Javier Martinez Canillas
be left in an unknown state. So the problem here is not that the system is not being reset (that I think that works) but that on reboot, the system is not able to boot again since the ROM is not able to read the second stage bootloader. Markus, Can you please test following patch [0] on top of Alim'

Re: [PATCH 1/2] dt-bindings: Consolidate Exynos SoC bindings under Samsung directory

2015-10-21 Thread Javier Martinez Canillas
f-by: Krzysztof Kozlowski <k.kozlow...@samsung.com> > Cc: Kukjin Kim <kg...@kernel.org> > --- Patch looks good to me. Reviewed-by: Javier Martinez Canillas <jav...@osg.samsung.com> Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To un

Re: [PATCH 2/2] dt-bindings: EXYNOS: Document compatibles from other vendors

2015-10-21 Thread Javier Martinez Canillas
t;kg...@kernel.org> > Cc: Javier Martinez Canillas <jav...@osg.samsung.com> > Cc: Hakjoo Kim <ruppi@hardkernel.com> > --- Reviewed-by: Javier Martinez Canillas <jav...@osg.samsung.com> Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research A

Re: [PATCH v2 0/6] Switch to generic syscon regmap based drivers

2015-10-20 Thread Javier Martinez Canillas
d XU. Reboot and poweroff are working correctly on both boards with these patches. Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majord...@vger.ker

Re: [PATCH v2 5/6] ARM: exynos: select POWER_RESET_SYSCON and POWER_RESET_SYSCON_POWEROFF

2015-10-20 Thread Javier Martinez Canillas
off} drivers depends on it. > > Signed-off-by: Alim Akhtar <alim.akh...@samsung.com> > --- > Patch looks good to me. Reviewed-by: Javier Martinez Canillas <jav...@osg.samsung.com> Tested-by: Javier Martinez Canillas <jav...@osg.samsung.com> Best regards, --

Re: [PATCH v2 6/6] ARM: EXYNOS: Remove code for restart and poweroff for exynos SoCs

2015-10-20 Thread Javier Martinez Canillas
with older dtbs > with a newer kernel. > > Signed-off-by: Alim Akhtar <alim.akh...@samsung.com> > Reviewed-by: Javier Martinez Canillas <jav...@osg.samsung.com> > Acked-by: Moritz Fischer <moritz.fisc...@ettus.com> > --- > arch/arm/mach-exynos/pmu.c | 43

Re: [PATCH v6 0/17] Add Analogix Core Display Port Driver

2015-10-20 Thread Javier Martinez Canillas
Hello Yakir, On 10/20/2015 04:10 AM, Yakir Yang wrote: > Hi Javier, > > On 10/19/2015 06:40 PM, Javier Martinez Canillas wrote: >> Hello Yakir, >> >> On 10/10/2015 05:35 PM, Yakir Yang wrote: >>> Hi all, >>> >>> The Samsung Exynos eDP c

Re: [PATCH v2 3/6] arm: dts: Add syscon-{reboot, poweroff} nodes for exynos5

2015-10-20 Thread Javier Martinez Canillas
nkaj Dubey <pankaj.du...@samsung.com> > Reviewed-by: Javier Martinez Canillas <jav...@osg.samsung.com> > Acked-by: Moritz Fischer <moritz.fisc...@ettus.com> > --- > arch/arm/boot/dts/exynos5.dtsi | 14 ++ > 1 file changed, 14 insertions(+) > Tested-by

Re: [PATCH 7/7] ARM: EXYNOS: Remove code for restart and poweroff for exynos SoCs

2015-10-19 Thread Javier Martinez Canillas
s true that select should only be used for non-visible symbols but there are others user visible symbols that are selected by ARCH_EXYNOS such as EXYNOS_THERMAL. So I think selecting the regmap syscon reset stuff there is a sensible option. > Best regards, > Krzysztof > Best regards, -

Re: [PATCH v6 0/17] Add Analogix Core Display Port Driver

2015-10-19 Thread Javier Martinez Canillas
est this series, I suggest you applied this > series on tag-20150918, just need to fix some light conflicts with the 01 & 02 > patches (or just email me, I can send you directly). > > Thanks, Do you have a branch that I can use to test this series? Best regards, -- Javier Marti

Re: [PATCH 1/7] arm: dts: Add syscon-{reboot, poweroff} nodes for exynos3250 SoCs

2015-10-19 Thread Javier Martinez Canillas
d be used instead of magic numbers or at least have a comment next to the offset field. The patch looks good to me though and a comment can be added as a follow up so: Reviewed-by: Javier Martinez Canillas <jav...@osg.samsung.com> Best regards, -- Javier Martinez Canillas Open Source Group

Re: [PATCH 2/7] arm: dts: Add syscon-{reboot, poweroff} nodes for exynos4

2015-10-19 Thread Javier Martinez Canillas
; + }; > + The same comment of patch 1/7 applies to the other DTS changes. I would prefer if the the offset value is documented but as I said it could be a follow up. Reviewed-by: Javier Martinez Canillas <jav...@osg.samsung.com> Best regards, -- Javier Martinez Canillas Open Source Group Sa

Re: [PATCH 3/7] arm: dts: Add syscon-{reboot, poweroff} nodes for exynos5

2015-10-19 Thread Javier Martinez Canillas
mask = <0x5200>; > + }; > + > + reboot: syscon-reboot { > + compatible = "syscon-reboot"; > + regmap = <_system_controller>; > + offset = <0x0400>; > + mask = <0x1>; > +

Re: [PATCH 5/7] ARM: exynos_defconfig: Normalize exynos defconfig

2015-10-19 Thread Javier Martinez Canillas
CONFIG_PL330_DMA=y > -CONFIG_CHROME_PLATFORMS=y > CONFIG_CROS_EC_CHARDEV=y > CONFIG_COMMON_CLK_MAX77686=y > CONFIG_COMMON_CLK_MAX77802=y > @@ -190,7 +187,6 @@ CONFIG_PWM_SAMSUNG=y > CONFIG_PHY_EXYNOS5250_SATA=y > CONFIG_EXT2_FS=y > CONFIG_EXT3_FS=y > -CONFIG_EXT4_FS

Re: [PATCH 4/7] arm: dts: Add syscon-{reboot, poweroff} nodes for exynos5410 SoC

2015-10-19 Thread Javier Martinez Canillas
_system_controller>; > + offset = <0x0400>; > + mask = <0x1>; > + }; > + Reviewed-by: Javier Martinez Canillas <jav...@osg.samsung.com> Best regards, -- Javier Martinez Canillas Open Source Group Samsung Resea

Re: [PATCH 7/7] ARM: EXYNOS: Remove code for restart and poweroff for exynos SoCs

2015-10-19 Thread Javier Martinez Canillas
Hello Krzysztof, On 10/19/2015 03:28 PM, Krzysztof Kozlowski wrote: > 2015-10-19 18:56 GMT+09:00 Javier Martinez Canillas <jav...@osg.samsung.com>: >> Hello, >> >> On 10/19/2015 09:00 AM, Krzysztof Kozlowski wrote: >>> On 19.10.2015 15:03, Alim Akhtar wrote: &g

Re: [PATCH 5/7] ARM: exynos_defconfig: Normalize exynos defconfig

2015-10-19 Thread Javier Martinez Canillas
Hello Alim, On 10/19/2015 05:58 PM, Alim Akhtar wrote: > Hi Javier, > > On Mon, Oct 19, 2015 at 6:55 PM, Javier Martinez Canillas > <jav...@osg.samsung.com> wrote: >> Hello Alim, >> >> On 10/19/2015 08:03 AM, Alim Akhtar wrote: >>> make savedefcon

Re: [PATCH 7/7] ARM: EXYNOS: Remove code for restart and poweroff for exynos SoCs

2015-10-19 Thread Javier Martinez Canillas
Hello Alim, On 10/19/2015 06:13 PM, Alim Akhtar wrote: > Hi Javier, > > On Mon, Oct 19, 2015 at 7:37 PM, Javier Martinez Canillas > <jav...@osg.samsung.com> wrote: >> Hello Krzysztof, >> >> On 10/19/2015 03:28 PM, Krzysztof Kozlowski wrote: >>> 2015-1

Re: [PATCH v2 1/2] clk: samsung: exynos5250: Add DISP1 clocks

2015-10-17 Thread Javier Martinez Canillas
exynos5420: Add IDs for clocks used in DISP1 power domain") ea08de16eb1b ("ARM: dts: Add DISP1 power domain for exynos5420") > Both patches (with Stephen's ack) are in my recent pull request but as > usual feel free to cherry pick. I'll drop them from next branch then. >

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-14 Thread Javier Martinez Canillas
Hello Yakir, On 10/13/2015 03:50 PM, Yakir Yang wrote: > On 10/13/2015 05:21 PM, Javier Martinez Canillas wrote: > [snip] >>> And it's better to enable pstore function on mainline kernel, so we can >>> analysis the last log when >>> the mainline kernel

Re: [PATCH] dt-bindings: Correct the example for Exynos power domain clocks

2015-10-14 Thread Javier Martinez Canillas
< CLK_FIN_PLL>, < CLK_MOUT_SW_ACLK333>, > - < CLK_MOUT_USER_ACLK333>; > - clock-names = "oscclk", "pclk0", "clk0"; > + clocks = < CLK_FIN_PLL>, < CLK_MOUT_USER_ACLK333>; > +

[PATCH] ARM: OMAP2+: Update Javier Martinez Canillas's email

2015-10-14 Thread Javier Martinez Canillas
I see that people are still sending emails to my old address (that no longer exists) since is the one mentioned in the IGEP DTS. Replace it with my current email address to avoid this. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- arch/arm/boot/dts/omap3-ige

[PATCH 0/2] iio: adc: mcp320x: Add compatible with vendor prefix and deprecate old ones

2015-10-14 Thread Javier Martinez Canillas
to add new compatible strings with a vendor prefix and mark the old ones as deprecated. This patch series take care of that. [0]: https://lkml.org/lkml/2015/8/20/95 [1]: https://lkml.org/lkml/2015/8/23/120 Best regards, Javier Javier Martinez Canillas (2): iio: adc: mcp320x: Deprecated compatib

[PATCH 1/2] iio: adc: mcp320x: Deprecated compatible strings with no vendor prefix

2015-10-14 Thread Javier Martinez Canillas
Technology which is listed in Documentation/devicetree/bindings/vendor-prefixes.txt so use the documented prefix. Signed-off-by: Javier Martinez Canillas <jav...@osg.samsung.com> --- .../devicetree/bindings/iio/adc/mcp320x.txt| 30 +++--- 1 file changed, 21 insertions

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-13 Thread Javier Martinez Canillas
;funcs = _dp_bridge_funcs; > --- a/arch/arm/boot/dts/exynos5420-peach-pit.dts > +++ b/arch/arm/boot/dts/exynos5420-peach-pit.dts > @@ -151,7 +151,7 @@ > samsung,color-depth = <1>; > samsung,link-rate = <0x06>; > samsung,lane-count = <2>;

Re: [PATCH 00/37] ARM: dts: Fix fixed regulators enable GPIO polarity

2015-10-12 Thread Javier Martinez Canillas
nd = 0; >> active_high = 0; >> open_drain = 0; >> flags = 0; >> } >> ' >> -- >> >> All patches except for the ones touching omap3-beagle-xm and omap3-overo-base &

Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy)

2015-10-08 Thread Javier Martinez Canillas
case > of HSIC-connected modem chip, so maybe this is somehow common for HSIC chips > (which are some special case of 'embedded usb'). > I also don't have an Arndale board and haven't followed the thread to closely but I just wanted to mention that the ChromiumOS 3.8 tree has a workaround

Re: [PATCH 4/8] regulator: Hi655x: Add support for Hi655x regulator

2015-10-08 Thread Javier Martinez Canillas
Hello Fei Wang, On Wed, Sep 30, 2015 at 1:05 PM, Fei Wang wrote: > Add Hi655x regulator driver. > > Signed-off-by: Fei Wang > --- [snip] > > +config REGULATOR_HI655X > +tristate "Hisilicon HI655X PMIC regulators support" The Kconfig symbol is tree

Re: [PATCH v4 8/8] ARM: multi_v7_defconfig: Add rockchip audio support

2015-10-08 Thread Javier Martinez Canillas
Hello Sjoerd, On 10/08/2015 03:31 PM, Sjoerd Simons wrote: > Enable support for audio device found on rockchip boards. > > Signed-off-by: Sjoerd Simons <sjoerd.sim...@collabora.co.uk> > --- Patch looks good to me. Reviewed-by: Javier Martinez Canillas <jav...@osg.samsu

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-07 Thread Javier Martinez Canillas
Hello Yakir, On 10/07/2015 08:25 AM, Yakir Yang wrote: > Hi all, > > Friendly ping. :) > > > Best regards, > - Yakir > > Do you have a tree that I can use to test these patches? Best regards, -- Javier Martinez Canillas Open Source Group Samsung Researc

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-07 Thread Javier Martinez Canillas
Hello Yakir, On 10/07/2015 11:02 AM, Yakir Yang wrote: > Hi Javier, > > On 10/07/2015 04:46 PM, Javier Martinez Canillas wrote: >> Hello Yakir, >> >> On 10/07/2015 08:25 AM, Yakir Yang wrote: >>> Hi all, >>> >>> Friendly ping. :) >&g

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-07 Thread Javier Martinez Canillas
Hello Yakir, On 10/07/2015 01:05 PM, Yakir Yang wrote: > Hi Javier, > > On 10/07/2015 05:26 PM, Javier Martinez Canillas wrote: >> Hello Yakir, >> >> On 10/07/2015 11:02 AM, Yakir Yang wrote: >>> Hi Javier, >>> >>> On 10/07/2015 04:4

  1   2   3   4   5   6   7   8   >