Re: [PATCH] ARM: dts: Remove vmmc-supply for mmc@12220000 on arndale-octa board

2014-04-26 Thread Javi Merino
On Fri, Apr 25, 2014 at 09:35:35PM +0100, Tomasz Figa wrote: On 25.04.2014 22:30, Javi Merino wrote: On Fri, Apr 25, 2014 at 09:16:30PM +0100, Tomasz Figa wrote: On 25.04.2014 22:11, Javi Merino wrote: d726ca2d3316 (ARM: dts: Add vmmc-supply to MMC on arndale-octa board) added the

Re: [PATCH v5 2/8] cpufreq: Use cpufreq_for_each_* macros for frequency table iteration

2014-04-26 Thread Prabhakar Lad
Hi Stratos, Thanks for the patch, On Sat, Apr 26, 2014 at 1:45 AM, Stratos Karafotis strat...@semaphore.gr wrote: The cpufreq core now supports the cpufreq_for_each_entry and cpufreq_for_each_valid_entry macros helpers for iteration over the cpufreq_frequency_table, so use them. It should

RE: [PATCHv4 2/7] ARM: EXYNOS: Support secondary CPU boot of Exynos4212

2014-04-26 Thread Kukjin Kim
Tomasz Figa wrote: Hi, Hi, On 25.04.2014 03:16, Chanwoo Choi wrote: From: Kyungmin Park kyungmin.p...@samsung.com This patch fix the offset of CPU boot address and change parameter of smc call of SMC_CMD_CPU1BOOT command for Exynos4212. Signed-off-by: Kyungmin Park

RE: [PATCH v2] ARM: dts: Add peach-pit board support

2014-04-26 Thread Kukjin Kim
Arun Kumar K wrote: Thanks Doug Tushar for the Reviewed-by. On Fri, Apr 25, 2014 at 12:27 AM, Doug Anderson diand...@chromium.org wrote: Arun, On Wed, Apr 23, 2014 at 9:17 PM, Arun Kumar K arun...@samsung.com wrote: Adds the google peach-pit board dts file which uses exynos5420

RE: [PATCH v8 1/3] ARM: EXYNOS: initial board support for exynos5260 SoC

2014-04-26 Thread Kukjin Kim
Rahul Sharma wrote: Hi Kukjin, Hi, Need this macro to enable build for clock driver. I found it in your patch, clk/exynos5260: add clock file for exynos5260. For consistency, I'm fine on this, if Tomasz has no objection me to pick this into samsung tree for the 5260 clock stuff

RE: [PATCH V5 00/20] ARM: exynos: cpuidle: Move the driver to drivers/cpuidle

2014-04-26 Thread Kukjin Kim
Tomasz Figa wrote: On 14.04.2014 11:01, Daniel Lezcano wrote: Hi Kukjin, I believe I addressed all the comments. Is it possible to take this patchset for next ? Sure ;-) +1. Also when applying you might add Reviewed-by: Tomasz Figa t.f...@samsung.com to any patches that

RE: [PATCH] ARM: dts: Remove vmmc-supply for mmc@12220000 on arndale-octa board

