From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Wed, 26 Dec 2012 19:31:24 +0900 Subject: [U-Boot] [PATCH 0/5 v3] Add DT based ethernet driver for SMDK5250 In-Reply-To: <1355223169-15625-1-git-send-email-hatim.rv@samsung.com> References: <1355223169-15625-1-git-send-email-hatim.rv@samsung.com> Message-ID: <50DAD1FC.2020208@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 11/12/12 19:52, Hatim Ali wrote: > This patch series enables the DT support on SMDK5250. > Ethernet is the first driver whose discovery is based on DT node. > More DT based drivers to be added subsequently > > Changes since v1: > - Renamed the smdk5250.h file to exynos5250-dt.h to create a common > configuration file which can be used by all the boards based on > exynos5250 using Device Tree. > - Created a new smdk5250.h file specifying the dts file specific to > SMDK5250 > - Incorporated minor nit (removal of blank lines) > Changes since v2: > - Rebased the "Add DT node definition for SROM and SMSC9215" patch on > u-boot-samsung.git > > Hatim Ali (5): > EXYNOS5: FDT: add initial dts file for EXYNOS5250, SMDK5250 > fdt: exynos5: Add DT node definition for SROM and SMSC9215 > exynos5: Add DT based driver for SMC911X ethernet > exynos5: config: Rename the smdk5250.h to exynos5250-dt.h > SMDK5250: config: Add configuration file for SMDK5250 board > > arch/arm/dts/exynos5250.dtsi | 31 ++++ > arch/arm/include/asm/arch-exynos/sromc.h | 18 ++ > board/samsung/dts/exynos5250-smdk5250.dts | 29 +++ > board/samsung/smdk5250/smdk5250.c | 115 +++++++++---- > include/configs/exynos5250-dt.h | 267 +++++++++++++++++++++++++++++ > include/configs/smdk5250.h | 245 +------------------------- > include/fdtdec.h | 2 + > lib/fdtdec.c | 2 + > 8 files changed, 442 insertions(+), 267 deletions(-) > create mode 100644 arch/arm/dts/exynos5250.dtsi > create mode 100644 board/samsung/dts/exynos5250-smdk5250.dts > create mode 100644 include/configs/exynos5250-dt.h > applied to u-boot-samsung/master. Thanks, Minkyu Kang.