Re: [PATCH v3 0/9] ARM: S3C24XX: rework irq handling for a later dt usage

2013-01-27 Thread Heiko Stübner
Am Freitag, 25. Januar 2013, 19:59:18 schrieb Kukjin Kim: Heiko Stübner wrote: Third version of redoing the s3c24xx irqs in a generic way by using a declarative approach. Main change is the different approach to the init. Moved the s3c24xx_init_intc function from the dt patchset here,

[PATCH v4 1/9] ARM: S3C24XX: transform irq handling into a declarative form

2013-01-27 Thread Heiko Stübner
The irqs available on the machine and even the bit settings in the irq registers differ a lot through all the s3c24xx subarchitectures. This results in each subarch having its own irq init which adds its specific irqs to the base ones created in plat-s3c24xx/irq.c. This of course makes a future

[PATCH v4 2/9] ARM: S3C24XX: Move irq syscore-ops to irq-pm

2013-01-27 Thread Heiko Stübner
With this the definition of s3c24xx_irq_syscore_ops can also move to common.h from plat/pm.h and the definitions of s3c24xx_irq_suspend and s3c24xx_irq_resume are also not necessary anymore in plat/pm.h Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/common.h |

Re: [PATCH 3/4] ARM: dts: add support for hdmi-ddc to exynos4412-origen

2013-01-27 Thread Sylwester Nawrocki
Hi, On 01/25/2013 11:39 AM, Rahul Sharma wrote: Signed-off-by: Rahul Sharmarahul.sha...@samsung.com Please explain why this patch is needed, in more detail... --- arch/arm/boot/dts/exynos4.dtsi | 1 - arch/arm/boot/dts/exynos4412-origen.dts | 13 + 2 files changed,

[PATCH v4 3/9] ARM: S3C24XX: Modify s3c_irq_wake to use the hwirq property

2013-01-27 Thread Heiko Stübner
This gets rid of the use of static irq mappings there. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/irq-pm.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/mach-s3c24xx/irq-pm.c b/arch/arm/mach-s3c24xx/irq-pm.c index

[PATCH v4 4/9] ARM: S3C24XX: move s3c2416 irq init to common irq code

2013-01-27 Thread Heiko Stübner
This is needed to further clean up the irq init. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/Makefile |2 +- arch/arm/mach-s3c24xx/irq-pm.c | 23 +++ arch/arm/mach-s3c24xx/irq-s3c2416.c | 348 ---

Re: [PATCH 0/4] 0/4] ARM: dts: add support for hdmi to exynos4412

2013-01-27 Thread Sylwester Nawrocki
Hi, On 01/25/2013 11:39 AM, Rahul Sharma wrote: This patch enables hdmi support for Samsung Exynos4412 soc based Origen Board. This set is base on for next branch at git.kernel.org/?p=linux/kernel/git/kgene/linux-samsung.git Rahul Sharma (4): ARM: dts: add support for hdmi to exynos4

[PATCH v4 5/9] ARM: S3C24XX: modify s3c2416 irq init to initialize all irqs

2013-01-27 Thread Heiko Stübner
Previously the irq init used s3c24xx_init_irq and an additional arch_initcall to add the cpu specific irqs. To be able to simplyfy the irq init later, create a new function s3c416_init_irq, which then calls s3c24xx_init_irq but also adds the cpu specific irqs. Signed-off-by: Heiko Stuebner

[PATCH v4 6/9] ARM: S3C24XX: transform s3c2416 irqs into new structure

2013-01-27 Thread Heiko Stübner
Share the common irq code by simply defining a correct mapping declaration for the s3c2416. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/plat-s3c24xx/irq.c | 342 +++ 1 file changed, 87 insertions(+), 255 deletions(-) diff --git

[PATCH v4 7/9] ARM: S3C24XX: move s3c2443 irq code to irq.c

2013-01-27 Thread Heiko Stübner
Prequisite for further optimizations. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/Makefile |2 +- arch/arm/mach-s3c24xx/irq-s3c2443.c | 281 --- arch/arm/plat-s3c24xx/irq.c | 243 ++ 3

