From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kukjin Kim Subject: RE: [PATCH v2 0/2] ARM: Samsung: Add basic device tree support for Exynos4 boards Date: Wed, 02 Nov 2011 21:45:06 +0900 Message-ID: <005a01cc995d$3fe56bf0$bfb043d0$%kim@samsung.com> References: <1320109613-2811-1-git-send-email-thomas.abraham@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailout1.samsung.com ([203.254.224.24]:34392 "EHLO mailout1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753088Ab1KBMpI (ORCPT ); Wed, 2 Nov 2011 08:45:08 -0400 Received: from epcpsbgm2.samsung.com (mailout1.samsung.com [203.254.224.24]) by mailout1.samsung.com (Oracle Communications Messaging Exchange Server 7u4-19.01 64bit (built Sep 7 2010)) with ESMTP id <0LU100CDEA2XBLB0@mailout1.samsung.com> for linux-samsung-soc@vger.kernel.org; Wed, 02 Nov 2011 21:45:07 +0900 (KST) Received: from kgenekim ([12.23.120.114]) by mmp2.samsung.com (Oracle Communications Messaging Exchange Server 7u4-19.01 64bit (built Sep 7 2010)) with ESMTPA id <0LU1001TNA36E210@mmp2.samsung.com> for linux-samsung-soc@vger.kernel.org; Wed, 02 Nov 2011 21:45:06 +0900 (KST) In-reply-to: <1320109613-2811-1-git-send-email-thomas.abraham@linaro.org> Content-language: ko Sender: linux-samsung-soc-owner@vger.kernel.org List-Id: linux-samsung-soc@vger.kernel.org To: 'Thomas Abraham' , devicetree-discuss@lists.ozlabs.org, linux-samsung-soc@vger.kernel.org Cc: grant.likely@secretlab.ca, rob.herring@calxeda.com, arnd@arndb.de, linux-arm-kernel@lists.infradead.org Thomas Abraham wrote: > > Changes since v1: > - Removed unique per-controller compatible string value from gpio controller > nodes > to align with the updated device tree support for exynos4 gpio controller. > - Removed the interrupt combiner controller node. > > This patchset adds a new basic device tree enabled machine/board file which is > based on the Samsung's Exynos4 family of SoC's. Also included in this patchset > is the > dts file for Exynos4210 SoC, Samsung's SMDKV310 board and Insignal's Origen > board. > > The Exynos4210 dts file includes support for IRQ, GPIO, WDT, RTC, UART, SDHCI, > Keypad, > DMA and I2C controllers. As device tree coverage for Exynos4210 increases, > additional > device nodes to represent the controllers should be added. > > The device tree enabled machine file enables boot on two boards based on the > Exynos4210 SoC. This provides a starting point to add additional device tree > support > on these boards, migrate other existing Exynos4 based boards to use device tree > and enable device tree based boot on new upcoming boards. > > This patchset has been tested on the following tree: > git://git.linaro.org/git/people/arnd/arm-soc.git branch: for-next > > Thomas Abraham (2): > ARM: Samsung: Add Exynos4 device tree enabled board file > ARM: dts: Add intial dts file for Exynos4210 SoC, SMDKV310 and Origen board > > .../devicetree/bindings/arm/insignal-boards.txt | 8 + > .../devicetree/bindings/arm/samsung-boards.txt | 8 + > arch/arm/boot/dts/exynos4210-origen.dts | 137 +++++++ > arch/arm/boot/dts/exynos4210-smdkv310.dts | 182 +++++++++ > arch/arm/boot/dts/exynos4210.dtsi | 397 > ++++++++++++++++++++ > arch/arm/mach-exynos4/Kconfig | 14 + > arch/arm/mach-exynos4/Makefile | 2 + > arch/arm/mach-exynos4/mach-exynos4-dt.c | 85 +++++ > 8 files changed, 833 insertions(+), 0 deletions(-) > create mode 100644 Documentation/devicetree/bindings/arm/insignal-boards.txt > create mode 100644 Documentation/devicetree/bindings/arm/samsung-boards.txt > create mode 100644 arch/arm/boot/dts/exynos4210-origen.dts > create mode 100644 arch/arm/boot/dts/exynos4210-smdkv310.dts > create mode 100644 arch/arm/boot/dts/exynos4210.dtsi > create mode 100644 arch/arm/mach-exynos4/mach-exynos4-dt.c OK. replaced with this in next-samsung-dt branch. Thanks. Best regards, Kgene. -- Kukjin Kim , Senior Engineer, SW Solution Development Team, Samsung Electronics Co., Ltd. From mboxrd@z Thu Jan 1 00:00:00 1970 From: kgene.kim@samsung.com (Kukjin Kim) Date: Wed, 02 Nov 2011 21:45:06 +0900 Subject: [PATCH v2 0/2] ARM: Samsung: Add basic device tree support for Exynos4 boards In-Reply-To: <1320109613-2811-1-git-send-email-thomas.abraham@linaro.org> References: <1320109613-2811-1-git-send-email-thomas.abraham@linaro.org> Message-ID: <005a01cc995d$3fe56bf0$bfb043d0$%kim@samsung.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Thomas Abraham wrote: > > Changes since v1: > - Removed unique per-controller compatible string value from gpio controller > nodes > to align with the updated device tree support for exynos4 gpio controller. > - Removed the interrupt combiner controller node. > > This patchset adds a new basic device tree enabled machine/board file which is > based on the Samsung's Exynos4 family of SoC's. Also included in this patchset > is the > dts file for Exynos4210 SoC, Samsung's SMDKV310 board and Insignal's Origen > board. > > The Exynos4210 dts file includes support for IRQ, GPIO, WDT, RTC, UART, SDHCI, > Keypad, > DMA and I2C controllers. As device tree coverage for Exynos4210 increases, > additional > device nodes to represent the controllers should be added. > > The device tree enabled machine file enables boot on two boards based on the > Exynos4210 SoC. This provides a starting point to add additional device tree > support > on these boards, migrate other existing Exynos4 based boards to use device tree > and enable device tree based boot on new upcoming boards. > > This patchset has been tested on the following tree: > git://git.linaro.org/git/people/arnd/arm-soc.git branch: for-next > > Thomas Abraham (2): > ARM: Samsung: Add Exynos4 device tree enabled board file > ARM: dts: Add intial dts file for Exynos4210 SoC, SMDKV310 and Origen board > > .../devicetree/bindings/arm/insignal-boards.txt | 8 + > .../devicetree/bindings/arm/samsung-boards.txt | 8 + > arch/arm/boot/dts/exynos4210-origen.dts | 137 +++++++ > arch/arm/boot/dts/exynos4210-smdkv310.dts | 182 +++++++++ > arch/arm/boot/dts/exynos4210.dtsi | 397 > ++++++++++++++++++++ > arch/arm/mach-exynos4/Kconfig | 14 + > arch/arm/mach-exynos4/Makefile | 2 + > arch/arm/mach-exynos4/mach-exynos4-dt.c | 85 +++++ > 8 files changed, 833 insertions(+), 0 deletions(-) > create mode 100644 Documentation/devicetree/bindings/arm/insignal-boards.txt > create mode 100644 Documentation/devicetree/bindings/arm/samsung-boards.txt > create mode 100644 arch/arm/boot/dts/exynos4210-origen.dts > create mode 100644 arch/arm/boot/dts/exynos4210-smdkv310.dts > create mode 100644 arch/arm/boot/dts/exynos4210.dtsi > create mode 100644 arch/arm/mach-exynos4/mach-exynos4-dt.c OK. replaced with this in next-samsung-dt branch. Thanks. Best regards, Kgene. -- Kukjin Kim , Senior Engineer, SW Solution Development Team, Samsung Electronics Co., Ltd.