2014-04-26 Thread Kukjin Kim
Javi Merino wrote: On Fri, Apr 25, 2014 at 09:35:35PM +0100, Tomasz Figa wrote: On 25.04.2014 22:30, Javi Merino wrote: On Fri, Apr 25, 2014 at 09:16:30PM +0100, Tomasz Figa wrote: On 25.04.2014 22:11, Javi Merino wrote: d726ca2d3316 (ARM: dts: Add vmmc-supply to MMC on arndale-octa

Re: [PATCH v2] ARM: dts: Add peach-pit board support

2014-04-26 Thread Tomasz Figa
Hi Arun, On 24.04.2014 06:17, Arun Kumar K wrote: Adds the google peach-pit board dts file which uses exynos5420 SoC. Signed-off-by: Arun Kumar K arun...@samsung.com Signed-off-by: Doug Anderson diand...@chromium.org --- Changes from v1 --- - Addressed review comments from Doug,

Re: [PATCH v5 2/8] cpufreq: Use cpufreq_for_each_* macros for frequency table iteration

2014-04-26 Thread Stratos Karafotis
Hi Prabhakar, On 26/04/2014 12:57 μμ, Prabhakar Lad wrote: Hi Stratos, Thanks for the patch, On Sat, Apr 26, 2014 at 1:45 AM, Stratos Karafotis strat...@semaphore.gr wrote: The cpufreq core now supports the cpufreq_for_each_entry and cpufreq_for_each_valid_entry macros helpers for

Re: [PATCHv4 7/7] ARM: dts: Add device tree sources for Exynos3250

2014-04-26 Thread Tomasz Figa
On 26.04.2014 02:51, Tomasz Figa wrote: Hi Chanwoo, On 25.04.2014 03:16, Chanwoo Choi wrote: From: Tomasz Figa t.f...@samsung.com This patch add new exynos3250.dtsi to support Exynos3250 SoC based on Cortex-A7 dual core and includes following dt nodes: - GIC interrupt controller - Pinctrl to

[PATCH 0/5 v2] iio: exynos_adc: fix minor nits in the driver

2014-04-26 Thread Naveen Krishna Chatradhi
This patchset fixes the 1. bug causing a crash during module removal for exynos_adc.ko. - The bug was seen by Doug, while trying to compile the whole IIO subsystem as module @ https://lkml.org/lkml/2014/4/21/481 from Doug. 2. rearrange the clock and regulator enable/disable calls during

[PATCH 5/5 v2] iio: exynos_adc: do a reinit_completion before the conversion

2014-04-26 Thread Naveen Krishna Chatradhi
Add reinit_completion() before the wait_for_completion_timeout in raw_read() call. Signed-off-by: Naveen Krishna Chatradhi ch.nav...@samsung.com Reviewed-by: Doug Anderson diand...@chromium.org --- drivers/iio/adc/exynos_adc.c |1 + 1 file changed, 1 insertion(+) diff --git

Re: [PATCH v8 3/3] ARM: dts: Add initial device tree support for EXYNOS5410

2014-04-26 Thread Tomasz Figa
Hi, Since I've started enforcing reference-based DT syntax due to multiple advantages over the plain full-tree based one, you should do the same for your dts/i files. You can take the series adding support for Exynos5260 as an example:

[PATCH 4/5 v2] iio: exynos_adc: do a soft reset in case of timeout

2014-04-26 Thread Naveen Krishna Chatradhi
Do a soft reset software if a timeout happens. This is applicable only for ADC_V2. Signed-off-by: Naveen Krishna Chatradhi ch.nav...@samsung.com Reviewed-by: Doug Anderson diand...@chromium.org --- This change is a part of the patch reviewed at https://lkml.org/lkml/2013/11/5/92

[PATCH 1/5 v2] iio: exynos_adc: use indio_dev-dev structure to handle child nodes

2014-04-26 Thread Naveen Krishna Chatradhi
From: Naveen Krishna Ch ch.nav...@samsung.com Using pdev-dev with device_for_each_child() would iterate over all of the children of the platform device and delete them. Thus, causing crashes during module unload. We should be using the indio_dev-dev structure for registering/unregistering child

Re: [PATCH] ARM: dts: Remove mau_pd node for Exynos5420

2014-04-26 Thread Vikas Sajjan
Hi, On Sat, Apr 26, 2014 at 5:00 AM, Tomasz Figa tomasz.f...@gmail.com wrote: On 24.04.2014 13:03, Tushar Behera wrote: On 04/24/2014 03:36 PM, Tomasz Figa wrote: On 24.04.2014 11:07, Tushar Behera wrote: On 04/23/2014 03:43 PM, Kukjin Kim wrote: Tushar Behera wrote: On 22 April

Re: [PATCH 1/5] iio: exynos_adc: use indio_dev-dev structure to handle child nodes

2014-04-26 Thread Jonathan Cameron
On 25/04/14 16:46, Doug Anderson wrote: Naveen, Thanks for sending this. Given that Jonathan Cameron was involved in the previous discussion, it probably would have been wise to include him on the CC list. In my case, don't worry too much as I have linux-iio coming into exactly the same place

Re: [PATCH 1/5 v2] iio: exynos_adc: use indio_dev-dev structure to handle child nodes

2014-04-26 Thread Jonathan Cameron
On 26/04/14 12:37, Naveen Krishna Chatradhi wrote: From: Naveen Krishna Ch ch.nav...@samsung.com Using pdev-dev with device_for_each_child() would iterate over all of the children of the platform device and delete them. Thus, causing crashes during module unload. We should be using the

Re: [PATCH 1/5] iio: exynos_adc: use indio_dev-dev structure to handle child nodes

2014-04-26 Thread Naveen Krishna Ch
Hello Jonathan, On 26 April 2014 18:23, Jonathan Cameron ji...@kernel.org wrote: On 25/04/14 16:46, Doug Anderson wrote: Naveen, Thanks for sending this. Given that Jonathan Cameron was involved in the previous discussion, it probably would have been wise to include him on the CC list.

Re: [PATCH] ARM: dts: Remove mau_pd node for Exynos5420

2014-04-26 Thread Tomasz Figa
Hi Vikas, On 26.04.2014 13:57, Vikas Sajjan wrote: Hi, On Sat, Apr 26, 2014 at 5:00 AM, Tomasz Figa tomasz.f...@gmail.com wrote: On 24.04.2014 13:03, Tushar Behera wrote: On 04/24/2014 03:36 PM, Tomasz Figa wrote: On 24.04.2014 11:07, Tushar Behera wrote: On 04/23/2014 03:43 PM,

Re: [PATCH v8 3/3] ARM: dts: Add initial device tree support for EXYNOS5410

2014-04-26 Thread Tarek Dakhran
Hi, Will be done in next version. Best regards, Tarek On Sat, Apr 26, 2014 at 3:41 PM, Tomasz Figa tomasz.f...@gmail.com wrote: Hi, Since I've started enforcing reference-based DT syntax due to multiple advantages over the plain full-tree based one, you should do the same for your

Re: [PATCH RFC 3/3] drm/exynos: use pending_components for components tracking

2014-04-26 Thread Russell King - ARM Linux
On Fri, Apr 25, 2014 at 04:36:01PM +0200, Andrzej Hajda wrote: On 04/23/2014 07:13 PM, Russell King - ARM Linux wrote: Let me be absolutely clear *why* I'm very interested in this - and that is because I'm presently converting TDA998x and Armada DRM to use the component helpers. If your

Re: [PATCH] ARM: dts: Remove mau_pd node for Exynos5420

2014-04-26 Thread Vikas Sajjan
Hi Tomasz, On Sat, Apr 26, 2014 at 8:48 PM, Tomasz Figa tomasz.f...@gmail.com wrote: Hi Vikas, On 26.04.2014 13:57, Vikas Sajjan wrote: Hi, On Sat, Apr 26, 2014 at 5:00 AM, Tomasz Figa tomasz.f...@gmail.com wrote: On 24.04.2014 13:03, Tushar Behera wrote: On 04/24/2014 03:36 PM,

Re: [PATCH] ARM: dts: Remove mau_pd node for Exynos5420

2014-04-26 Thread Tomasz Figa
On 26.04.2014 17:42, Vikas Sajjan wrote: Hi Tomasz, On Sat, Apr 26, 2014 at 8:48 PM, Tomasz Figa tomasz.f...@gmail.com wrote: Hi Vikas, On 26.04.2014 13:57, Vikas Sajjan wrote: Hi, On Sat, Apr 26, 2014 at 5:00 AM, Tomasz Figa tomasz.f...@gmail.com wrote: On 24.04.2014 13:03, Tushar

Re: [PATCH 0/2] Add generic cpu power control functions for exynos

2014-04-26 Thread Abhilash Kesavan
Hi Leela, On Thu, Apr 24, 2014 at 3:56 PM, Leela Krishna Amudala leela.kris...@linaro.org wrote: Hi Abhilash, If you are okay with this patchset you can rebase/merge it with your mcpm patches. I have added these patches as part of my mcpm v3 patchset. Thanks, Abhilash Best Wishes, Leela

exynos4412: porting hdmiddc and hdmiphy node entries

2014-04-26 Thread Tobias Jakobi
Hello, I'm trying to get the HDMI port working on a Exynos4412 based board. Attached is a snippet of a dts. This config was supposed to work in the past. However with 3.15-rc1 some things changed. samsung,exynos4210-hdmiddc and samsung,exynos4212-hdmiphy have no function anymore, the code that

[RFC v3 PATCH 01/16] drm/exynos: dsi: move the Eot packets configuration point

2014-04-26 Thread YoungJun Cho
This configuration could be used in MIPI DSI command mode also. Signed-off-by: YoungJun Cho yj44@samsung.com Acked-by: Inki Dae inki@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/gpu/drm/exynos/exynos_drm_dsi.c |5 +++-- 1 file changed, 3 insertions(+), 2

[RFC v3 PATCH 00/16] drm/exynos: support MIPI DSI command mode display

2014-04-26 Thread YoungJun Cho
This patch series includes the followings: - FIMD I80 interface - DSI command mode interface for Exynos5420 SoC - S6E3FA0 command mode type panel driver This patch series is based on exynos-drm-next branch. Previous patch set, RFC v1: http://www.spinics.net/lists/dri-devel/msg57513.html RFC v2:

[RFC v3 PATCH 07/16] drm/exynos: dsi: add TE handler to support command mode interface

2014-04-26 Thread YoungJun Cho
To support command mode interface, the DSI host calls this handler to notify the panel tearing effect synchronization signal to the CRTC device manager to trigger to transfer video image. Signed-off-by: YoungJun Cho yj44@samsung.com Acked-by: Inki Dae inki@samsung.com Acked-by: Kyungmin

[RFC v3 PATCH v4 12/16] drm/panel: add S6E3FA0 driver

2014-04-26 Thread YoungJun Cho
This patch adds MIPI-DSI command mode based S6E3FA0 AMOLED LCD Panel driver. Changelog v2: - Declares delay, size properties in probe routine instead of DT Changelog v3: - Moves CPU timings relevant properties from FIMD DT (commented by Laurent Pinchart, Andrzej Hajda) Changelog v4: - Enhances

[RFC v3 PATCH v6 11/16] ARM: dts: s6e3fa0: add DT bindings

2014-04-26 Thread YoungJun Cho
This patch adds DT bindings for s6e3fa0 panel. The bindings describes panel resources, display timings and cpu mode timings. Changelog v2: - Adds unit address (commented by Sachin Kamat) Changelog v3: - Removes optional delay, size properties (commented by Laurent Pinchart) - Adds OLED detection,

[RFC v3 PATCH v2 09/16] ARM: dts: exynos_dsim: add exynos5420 compatible to DT bindings

2014-04-26 Thread YoungJun Cho
This patch adds relevant to exynos5420 compatible for exynos5420 SoC support. Changelog v2: - Changes title, description and fixes typo (commented by Sachin Kamat) Signed-off-by: YoungJun Cho yj44@samsung.com Acked-by: Inki Dae inki@samsung.com Acked-by: Kyungmin Park

[RFC v3 PATCH v2 03/16] ARM: dts: sysreg: add exynos5 compatible to DT bindings

2014-04-26 Thread YoungJun Cho
This patch adds relevant to exynos5 compatible for exynos5 SoCs. Changelog v2: - Changes title and description (commented by Sachin Kamat) Signed-off-by: YoungJun Cho yj44@samsung.com Acked-by: Inki Dae inki@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com ---

[RFC v3 PATCH 02/16] drm/exynos: use wait_event_timeout() for safety usage

2014-04-26 Thread YoungJun Cho
There could be the case that the page flip operation isn't finished correctly with some abnormal condition such as panel reset. So this patch replaces wait_event() with wait_event_timeout() to avoid waiting for page flip completion infinitely. Signed-off-by: YoungJun Cho yj44@samsung.com

[RFC v3 PATCH 06/16] drm/exynos: add TE handler to support MIPI DSI command mode interface

2014-04-26 Thread YoungJun Cho
To support MIPI DSI command mode interface, the panel should generates Tearing Effect synchronization signal between MCU and FB to display video images. And the display controller should trigger to transfer video image at this signal. So the panel receives the TE IRQ, then calls this handler

[RFC v3 PATCH 15/16] ARM: dts: exynos5420: add mipi-phy node

2014-04-26 Thread YoungJun Cho
This patch adds mipi-phy node for MIPI-DSI device. Signed-off-by: YoungJun Cho yj44@samsung.com Acked-by: Inki Dae inki@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com --- arch/arm/boot/dts/exynos5420.dtsi |6 ++ 1 file changed, 6 insertions(+) diff --git

[RFC v3 PATCH 16/16] ARM: dts: exynos5420: add dsi node

2014-04-26 Thread YoungJun Cho
This patch adds common part of dsi node. Changelog v2: - Uses clock macros instead of numbers (commented by Sachin Kamat) Signed-off-by: YoungJun Cho yj44@samsung.com Acked-by: Inki Dae inki@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com ---

[RFC v3 PATCH 14/16] ARM: dts: exynos5: add system register support

2014-04-26 Thread YoungJun Cho
This patch adds sysreg device node, and sysreg property to fimd device node which is required to use I80 interface. Signed-off-by: YoungJun Cho yj44@samsung.com Acked-by: Inki Dae inki@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com --- arch/arm/boot/dts/exynos5.dtsi |6

[RFC v3 PATCH v3 04/16] ARM: dts: samsung-fimd: add I80 specific properties

2014-04-26 Thread YoungJun Cho
In case of using CPU interface panel, the relevant registers should be set. So this patch adds relevant dt bindings. Changelog v2: - Changes samsung,sysreg-phandle to samsung,sysreg Changelog v3: - Moves CPU timings relevant properties to panel DT (commented by Laurent Pinchart, Andrzej Hajda)

[RFC v3 PATCH 08/16] drm/exynos: fimd: support I80 interface

2014-04-26 Thread YoungJun Cho
To support MIPI DSI command mode interface, FIMD should do followings: - Sets LCD block configuration for I80 interface. - Uses lcd_sys as an IRQ resource and sets relevant IRQ configuration. - Implements trigger feature which transfers image date if there is page flip request, and implements TE

[RFC v3 PATCH 13/16] ARM: dts: exynos4: add system register node

2014-04-26 Thread YoungJun Cho
This patch adds sysreg property to fimd device node which is required to use I80 interface. Signed-off-by: YoungJun Cho yj44@samsung.com Acked-by: Inki Dae inki@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com --- arch/arm/boot/dts/exynos4.dtsi |1 + 1 file changed, 1

[RFC v3 PATCH v2 10/16] drm/exynos: dsi: add driver data to support Exynos5420

2014-04-26 Thread YoungJun Cho
The offset of register DSIM_PLLTMR_REG in Exynos5420 is different from the one in Exynos4 SoC. In case of Exynos5420 SoC, there is no frequency band bit in DSIM_PLLCTRL_REG, and it uses DSIM_PHYCTRL_REG and DSIM_PHYTIMING*_REG instead. So this patch adds driver data to distinguish it. Changelog

Re: [RFC v2 PATCH 08/14] drm/exynos: dsi: add driver data to support Exynos5420

2014-04-26 Thread YoungJun Cho
Hi Andrzej, On 04/24/2014 10:23 AM, YoungJun Cho wrote: Hi Andrzej, Thank you for comments. On 04/23/2014 05:29 PM, Andrzej Hajda wrote: On 04/21/2014 02:28 PM, YoungJun Cho wrote: The offset of register DSIM_PLLTMR_REG in Exynos5420 is different from the one in Exynos4 SoC. In case of

Re: [PATCH v3 6/7] arm64: mm: Implement 4 levels of translation tables

2014-04-26 Thread Jungseok Lee
On Thursday, April 24, 2014 1:02 AM, Steve Capper wrote: On Fri, Apr 18, 2014 at 04:59:20PM +0900, Jungseok Lee wrote: [ ... ] diff --git a/arch/arm64/kernel/head.S b/arch/arm64/kernel/head.S index 0fd5650..f313a7a 100644 --- a/arch/arm64/kernel/head.S +++ b/arch/arm64/kernel/head.S