[PATCH] ARM: dts: Add atmel trackpad node to 5250 cros

2014-04-13 Thread Arun Kumar K
The newer versions of exynos5250 based Snow boards have atmel trackpad. Updating relevant nodes for the same. Signed-off-by: Arun Kumar K --- arch/arm/boot/dts/exynos5250-cros-common.dtsi | 24 1 file changed, 24 insertions(+) diff --git a/arch/arm/boot/dts/exynos5250

Re: [PATCH 01/27] ARM: EXYNOS: Add Exynos3250 SoC ID

2014-04-13 Thread Chanwoo Choi
Dear Kukjin and Tomasz, On 04/11/2014 10:31 AM, Chanwoo Choi wrote: > Hi, > > On 04/10/2014 06:43 PM, Arnd Bergmann wrote: >> On Thursday 10 April 2014 18:28:18 Chanwoo Choi wrote: >>> This patch add Exynos3250's SoC ID. Exynos 3250 is System-On-Chip(SoC) that >>> is based on the 32-bit RISC proc

[PATCH 9/9] drm/exynos: modify goto labels to meaningful names

2014-04-13 Thread Inki Dae
Signed-off-by: Inki Dae --- drivers/gpu/drm/exynos/exynos_drm_drv.c | 40 +++ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c index cdd74e2..1d1c604 100644 --- a/driver

[PATCH 8/9] drm/exynos: fix comment to exynos_drm_device_subdrv_prove call

2014-04-13 Thread Inki Dae
subdrv_probe callback of virtual display driver will be called by exynos_drm_device_subdrv_probe() to create crtc and encoder/connector for virtual display driver. So it fixes comments to exynos_drm_device_subdrv probe call. Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- drivers/gpu/d

[PATCH v2 7/9] drm/exynos: separate dpi from fimd

2014-04-13 Thread Inki Dae
From: Andrzej Hajda The patch separates dpi related routines from fimd. Changelog v2: - Rename ctx->dpi to ctx->display Signed-off-by: Andrzej Hajda Signed-off-by: Inki Dae --- drivers/gpu/drm/exynos/exynos_drm_dpi.c | 40 +-- drivers/gpu/drm/exynos/exynos_drm_drv.h | 15 ++--

[PATCH 4/9] ARM: dts: exynos4210-trats: add super device node for exynos drm

2014-04-13 Thread Inki Dae
Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/boot/dts/exynos4210-trats.dts |5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/boot/dts/exynos4210-trats.dts b/arch/arm/boot/dts/exynos4210-trats.dts index 02c6768..a41c109 100644 --- a/arch/arm/boot/dts/exyno

[PATCH 3/9] ARM: dts: exynos4210-universal: add super device node for exynos drm

2014-04-13 Thread Inki Dae
Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/boot/dts/exynos4210-universal_c210.dts |5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/boot/dts/exynos4210-universal_c210.dts b/arch/arm/boot/dts/exynos4210-universal_c210.dts index 0a80a72..5351ac4 100644 --

[PATCH 5/9] ARM: dts: exynos4412-trats2: add super device node for exynos drm

2014-04-13 Thread Inki Dae
Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/boot/dts/exynos4412-trats2.dts |5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/boot/dts/exynos4412-trats2.dts b/arch/arm/boot/dts/exynos4412-trats2.dts index 53c717b..115b9ed 100644 --- a/arch/arm/boot/dts/ex

[PATCH v3 0/9] drm/exynos: more cleanup with super device support

2014-04-13 Thread Inki Dae
This patch series cleans up exynos drm framework and kms sub drivers using the component framework[1] [1] http://lists.freedesktop.org/archives/dri-devel/2014-January/051249.html Previous patches, RFC: http://comments.gmane.org/gmane.comp.video.dri.devel/101200 v1: http://lists.freedesktop.org/ar

[PATCH v5 1/9] drm/exynos: add super device support