[PATCH v4 9/9] ARM: S3C24XX: transform s3c2443 subirqs into new structure

2013-01-27 Thread Heiko Stübner
Share the common irq code by simply defining a correct mapping declaration for the s3c2443. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/plat-s3c24xx/irq.c | 289 +++ 1 file changed, 75 insertions(+), 214 deletions(-) diff --git

Re: [PATCH 1/4] ARM: dts: add support for hdmi to exynos4

2013-01-27 Thread Sylwester Nawrocki
On 01/25/2013 11:39 AM, Rahul Sharma wrote: Signed-off-by: Rahul Sharmarahul.sha...@samsung.com Please provide proper commit text. Conflicts: arch/arm/mach-exynos/mach-exynos4-dt.c And make sure things like this are removed when submitting patches. ---

Re: [PATCH 2/4] ARM: dts: add support for mixer to exynos4

2013-01-27 Thread Sylwester Nawrocki
On 01/25/2013 11:39 AM, Rahul Sharma wrote: diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi index 6c2c79d..07cb7d4 100644 --- a/arch/arm/boot/dts/exynos4.dtsi +++ b/arch/arm/boot/dts/exynos4.dtsi @@ -296,4 +296,12 @@ interrupts =0 95 0;

[PATCH v4 0/9] ARM: S3C24XX: rework irq handling for a later dt usage

2013-01-27 Thread Heiko Stübner
This v4 does not change any code part. The patches are merely rebased to apply to the next/cleanup-s3c24xx branch as requested. Heiko Stuebner (9): ARM: S3C24XX: transform irq handling into a declarative form ARM: S3C24XX: Move irq syscore-ops to irq-pm ARM: S3C24XX: Modify s3c_irq_wake to

[PATCH V2 2/2] thermal: exynos: Use the framework for temperature emulation support

2013-01-27 Thread Amit Daniel Kachhap
This removes the driver specific sysfs support of the temperature emulation and uses the newly added core thermal framework for thermal emulation. A platform specific handler is added to support this. Signed-off-by: Amit Daniel Kachhap amit.dan...@samsung.com Acked-by: Kukjin Kim

Re: [PATCH 1/2] thermal: sysfs: Add a new sysfs node emul_temp

2013-01-27 Thread amit kachhap
On Mon, Jan 21, 2013 at 7:20 PM, Zhang Rui rui.zh...@intel.com wrote: On Wed, 2013-01-16 at 11:30 -0800, amit kachhap wrote: Hi Rui, Thanks for the review comments, On Tue, Jan 15, 2013 at 11:33 PM, Zhang Rui rui.zh...@intel.com wrote: Hi, Amit, On Sun, 2013-01-06 at 16:08 -0800, Amit

[PATCH V2 1/2] thermal: sysfs: Add a new sysfs node emul_temp for thermal emulation

2013-01-27 Thread Amit Daniel Kachhap
This patch adds support to set the emulated temperature method in thermal zone (sensor). After setting this feature thermal zone may report this temperature and not the actual temperature. The emulation implementation may be based on sensor capability through platform specific handler or pure

Re: [PATCH] drivers: cpufreq: exynos: update related_cpus mask to fix hotplug dump

2013-01-27 Thread Viresh Kumar
On Thu, Jan 24, 2013 at 9:40 AM, Inderpal Singh inderpal.si...@linaro.org wrote: commit 7e6087e595d3...cpufreq: Simplify cpufreq_add_dev() started using related_cpus mask to check if the current cpu is already managed. With above commit hotplug in exynos gives following dump. / $ echo 1

[PATCH 0/5] Add DRM FIMD DT support for Exynos4 DT Machines

2013-01-27 Thread Vikas Sajjan
This patch series adds support for DRM FIMD DT for Exynos4 DT Machines, specifically for Exynos4412 SoC. Is based on branch for-next http://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git Vikas Sajjan (5): ARM: dts: Add FIMD node to exynos4 ARM: dts: Adds lcd pinctrl node

[PATCH 1/5] ARM: dts: Add FIMD node to exynos4

