Re: [PATCH v2 2/2] drm/exynos: remove unused 'activated' field from exynos_drm_plane

2015-04-17 Thread Gustavo Padovan
2015-04-17 Tobias Jakobi : > Hello Joonyoung, > > On 2015-04-17 08:30, Joonyoung Shim wrote: > >Hi Tobias, > > > >On 04/16/2015 04:54 AM, Tobias Jakobi wrote: > >>No component of Exynos DRM uses this field. Perhaps it was > >>once meant to provide more fine-grained information in > >>addition to

Re: [PATCH v5 00/18] Exynos SYSMMU (IOMMU) integration with DT and DMA-mapping subsystem

2015-04-17 Thread Javier Martinez Canillas
Hello Marek, On Fri, Apr 17, 2015 at 4:48 PM, Marek Szyprowski wrote: > Hello, > > > On 2015-04-17 16:33, Javier Martinez Canillas wrote: >> >> Hello Marek, >> >> On Wed, Feb 4, 2015 at 3:21 PM, Joerg Roedel wrote: >>> >>> Hi Marek, >>> >>> On Fri, Jan 23, 2015 at 04:51:10PM +0100, Marek Szyprow

Re: [PATCH 2/2] ARM: dts: Fix pinctrl settings for S2MPS11 RTC alarm IRQ on Arndale Octa

2015-04-17 Thread Krzysztof Kozlowski
2015-04-02 23:36 GMT+09:00 Krzysztof Kozlowski : > On Arndale Octa the S2MPS11 RTC alarm interrupt was not handled at all > because of wrong configuration of interrupt and gpx3-2. > 1. Interrupt is signaled by falling edge. > 2. This GPIO line is hard-wired on the board to PVDD_APIO_1V8 through a >

Re: [PATCH v5 00/18] Exynos SYSMMU (IOMMU) integration with DT and DMA-mapping subsystem

2015-04-17 Thread Marek Szyprowski
Hello, On 2015-04-17 16:33, Javier Martinez Canillas wrote: Hello Marek, On Wed, Feb 4, 2015 at 3:21 PM, Joerg Roedel wrote: Hi Marek, On Fri, Jan 23, 2015 at 04:51:10PM +0100, Marek Szyprowski wrote: 1. All iommu related patches (with 'iommu: exynos') can be merged to iommu tree. They don'

Re: [PATCH v5 00/18] Exynos SYSMMU (IOMMU) integration with DT and DMA-mapping subsystem

2015-04-17 Thread Javier Martinez Canillas
Hello Marek, On Wed, Feb 4, 2015 at 3:21 PM, Joerg Roedel wrote: > Hi Marek, > > On Fri, Jan 23, 2015 at 04:51:10PM +0100, Marek Szyprowski wrote: >> 1. All iommu related patches (with 'iommu: exynos') can be merged to >> iommu tree. They don't have any direct dependencies on the DTS, DRM and >>

[PATCH v2 5/7] ARM: dts: exynos5: Use labels for overriding nodes in Exynos5420

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Additionally remove duplicated serial and uart labels for serial Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos5420-peach-pit.dts | 2 +- arch/arm/boot/dts/exynos5420.dtsi | 80 +

[PATCH v2 6/7] ARM: dts: exynos5: Use labels for overriding nodes in SMDK5420

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos5420-smdk5420.dts | 645 +++--- 1 file changed, 323 insertions(+), 322 deletions(-) diff --git a/arch/arm/boot/dts/exynos

[PATCH v2 7/7] ARM: dts: exynos5: Use labels for overriding nodes in Exynos5440 boards

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos5440-sd5v1.dts| 10 ++-- arch/arm/boot/dts/exynos5440-ssdk5440.dts | 85 +++ 2 files changed, 47 insertions(+), 48

[PATCH v2 4/7] ARM: dts: exynos5: Use labels for overriding nodes in Arndale Octa

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos5420-arndale-octa.dts | 634 +- 1 file changed, 317 insertions(+), 317 deletions(-) diff --git a/arch/arm/boot/dts/exynos

[PATCH v2 3/7] ARM: dts: exynos5: Remove duplicated I2C7 nodes in Snow

2015-04-17 Thread Krzysztof Kozlowski
The i2c_7 node (i2c@12CD) with LVDS bridge child node was put in Exynos5250 Snow DTS file twice. Move the LVDS bridge to proper existing i2c_7 node. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos5250-snow.dts | 46 +-- 1 file changed, 22 inser

[PATCH v2 1/7] ARM: dts: Add labels to Exynos5 nodes

2015-04-17 Thread Krzysztof Kozlowski
Add new labels to certain nodes so they could be easily referenced by Exynos5 board DTS files. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos5.dtsi| 6 +++--- arch/arm/boot/dts/exynos5440.dtsi | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/arm/

[PATCH v2 2/7] ARM: dts: exynos5: Use labels for overriding nodes in Exynos5250

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos5250.dtsi | 82 +++ 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/arch/arm/boot/dts/exynos52

[PATCH v2 0/7] ARM: dts: exynos5: labels for overriding nodes

