[PATCH] ARM: S3C24XX: Add WIZnet W5300E01-ARM board support

2012-09-03 Thread Taehun Kim
This patch adds WIZnet W5300E01 board. I tested this code in the board. Please review this patch and apply it if do not have any problems. Taehun kim Signed-off-by: Taehun Kim kth3...@gmail.com --- arch/arm/mach-s3c24xx/Kconfig |5 + arch/arm/mach-s3c24xx/Makefile|1 +

Re: [PATCH] ARM: S3C24XX: Add WIZnet W5300E01-ARM board support

2012-09-03 Thread Vasily Khoruzhick
On Mon, Sep 3, 2012 at 9:20 AM, Taehun Kim kth3...@gmail.com wrote: This patch adds WIZnet W5300E01 board. I tested this code in the board. Please review this patch and apply it if do not have any problems. Hi, Taehun kim Signed-off-by: Taehun Kim kth3...@gmail.com ---

Re: [PATCH] ARM: S3C24XX: Add WIZnet W5300E01-ARM board support

2012-09-03 Thread Sylwester Nawrocki
Hi, On 09/03/2012 09:56 AM, Vasily Khoruzhick wrote: +static void __init w5300e01_init(void) +{ + s3c_nand_set_platdata(w5300e01_nand_info); + platform_add_devices(w5300e01_devices, ARRAY_SIZE(w5300e01_devices)); + + /* W5300 interrupt pin. */ +

Re: [PATCH v3 1/4] pinctrl: add samsung pinctrl and gpiolib driver

2012-09-03 Thread Linus Walleij
On Thu, Aug 23, 2012 at 1:15 PM, Thomas Abraham thomas.abra...@linaro.org wrote: Add a new device tree enabled pinctrl and gpiolib driver for Samsung SoC's. This driver provides a common and extensible framework for all Samsung SoC's to interface with the pinctrl and gpiolib subsystems. This

Re: [PATCH v3 2/4] pinctrl: add exynos4210 specific extensions for samsung pinctrl driver

2012-09-03 Thread Linus Walleij
On Thu, Aug 23, 2012 at 1:15 PM, Thomas Abraham thomas.abra...@linaro.org wrote: Add information about the Exynos4210 pin banks and driver data which is used by the Samsung pinctrl driver. In addition to this, the support for external gpio and wakeup interrupt support is included and hooked up

Re: [PATCH v3 4/4] ARM: EXYNOS: skip wakeup interrupt setup if pinctrl driver is used

2012-09-03 Thread Linus Walleij
On Thu, Aug 23, 2012 at 1:15 PM, Thomas Abraham thomas.abra...@linaro.org wrote: Pinctrl driver includes support for configuring the external wakeup interrupts. On exynos platforms that use pinctrl driver, the setup of wakeup interrupts in the exynos platform code can be skipped. Cc: Kukjin

Re: [PATCH v2 1/2] ARM: dts: Add pinctrl node entries for Samsung Exynos4210 SoC

2012-09-03 Thread Linus Walleij
On Thu, Aug 23, 2012 at 1:24 PM, Thomas Abraham thomas.abra...@linaro.org wrote: Add pinctrl driver nodes for the three instances of pin controllers in Samsung Exynos4210 SoC and add the pin group nodes available in the each of those three instances. Cc: Kukjin Kim kgene@samsung.com

Re: [PATCH v2 2/2] ARM: EXYNOS: Enable pinctrl driver support for Exynos4 device tree enabled platform

2012-09-03 Thread Linus Walleij
On Thu, Aug 23, 2012 at 1:24 PM, Thomas Abraham thomas.abra...@linaro.org wrote: This enables support for Samsung and Exynos4 pinctrl driver for device tree enabled Exynos4 platforms. Cc: Kukjin Kim kgene@samsung.com Signed-off-by: Thomas Abraham thomas.abra...@linaro.org Acked-by:

Re: [PATCH 1/6] ARM: dts: Move parts common to Exynos4 from Exynos4210.dtsi to Exynos4.dtsi

2012-09-03 Thread Tomasz Figa
Hi Thomas, Thanks for reviewing the patch. On Friday 31 of August 2012 09:18:26 Thomas Abraham wrote: A similar patch was submitted by Dongjin Kim dongjin@agreeyamobility.net as well. [PATCH v2] arm/dts: exynos4: Add DTS files derived from common Exynos4 OK, I haven't noticed it. +

Re: [PATCH 4/6] ARM: Exynos4: Add OF compatibility lookups for Exynos4 i2c adapters

2012-09-03 Thread Tomasz Figa
Hi Thomas, Thanks for reviewing the patch. On Friday 31 of August 2012 09:29:42 Thomas Abraham wrote: + OF_DEV_AUXDATA(samsung,s3c2440-i2c, EXYNOS4_PA_IIC(0), + s3c2440-i2c.0, NULL), i2c0 lookup information is already in this list. So the above line

Re: [PATCH 6/6] ARM: Exynos: Add basic dts file for Samsung Trats board

2012-09-03 Thread Tomasz Figa
Hi Thomas, Thanks for reviewing the patch. On Friday 31 of August 2012 09:54:20 Thomas Abraham wrote: + wakeup_eint: interrupt-controller-wakeup-eint { + compatible = samsung,exynos4210-wakeup-eint; + reg = 0x1100 0x1000; +

[PATCH 0/3] ARM: dts: Exynos4 dts reorganization

2012-09-03 Thread Tomasz Figa
This patch series prepares existing Exynos4210 DT infrastructure to be further extended for new SoCs from Exynos4 line and new boards. Tomasz Figa (3): ARM: dts: Move parts common to Exynos4 from Exynos4210.dtsi to Exynos4.dtsi ARM: EXYNOS: exynos4-dt: Use exynos4 prefix instead of

[PATCH 1/3] ARM: dts: Move parts common to Exynos4 from Exynos4210.dtsi to Exynos4.dtsi

2012-09-03 Thread Tomasz Figa
Most definitions from Exynos4210.dtsi can be applied for other SoCs from Exynos4 line as well, so move the common part into separate file that can be included by dtsi files of other Exynos4 SoCs (as well as current Exynos4210.dtsi). Signed-off-by: Tomasz Figa t.f...@samsung.com Signed-off-by:

[PATCH 3/3] ARM: dts: exynos4: Assume status of all optional nodes as disabled

2012-09-03 Thread Tomasz Figa
Currently all boards must explicitly disable all unused device tree nodes of unused components (e.g. i2c, sdhci, etc...). This makes it necessary to all boards to be aware of all components on the SoC, which in turns makes board dts files longer and more difficult to maintain (e.g. adding new

[PATCH 2/3] ARM: EXYNOS: exynos4-dt: Use exynos4 prefix instead of exynos4210

2012-09-03 Thread Tomasz Figa
Since mach-exynos4-dt.c is also going to be used for other SoCs from Exynos4 line, rename internal structures and functions to use exynos4_ prefix, instead of exynos4210_. Signed-off-by: Tomasz Figa t.f...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---

[PATCH v1 0/2] Add MFC device tree support

2012-09-03 Thread Arun Kumar K
This patchset adds device tree support for s5p-mfc driver. The first patch adds DT support for both Exynos4 and 5 SoCs which has different versions of MFC. The second patch which adds DT support for the driver has to be applied over the patchset [1] which adds the MFCv6 support. Changelog: -

[PATCH v1 1/2] ARM: EXYNOS: Add MFC device tree support

2012-09-03 Thread Arun Kumar K
From: Naveen Krishna Chatradhi ch.nav...@samsung.com This patch adds device tree entry for MFC in the Exynos machines. Exynos4 SoCs support MFC v5 version and Exynos5 has MFC v6 version. So making the required changes in the clock files and adds MFC to the DT device list. Signed-off-by: Naveen

[PATCH v1 2/2] [media] s5p-mfc: Add device tree support

2012-09-03 Thread Arun Kumar K
This patch will add the device tree support for MFC driver. Signed-off-by: Arun Kumar K arun...@samsung.com --- .../devicetree/bindings/media/s5p-mfc.txt | 27 + drivers/media/platform/s5p-mfc/s5p_mfc.c | 104 +--- 2 files changed, 115 insertions(+), 16

[PATCH] ARM: dts: exynos4: Enable serial controllers on Origen and SMDKV310

2012-09-03 Thread Tomasz Figa
This patch adds status override of serial nodes to enable used serial ports on Origen and SMDKV310 board. Signed-off-by: Tomasz Figa t.f...@samsung.com --- arch/arm/boot/dts/exynos4210-origen.dts | 16 arch/arm/boot/dts/exynos4210-smdkv310.dts | 16 2 files

Re: [PATCH] ARM: S3C24XX: Add WIZnet W5300E01-ARM board support

2012-09-03 Thread Taehun Kim
2012/9/3 Sylwester Nawrocki s.nawro...@samsung.com: Hi, On 09/03/2012 09:56 AM, Vasily Khoruzhick wrote: +static void __init w5300e01_init(void) +{ + s3c_nand_set_platdata(w5300e01_nand_info); + platform_add_devices(w5300e01_devices, ARRAY_SIZE(w5300e01_devices)); + +

[PATCH v2] ARM: S3C24XX: Add WIZnet W5300E01-ARM board support

2012-09-03 Thread Taehun Kim
This patch adds WIZnet W5300E01 board changed to the new gpio functions. Please review this patch and apply it if do not have any problems. Signed-off-by: Taehun Kim kth3...@gmail.com --- arch/arm/mach-s3c24xx/Kconfig |5 + arch/arm/mach-s3c24xx/Makefile|1 +

Re: [PATCH v2] ARM: S3C24XX: Add WIZnet W5300E01-ARM board support

2012-09-03 Thread Vasily Khoruzhick
On Mon, Sep 3, 2012 at 8:36 PM, Taehun Kim kth3...@gmail.com wrote: This patch adds WIZnet W5300E01 board changed to the new gpio functions. Please review this patch and apply it if do not have any problems. Signed-off-by: Taehun Kim kth3...@gmail.com --- arch/arm/mach-s3c24xx/Kconfig

Re: [PATCH v2] ARM: S3C24XX: Add WIZnet W5300E01-ARM board support

2012-09-03 Thread Sylwester Nawrocki
On 09/03/2012 07:36 PM, Taehun Kim wrote: +static void __init w5300e01_init(void) +{ + s3c_nand_set_platdata(w5300e01_nand_info); + platform_add_devices(w5300e01_devices, ARRAY_SIZE(w5300e01_devices)); + + /* W5300 interrupt pin. */ + s3c_gpio_cfgpin(S3C2410_GPF(0),