2014-04-13 Thread Inki Dae
This patch adds super device support to bind sub drivers using device tree. For this, you should add a super device node to each machine dt files like belows, In case of using MIPI-DSI, display-subsystem { compatible = "samsung,exynos-display-subsystem"; po

[PATCH 2/9] drm/exynos: dpi: fix hotplug fail issue

2014-04-13 Thread Inki Dae
When connector is created, if connector->polled is DRM_CONNECTOR_POLL_CONNECT then drm_kms_helper_hotplug_event function isn't called at drm_helper_hpd_irq_event because the function will be called only in case of DRM_CONNECTOR_POLL_HPD. So this patch sets always DRM_CONNECTOR_POLL_HPD flag to con

[PATCH 6/9] exynos/drm: add DT bindings

2014-04-13 Thread Inki Dae
This patch adds bindings for Exynos drm display subsystem. The bindings describes ports containing a list of phandles pointing to display controller, image enhancer, and display interfaces nodes. Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- .../bindings/drm/exynos/samsung-exynos-drm

Re: [PATCH 03/27] ARM: EXYNOS: Add IO mapping for PMU of Exynos3250

2014-04-13 Thread Chanwoo Choi
Dear Arnd and Kukjin, On 04/10/2014 06:46 PM, Arnd Bergmann wrote: > On Thursday 10 April 2014 18:28:20 Chanwoo Choi wrote: >> This patch add memory mapping for PMU (Power Management Unit) which is used >> for power control of Exynos3250. >> >> Signed-off-by: Chanwoo Choi >> Signed-off-by: Kyungm

[PATCH] thermal: samsung: Only update available threshold limits

2014-04-13 Thread Tushar Behera
Currently the threshold limits are updated in 2 stages, once for all software trigger levels and again for hardware trip point. While updating the software trigger levels, it overwrites the threshold limit for hardware trip point thereby forcing the Exynos core to issue an emergency shutdown. Upd

Re: [PATCH 01/27] ARM: EXYNOS: Add Exynos3250 SoC ID

2014-04-13 Thread Chanwoo Choi
Dear Olof and Tomasz, On 04/11/2014 05:39 PM, Tomasz Figa wrote: > On 11.04.2014 08:32, Chanwoo Choi wrote: >> Hi, >> >> On 04/11/2014 10:46 AM, Olof Johansson wrote: >>> On Thu, Apr 10, 2014 at 06:37:12PM +0900, Chanwoo Choi wrote: This patch add Exynos3250's SoC ID. Exynos 3250 is System-On

Re: [PATCH] arm: exynos: generalize power register address calculation

2014-04-13 Thread Chander Kashyap
Hi, On 10 April 2014 11:18, Chander Kashyap wrote: > Hi Tomasz, > > On 9 April 2014 20:15, Tomasz Figa wrote: >> On 09.04.2014 15:49, Chander Kashyap wrote: >>> >>> Hi Tomasz, >>> >>> On 9 April 2014 17:19, Tomasz Figa wrote: Hi Chander, On 09.04.2014 13:09, Chander Kas

[PATCHv2] pinctrl: exynos: Add driver data for Exynos3250

2014-04-13 Thread Chanwoo Choi
From: Tomasz Figa This patch adds driver data (bank list and EINT layout) for Exynos3250 to pinctrl-exynos driver. Exynos3250 includes 158 multi-functional input/output ports. There are 23 general port groups. Changes from v1: - Add signed-off of sender - Post only separated patch for pinctrl fr

Re: [PATCH] iio: adc: exynos_adc: Control special clock of ADC to support Exynos3250 ADC

2014-04-13 Thread Chanwoo Choi
Hi Jonathan, On 04/12/2014 04:49 PM, Jonathan Cameron wrote: > > > On April 11, 2014 11:45:42 PM GMT+01:00, "최찬우" wrote: >> Hi Bartlomiej, >> >> On Fri, Apr 11, 2014 at 6:41 PM, Bartlomiej Zolnierkiewicz >> wrote: >>> >>> Hi, >>> >>> On Friday, April 11, 2014 11:00:40 AM Chanwoo Choi wrote: >>

Re: [PATCH V2 0/3] Add PMU and S2R support for exynos5420

2014-04-13 Thread Tomasz Figa
Hi Vikas, Will review on Tuesday, when back at work. Same for the other series from you. Best regards, Tomasz On 11.04.2014 15:17, Vikas Sajjan wrote: Hi, Any comments on this series. On Thu, Mar 27, 2014 at 11:43 AM, Vikas Sajjan wrote: rebased on kgene tree for-next branch https://