2015-04-17 Thread Krzysztof Kozlowski
Hi, Changes since v1 1. Re-phrased the description (phandle->label). Suggested by Arnd. Description === The label-based notation reduces possible mistakes when overriding nodes by child DTSI and board files and reduces duplication of addresses. The patchset refactors Ex

[PATCH v3 05/11] ARM: dts: exynos4: Use labels for overriding nodes in Trats

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4210-trats.dts | 592 - 1 file changed, 296 insertions(+), 296 deletions(-) diff --git a/arch/arm/boot/dts/exynos

[PATCH v3 10/11] ARM: dts: exynos4: Use labels for overriding nodes in SMDK4412

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4412-smdk4412.dts | 210 +++--- 1 file changed, 105 insertions(+), 105 deletions(-) diff --git a/arch/arm/boot/dts/exynos

[PATCH v3 08/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4412

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4412.dtsi | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/arch/arm/boot/dts/exynos4412.dtsi b/arch/arm

[PATCH v3 11/11] ARM: dts: exynos4: Use labels for overriding nodes in Trats2

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4412-trats2.dts | 1331 --- 1 file changed, 666 insertions(+), 665 deletions(-) diff --git a/arch/arm/boot/dts/exynos

[PATCH v3 03/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4210 Origen

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4210-origen.dts | 418 1 file changed, 209 insertions(+), 209 deletions(-) diff --git a/arch/arm/boot/dts/exynos

[PATCH v3 09/11] ARM: dts: exynos4: Use labels for overriding nodes in Odroid

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4412-odroid-common.dtsi | 728 arch/arm/boot/dts/exynos4412-odroidx.dts| 16 +- 2 files changed, 372 insertions(

[PATCH v3 02/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4210

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4210.dtsi | 43 +++ 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/arch/arm/boot/dts/exynos42

[PATCH v3 06/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4212

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4212.dtsi | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/boot/dts/exynos4212.dtsi b/arch/arm/boot/dts/

[PATCH v3 04/11] ARM: dts: exynos4: Use labels for overriding nodes in SMDKv310

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4210-smdkv310.dts | 280 +++--- 1 file changed, 140 insertions(+), 140 deletions(-) diff --git a/arch/arm/boot/dts/exynos

[PATCH v3 01/11] ARM: dts: Add labels to Exynos4 nodes

2015-04-17 Thread Krzysztof Kozlowski
Add new labels to certain nodes so they could be easily referenced by Exynos4 board DTS files. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4.dtsi| 22 +++--- arch/arm/boot/dts/exynos4210-pinctrl.dtsi | 6 +++--- arch/arm/boot/dts/exynos4210.dtsi

[PATCH v3 07/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4x12

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4x12.dtsi | 210 +++--- 1 file changed, 105 insertions(+), 105 deletions(-) diff --git a/arch/arm/boot/dts/exynos

[PATCH v3 00/11] ARM: dts: exynos4: labels for overriding nodes

2015-04-17 Thread Krzysztof Kozlowski
Hi, Changes since v2 1. Fix typo in commit msg (lablels -> labels). Changes since v1 1. Re-phrased the description (phandle->label). Suggested by Arnd. Description === The label-based notation reduces possible mistakes when overriding nodes by child DT

[PATCHv2 02/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4210

2015-04-17 Thread Krzysztof Kozlowski
Usage of lablels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4210.dtsi | 43 +++ 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/arch/arm/boot/dts/exynos4

[PATCHv2 01/11] ARM: dts: Add labels to Exynos4 nodes

2015-04-17 Thread Krzysztof Kozlowski
Add new labels to certain nodes so they could be easily referenced by Exynos4 board DTS files. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4.dtsi| 22 +++--- arch/arm/boot/dts/exynos4210-pinctrl.dtsi | 6 +++--- arch/arm/boot/dts/exynos4210.dtsi

[PATCHv2 04/11] ARM: dts: exynos4: Use labels for overriding nodes in SMDKv310

2015-04-17 Thread Krzysztof Kozlowski
Usage of lablels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4210-smdkv310.dts | 280 +++--- 1 file changed, 140 insertions(+), 140 deletions(-) diff --git a/arch/arm/boot/dts/exyno

[PATCHv2 05/11] ARM: dts: exynos4: Use labels for overriding nodes in Trats

2015-04-17 Thread Krzysztof Kozlowski
Usage of lablels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4210-trats.dts | 592 - 1 file changed, 296 insertions(+), 296 deletions(-) diff --git a/arch/arm/boot/dts/exyno

Re: [PATCH] ASoC: samsung: s3c24xx-i2s: Fix return value check in s3c24xx_iis_dev_probe()

2015-04-17 Thread Mark Brown
On Thu, Apr 16, 2015 at 08:18:02PM +0800, weiyj...@163.com wrote: > From: Wei Yongjun > > In case of error, the function devm_ioremap_resource() returns > ERR_PTR() and never returns NULL. The NULL test in the return > value check should be replaced with IS_ERR(). Applied, thanks. signature.as

[PATCHv2 03/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4210 Origen

2015-04-17 Thread Krzysztof Kozlowski
Usage of lablels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4210-origen.dts | 418 1 file changed, 209 insertions(+), 209 deletions(-) diff --git a/arch/arm/boot/dts/exyno

[PATCHv2 06/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4212

2015-04-17 Thread Krzysztof Kozlowski
Usage of lablels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4212.dtsi | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/boot/dts/exynos4212.dtsi b/arch/arm/boot/dts

[PATCHv2 07/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4x12

2015-04-17 Thread Krzysztof Kozlowski
Usage of lablels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4x12.dtsi | 210 +++--- 1 file changed, 105 insertions(+), 105 deletions(-) diff --git a/arch/arm/boot/dts/exyno

[PATCHv2 08/11] ARM: dts: exynos4: Use labels for overriding nodes in Exynos4412

2015-04-17 Thread Krzysztof Kozlowski
Usage of lablels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4412.dtsi | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/arch/arm/boot/dts/exynos4412.dtsi b/arch/ar

[PATCHv2 09/11] ARM: dts: exynos4: Use labels for overriding nodes in Odroid

2015-04-17 Thread Krzysztof Kozlowski
Usage of lablels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/exynos4412-odroid-common.dtsi | 728 arch/arm/boot/dts/exynos4412-odroidx.dts| 16 +- 2 files changed, 372 insertions

[PATCHv2 00/11] ARM: dts: exynos4: labels for overriding nodes

2015-04-17 Thread Krzysztof Kozlowski
Hi, Changes since v1 1. Re-phrased the description (phandle->label). Suggested by Arnd. Description === The label-based notation reduces possible mistakes when overriding nodes by child DTSI and board files and reduces duplication of addresses. The patchset refactors E

Re: Fw: Re: [PATCH 3/3] drm/exynos: enable/disable blend based on pixel format

2015-04-17 Thread Ville Syrjälä
On Fri, Apr 17, 2015 at 02:55:57PM +0200, Tobias Jakobi wrote: > Hello Joonyoung, > > I thought about this some more. > > > > Gesendet: Freitag, 17. April 2015 um 08:16 Uhr > > Von: "Joonyoung Shim" > > An: "Gustavo Padovan" , > > linux-samsung-soc@vger.kernel.org > > Cc: dri-de...@lists.freed

[PATCH 2/2] ARM: dts: s3c2416: Use labels for overriding nodes in SMDK2416

2015-04-17 Thread Krzysztof Kozlowski
Usage of labels instead of full paths reduces possible mistakes when overriding nodes. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/s3c2416-smdk2416.dts | 86 +- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/arch/arm/boot/dts/s3c2416-

[PATCH 1/2] ARM: dts: s3c2416: Add labels to S3C2416 nodes

2015-04-17 Thread Krzysztof Kozlowski
Add new labels to certain nodes on S3C2416 so they could be easily referenced by board DTS files. Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/s3c2416.dtsi | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/arch/arm/boot/dts/s3c2416.dtsi b/arch/arm

Re: Fw: Re: [PATCH 3/3] drm/exynos: enable/disable blend based on pixel format

2015-04-17 Thread Tobias Jakobi
Hello Joonyoung, I thought about this some more. Gesendet: Freitag, 17. April 2015 um 08:16 Uhr Von: "Joonyoung Shim" An: "Gustavo Padovan" , linux-samsung-soc@vger.kernel.org Cc: dri-de...@lists.freedesktop.org, inki@samsung.com, "Gustavo Padovan" Betreff: Re: [PATCH 3/3] drm/exynos:

Re: [PATCH 1/2] thermal: exynos: Reorder exynos_map_dt_data() function

2015-04-17 Thread Lukasz Majewski
Hi Joonyoung, > Hi Lukasz, > > On 04/15/2015 08:05 PM, Lukasz Majewski wrote: > > Hi Joonyoung, > > > >> Hi Lukasz, > >> > >> On 01/30/2015 05:14 PM, Lukasz Majewski wrote: > >>> Hi Eduardo, Abhilash, > >>> > On Thu, Jan 22, 2015 at 06:02:07PM +0530, Abhilash Kesavan wrote: > > Hi Lukas

Re: Fw: Re: [PATCH 3/3] drm/exynos: enable/disable blend based on pixel format

2015-04-17 Thread Tobias Jakobi
Hello Joonyoung, Gesendet: Freitag, 17. April 2015 um 08:16 Uhr Von: "Joonyoung Shim" An: "Gustavo Padovan" , linux-samsung-soc@vger.kernel.org Cc: dri-de...@lists.freedesktop.org, inki@samsung.com, "Gustavo Padovan" Betreff: Re: [PATCH 3/3] drm/exynos: enable/disable blend based on pix

Re: [PATCH v2 2/2] drm/exynos: remove unused 'activated' field from exynos_drm_plane

2015-04-17 Thread Tobias Jakobi
Hello Joonyoung, On 2015-04-17 08:30, Joonyoung Shim wrote: Hi Tobias, On 04/16/2015 04:54 AM, Tobias Jakobi wrote: No component of Exynos DRM uses this field. Perhaps it was once meant to provide more fine-grained information in addition to the status stored in the 'enabled' field. Reviewed-