2013-01-27 Thread Vikas Sajjan
This adds common FIMD device node for all Exynos4 SoCs. Signed-off-by: Vikas Sajjan vikas.saj...@linaro.org --- arch/arm/boot/dts/exynos4.dtsi |7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi index e1347fc..96c3b4a

[PATCH 2/5] ARM: dts: Adds lcd pinctrl node entries for SAMSUNG EXYNOS4412 SoC

2013-01-27 Thread Vikas Sajjan
This patch adds the lcd lanel related picntrl nodes for Exynos4412 SoC Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Signed-off-by: Vikas Sajjan vikas.saj...@linaro.org --- arch/arm/boot/dts/exynos4x12-pinctrl.dtsi | 26 ++ 1 file changed, 26 insertions(+) diff

[PATCH 4/5] ARM: dts: adds FIMD AUXDATA node entry for exynos4 DT

2013-01-27 Thread Vikas Sajjan
This patch adds the FIMD AUXDATA node Signed-off-by: Vikas Sajjan vikas.saj...@linaro.org --- arch/arm/mach-exynos/mach-exynos4-dt.c |4 1 file changed, 4 insertions(+) diff --git a/arch/arm/mach-exynos/mach-exynos4-dt.c b/arch/arm/mach-exynos/mach-exynos4-dt.c index ab1dacc..6c9e05f

[PATCH 5/5] ARM: EXYNOS: Enable backlight and PWM support for Exynos4 DT machines

2013-01-27 Thread Vikas Sajjan
Enables support for Backlight and PWM on Exynos4 DT machines Signed-off-by: Vikas Sajjan vikas.saj...@linaro.org --- arch/arm/mach-exynos/Kconfig |2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig index e103c29..8ecde22 100644 ---

Re: [PATCH 1/4] ARM: dts: add support for hdmi to exynos4

2013-01-27 Thread Rahul Sharma
Hi Sylwester, On Mon, Jan 28, 2013 at 2:24 AM, Sylwester Nawrocki sylvester.nawro...@gmail.com wrote: On 01/25/2013 11:39 AM, Rahul Sharma wrote: Signed-off-by: Rahul Sharmarahul.sha...@samsung.com Please provide proper commit text. Conflicts:

Re: [PATCH 0/5] Add DRM FIMD DT support for Exynos4 DT Machines

2013-01-27 Thread Sachin Kamat
Hi Vikas, You need to CC devicetree-disc...@lists.ozlabs.org for patches adding new bindings and add documentation related to it. On 28 January 2013 11:14, Vikas Sajjan vikas.saj...@linaro.org wrote: This patch series adds support for DRM FIMD DT for Exynos4 DT Machines, specifically for

Re: [PATCH 2/4] ARM: dts: add support for mixer to exynos4

2013-01-27 Thread Rahul Sharma
On Mon, Jan 28, 2013 at 2:34 AM, Sylwester Nawrocki sylvester.nawro...@gmail.com wrote: On 01/25/2013 11:39 AM, Rahul Sharma wrote: diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi index 6c2c79d..07cb7d4 100644 --- a/arch/arm/boot/dts/exynos4.dtsi +++

Re: [PATCH 0/5] Add DRM FIMD DT support for Exynos4 DT Machines

2013-01-27 Thread Vikas Sajjan
Thanks Sachin. Will add related documentation and resend. On 28 January 2013 11:56, Sachin Kamat sachin.ka...@linaro.org wrote: Hi Vikas, You need to CC devicetree-disc...@lists.ozlabs.org for patches adding new bindings and add documentation related to it. On 28 January 2013 11:14, Vikas

Re: [PATCH 1/4] ARM: dts: add support for hdmi to exynos4

2013-01-27 Thread Rahul Sharma
Hi Thomas, On Fri, Jan 25, 2013 at 11:10 PM, Thomas Abraham thomas.abra...@linaro.org wrote: On 25 January 2013 02:39, Rahul Sharma rahul.sha...@samsung.com wrote: Signed-off-by: Rahul Sharma rahul.sha...@samsung.com Conflicts: arch/arm/mach-exynos/mach-exynos4-dt.c ---