Re: [U-Boot] usb start crashing on arndale

2014-03-11 Thread Inderpal Singh
Hi, On 11 March 2014 20:25, armdev wrote: > Adding Inderpal singh and Trini. Please help > > On 11-Mar-2014, at 12:27 pm, armdev wrote: > > > Hi, > > > > We have recently started working on arndale and running u-boot head on > it. Seems like it is crashing

Re: [U-Boot] how to get u-boot code with arm64: core support

2014-02-12 Thread Inderpal Singh
Hi Bhupesh, On 12 February 2014 13:55, bhupesh.sha...@freescale.com < bhupesh.sha...@freescale.com> wrote: > Hi Inder, > > > > Could you please check the output of: > > > > $ echo $ARCH > I checked, it gives aarch64. Anyway if I don't set ARCH properly, the make command fails saying "Failed:

Re: [U-Boot] how to get u-boot code with arm64: core support

2014-02-12 Thread Inderpal Singh
On 12 February 2014 13:32, wrote: > Hi, Inder: > > >aarch64-linux-gnu-gcc: error: unrecognized command line option '-marm' > >aarch64-linux-gnu-gcc: error: unrecognized command line option > '-mno-thumb-interwork' > >aarch64-linux-gnu-gcc: error: unrecognized command line option > '-mabi=aapc

Re: [U-Boot] how to get u-boot code with arm64: core support

2014-02-12 Thread Inderpal Singh
Hi Tiger, On 12 February 2014 07:38, wrote: > Hi, Bhupesh: > I described my steps: > 1. Compiled ATF >Export CROSS_COMPILE=/home/lion/ > gcc-linaro-aarch64/bin/aarch64-linux-gnu- >make DEBUG=1 V=1 >make DEBUG=1 PLAT=fvp all dump > >Note: >I used linaro released aarch64 compi

[U-Boot] [PATCH v3 0/2] Add usb ethernet support for Arndale

2014-01-07 Thread Inderpal Singh
n v3: - used generic board_usb_init Inderpal Singh (2): usb: ehci: exynos: set/reset hsic phys usb: exynos5: arndale: Add network support arch/arm/include/asm/arch-exynos/ehci.h | 14 +++ board/samsung/arndale/arndale.c | 21 drivers/usb/host/

[U-Boot] [PATCH v3 2/2] usb: exynos5: arndale: Add network support

2014-01-07 Thread Inderpal Singh
work to work. Signed-off-by: Inderpal Singh Signed-off-by: Chander Kashyap --- board/samsung/arndale/arndale.c | 21 + drivers/usb/host/ehci-exynos.c |2 ++ include/configs/arndale.h |4 3 files changed, 27 insertions(+) diff --git a/board/samsung/arn

[U-Boot] [PATCH v3 1/2] usb: ehci: exynos: set/reset hsic phys

2014-01-07 Thread Inderpal Singh
From: Inderpal Singh The controller has 3 ports. The port0 is for USB 2.0 Phy, port1 and port2 are for HSIC phys. The usb 2.0 phy is already being setup. This patch sets up the hsic phys. Signed-off-by: Inderpal Singh --- arch/arm/include/asm/arch-exynos/ehci.h | 14 +++ drivers/usb

Re: [U-Boot] [PATCH v2 2/2] usb: exynos5: arndale: Add network support

2014-01-05 Thread Inderpal Singh
On 4 January 2014 12:49, Marek Vasut wrote: > On Friday, January 03, 2014 at 06:14:38 AM, Inderpal Singh wrote: > > Hi Marek, > > > > Thanks for review. > > > > On 3 January 2014 06:26, Marek Vasut wrote: > > > On Thursday, January 02, 2014 at 10:41:59

Re: [U-Boot] [PATCH v2 1/2] usb: ehci: exynos: set/reset hsic phys

2014-01-05 Thread Inderpal Singh
On 4 January 2014 12:46, Marek Vasut wrote: > On Friday, January 03, 2014 at 06:03:47 AM, Inderpal Singh wrote: > > Hi Marek, > > > > Thanks for the review. > > > > On 3 January 2014 06:24, Marek Vasut wrote: > > > On Thursday, January 02, 2014 at 10:41

Re: [U-Boot] [PATCH v2 2/2] usb: exynos5: arndale: Add network support

2014-01-02 Thread Inderpal Singh
Hi Marek, Thanks for review. On 3 January 2014 06:26, Marek Vasut wrote: > On Thursday, January 02, 2014 at 10:41:59 AM, Inderpal Singh wrote: > > Arndale board has AX88760, which is USB 2.0 Hub & USB 2.0 Ethernet Combo > > controller, connected to HSIC Phy of USB host con

Re: [U-Boot] [PATCH v2 1/2] usb: ehci: exynos: set/reset hsic phys

2014-01-02 Thread Inderpal Singh
Hi Marek, Thanks for the review. On 3 January 2014 06:24, Marek Vasut wrote: > On Thursday, January 02, 2014 at 10:41:58 AM, Inderpal Singh wrote: > > From: Inderpal Singh > > > > The controller has 3 ports. The port0 is for USB 2.0 Phy, port1 and port2 > > are for

[U-Boot] [PATCH v2 2/2] usb: exynos5: arndale: Add network support

2014-01-02 Thread Inderpal Singh
vant config options for network to work. Signed-off-by: Inderpal Singh Signed-off-by: Chander Kashyap --- board/samsung/arndale/arndale.c | 13 + drivers/usb/host/ehci-exynos.c | 10 ++ include/configs/arndale.h |4 3 files changed, 27 insertions(+) diff --g

[U-Boot] [PATCH v2 0/2] Add usb ethernet support for Arndale

2014-01-02 Thread Inderpal Singh
Arndale board has AX88760, which is USB 2.0 Hub & USB 2.0 Ethernet Combo controller, connected to HSIC Phy of USB host controller via USB3503 hub. This patchset adds support for this usb ethernet controllor. Changes in v2: - removed setting preboot environment in patch 2 Inderpal S

[U-Boot] [PATCH v2 1/2] usb: ehci: exynos: set/reset hsic phys

2014-01-02 Thread Inderpal Singh
From: Inderpal Singh The controller has 3 ports. The port0 is for USB 2.0 Phy, port1 and port2 are for HSIC phys. The usb 2.0 phy is already being setup. This patch sets up the hsic phys. Signed-off-by: Inderpal Singh --- arch/arm/include/asm/arch-exynos/ehci.h | 14 +++ drivers/usb

Re: [U-Boot] [PATCH 2/2] exynos5: arndale: Add network support

2013-12-14 Thread Inderpal Singh
On 14 December 2013 23:20, Marek Vasut wrote: > On Saturday, December 14, 2013 at 03:00:39 PM, Inderpal Singh wrote: > > Hi Marek, > > > > Thanks for the review. > > > > On 12 December 2013 19:03, Marek Vasut wrote: > > > On Saturday, October 19,

Re: [U-Boot] [PATCH 2/2] exynos5: arndale: Add network support

2013-12-14 Thread Inderpal Singh
Hi Marek, Thanks for the review. On 12 December 2013 19:03, Marek Vasut wrote: > On Saturday, October 19, 2013 at 08:49:27 AM, Inderpal Singh wrote: > > From: Chander Kashyap > > > > Arndale board has AX88760, which is USB 2.0 Hub & USB 2.0 Ethernet Combo > >

[U-Boot] [PATCH 1/2] usb: ehci: exynos: set/reset hsic phys

2013-10-19 Thread Inderpal Singh
The controller has 3 ports. The port0 is for USB 2.0 Phy, port1 and port2 are for HSIC phys. The usb 2.0 phy is already being setup. This patch sets up the hsic phys. Signed-off-by: Inderpal Singh --- arch/arm/include/asm/arch-exynos/ehci.h | 14 +++ drivers/usb/host/ehci-exynos.c

[U-Boot] [PATCH 0/2] Add usb eth support

2013-10-18 Thread Inderpal Singh
port Inderpal Singh (1): usb: ehci: exynos: set/reset hsic phys arch/arm/include/asm/arch-exynos/ehci.h | 14 + board/samsung/arndale/arndale.c | 23 +++ drivers/usb/host/ehci-exynos.c | 48 +++ include/configs/arnda

[U-Boot] [PATCH 2/2] exynos5: arndale: Add network support

2013-10-18 Thread Inderpal Singh
and enables the relevant config options for network to work. Signed-off-by: Inderpal Singh Signed-off-by: Chander Kashyap --- board/samsung/arndale/arndale.c | 23 +++ drivers/usb/host/ehci-exynos.c |9 + include/configs/arndale.h |6 ++ 3 files cha

[U-Boot] [PATCH v2] CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and update Makefiles

2013-07-25 Thread Inderpal Singh
From: Chander Kashyap Update the Makefiles so that all boards can use the same spl generation tool Signed-off-by: Inderpal Singh Acked-by: Simon Glass --- changes in v2: - Rebased to latest u-boot-samsung master branch Makefile|2 +- include/configs

Re: [U-Boot] [PATCH] CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and update Makefiles

2013-07-24 Thread Inderpal Singh
Adding Minkyu, On 2 July 2013 13:10, Simon Glass wrote: > > On Tue, Jul 2, 2013 at 1:17 PM, Inderpal Singh > wrote: > >> Update the Makefiles so that all boards can use the same spl generation >> tool >> >> Signed-off-by: Inderpal Singh >> > >

[U-Boot] [PATCH v3 0/2] Add Arndale board support

2013-07-01 Thread Inderpal Singh
ed to latest u-boot-samsung master branch [5] http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/164824 Inderpal Singh (2): exynos5250: Add arndale board support exynos5250: arndale: Add mmc support MAINTAINERS |4 + board/samsung/arndale/Mak

[U-Boot] [PATCH v3 2/2] exynos5250: arndale: Add mmc support

2013-07-01 Thread Inderpal Singh
This patch adds mmc support to the arndale board. Signed-off-by: Inderpal Singh --- board/samsung/arndale/arndale.c | 14 ++ board/samsung/dts/exynos5250-arndale.dts | 18 ++ 2 files changed, 32 insertions(+) diff --git a/board/samsung/arndale/arndale.c

[U-Boot] [PATCH] CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and update Makefiles

2013-07-01 Thread Inderpal Singh
Update the Makefiles so that all boards can use the same spl generation tool Signed-off-by: Inderpal Singh --- This is needed for the Arndale board support patch just sent after sending this one. Makefile|2 +- include/configs/exynos5250-dt.h |2 +- tools

Re: [U-Boot] [PATCH v2] exynos5250: move board specific configs to board specific config file

2013-07-01 Thread Inderpal Singh
Hi Simon, On 28 June 2013 21:20, Simon Glass wrote: > Hi Inderpal, > > On Thu, Jun 20, 2013 at 12:10 AM, Inderpal Singh < > inderpal.si...@linaro.org> wrote: > >> Hi Simon, >> >> Thanks for review. >> >> >> On 11 June 2013 19:57, Simon

Re: [U-Boot] [PATCH v2] exynos5250: move board specific configs to board specific config file

2013-06-28 Thread Inderpal Singh
Hi Simon, On 20 June 2013 12:40, Inderpal Singh wrote: > Hi Simon, > > Thanks for review. > > > On 11 June 2013 19:57, Simon Glass wrote: > >> Hi, >> >> On Fri, Jun 7, 2013 at 4:56 AM, Inderpal Singh > > wrote: >> >>> Not all boa

Re: [U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs

2013-06-20 Thread Inderpal Singh
es it defined some > where or you don't want SPI at all.? > > As I mentioned in the commit message , these configs are redundant. They have already been defined in the same file. Thanks, Inder > -- > Thanks, > Jagan. > > > On 07-06-2013 17:25, Inderpal Singh wrot

Re: [U-Boot] [PATCH v2] exynos5250: move board specific configs to board specific config file

2013-06-20 Thread Inderpal Singh
Hi Simon, Thanks for review. On 11 June 2013 19:57, Simon Glass wrote: > Hi, > > On Fri, Jun 7, 2013 at 4:56 AM, Inderpal Singh > wrote: > >> Not all boards based on exynos5250 have SPI flash, same serial port and >> might >> not require display and the sa

[U-Boot] [PATCH v2 2/2] exynos5250: arndale: Add mmc support

2013-06-07 Thread Inderpal Singh
This patch adds mmc support to the arndale board. Signed-off-by: Inderpal Singh --- board/samsung/arndale/arndale.c | 14 ++ board/samsung/dts/exynos5250-arndale.dts | 18 ++ 2 files changed, 32 insertions(+) diff --git a/board/samsung/arndale/arndale.c

[U-Boot] [PATCH v2 0/2] Add Arndale board support

2013-06-07 Thread Inderpal Singh
-boot/156272 Inderpal Singh (2): exynos5250: Add arndale board support exynos5250: arndale: Add mmc support MAINTAINERS |4 + board/samsung/arndale/Makefile | 58 +++ board/samsung/arndale/arndale.c | 117 ++ board/samsung/arndale/arndale_

[U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs

2013-06-07 Thread Inderpal Singh
They have been defined once already. Hence remove the redundant definitions. Signed-off-by: Inderpal Singh --- v1 was posted as the first patch of [1] Changes in v2: - split from the patchset at [1] - removed redundant configs for PMIC - rebased to latest u-boot-samsung

[U-Boot] [PATCH v2] exynos5250: move board specific configs to board specific config file

2013-06-07 Thread Inderpal Singh
Not all boards based on exynos5250 have SPI flash, same serial port and might not require display and the same lds script. Hence move them to board specific config file. Signed-off-by: Inderpal Singh --- v1 was posted as the second patch of [1] Changes in v2: - split from the patchset

Re: [U-Boot] [PATCH 0/3] Add Arndale board support

2013-06-07 Thread Inderpal Singh
Dear Minkyu Kang, Thanks for the comments. On 21 May 2013 18:23, Minkyu Kang wrote: > On 26/03/13 18:37, Inderpal Singh wrote: > > The Arndale board is based on samsung's exynos5250 SOC. > > > > First patch just removes the redundant SPI configs from common exynos52

Re: [U-Boot] [PATCH] spl: exynos: make spl_boot common for all exynos based platforms

2013-06-06 Thread Inderpal Singh
Dear Minkyu Kang, Thanks for the review. On 4 June 2013 12:56, Minkyu Kang wrote: > Dear Inderpal Singh, > > On 27/03/13 17:48, Inderpal Singh wrote: > > Dear Minkyu, > > > > Please let me know if you have any comments for this patch. > > > > With Rega

[U-Boot] [PATCH v3 3/3] exynos: Update origen and smdkv310 to use common tzpc_init

2013-04-05 Thread Inderpal Singh
Signed-off-by: Inderpal Singh Acked-by: Chander Kashyap --- board/samsung/origen/lowlevel_init.S | 44 ++- board/samsung/origen/origen_setup.h| 25 - board/samsung/smdkv310/lowlevel_init.S | 60 ++-- include/configs

[U-Boot] [PATCH v3 1/3] exynos: move tzpc_init to armv7/exynos

2013-04-05 Thread Inderpal Singh
tzpc_init is common for all exynos5 boards, hence move it to armv7/exynos so that all other boards can use it. Also update the smdk5250 Makefile and config file. Signed-off-by: Inderpal Singh Acked-by: Chander Kashyap --- arch/arm/cpu/armv7/exynos/Makefile |2 +- arch/arm/cpu/armv7

[U-Boot] [PATCH v3 2/3] exynos: update tzpc to make it common for exynos4 and exynos5

2013-04-05 Thread Inderpal Singh
This requires that cpu_is_exynos4/5 should be made available before tzpc_init. Hence this patch also makes necessary changes to have cpu_info in spl and invokes arch_cpu_init before tzpc_init in low_level_init.S for smdk5250. Signed-off-by: Inderpal Singh Acked-by: Chander Kashyap --- arch/arm

[U-Boot] [PATCH v3 0/3] Make tzpc initialization common for exynos4 and exynos5

2013-04-05 Thread Inderpal Singh
d the samsung_get_base_tzpc - removed the TZPCx_BASE macros and used samsung_get_base_tzpc Inderpal Singh (3): exynos: move tzpc_init to armv7/exynos exynos: update tzpc to make it common for exynos4 and exynos5 exynos: Update origen and smdkv310 to use common tzpc_init arch/arm/cpu/armv7/exynos/Mak

Re: [U-Boot] [PATCH v2 1/3] exynos: move tzpc_init to armv7/exynos

2013-04-05 Thread Inderpal Singh
Dear Minkyu, Thanks for the review. On 29 March 2013 08:27, Minkyu Kang wrote: > Dear Inderpal Singh, > > On 15/03/13 15:23, Inderpal Singh wrote: > > tzpc_init is common for all exynos5 boards, hence move it to > > armv7/exynos so that all other boards can use it. &g

Re: [U-Boot] [PATCH v2 0/3] Make tzpc initialization common for exynos4 and exynos5

2013-03-27 Thread Inderpal Singh
Dear Minkyu, Let me know your view about this patchset. With Regards, Inder On 15 March 2013 11:53, Inderpal Singh wrote: > The first patch moves the tzpc_init file from smdk5250 to armv7/exynos. > The second makes tzpc_init common for exynos4 and exynos5. And the third > makes

Re: [U-Boot] [PATCH] spl: exynos: make spl_boot common for all exynos based platforms

2013-03-27 Thread Inderpal Singh
Dear Minkyu, Please let me know if you have any comments for this patch. With Regards, Inder On 16 March 2013 14:16, Inderpal Singh wrote: > The spl_boot.c which copies the u-boot from the booting device to ram > is made common for all the exynos based platforms. To do so: > &

[U-Boot] [PATCH 2/3] exynos5250: move board specific configs to board specific config file

2013-03-26 Thread Inderpal Singh
Not all boards based on exynos5250 have SPI flash, same serial port and might not require the same lds script. Hence move them to board specific config file Signed-off-by: Inderpal Singh --- include/configs/exynos5250-dt.h |8 +--- include/configs/smdk5250.h | 12

[U-Boot] [PATCH 1/3] exynos5250: remove redundant SPI related configs

2013-03-26 Thread Inderpal Singh
They have been defined once already. Hence remove the redundant definitions. Signed-off-by: Inderpal Singh --- include/configs/exynos5250-dt.h | 21 - 1 file changed, 21 deletions(-) diff --git a/include/configs/exynos5250-dt.h b/include/configs/exynos5250-dt.h index

[U-Boot] [PATCH 0/3] Add Arndale board support

2013-03-26 Thread Inderpal Singh
.boot-loaders.u-boot/155368 Inderpal Singh (3): exynos5250: remove redundant SPI related configs exynos5250: move board specific configs to board specific config file exynos5250: Add arndale board support MAINTAINERS |4 + board/samsung/arndale/Makefile |

[U-Boot] [PATCH] spl: exynos: make spl_boot common for all exynos based platforms

2013-03-16 Thread Inderpal Singh
: Inderpal Singh --- It depends on the patchset at [1] as it provides the infrastructure to detect the SOC type and revision in spl at runtime. [1] http://www.mail-archive.com/u-boot@lists.denx.de/msg108301.html arch/arm/cpu/armv7/exynos/Makefile |4 ++ .../arm/cpu/armv7/exynos

[U-Boot] [PATCH v2 3/3] exynos: Update origen and smdkv310 to use common tzpc_init

2013-03-14 Thread Inderpal Singh
Signed-off-by: Inderpal Singh Acked-by: Chander Kashyap --- board/samsung/origen/lowlevel_init.S | 44 ++- board/samsung/origen/origen_setup.h| 25 - board/samsung/smdkv310/lowlevel_init.S | 60 ++-- include/configs

[U-Boot] [PATCH v2 2/3] exynos: update tzpc_init to make it common for exynos4 and exynos5

2013-03-14 Thread Inderpal Singh
This requires that cpu_is_exynos4/5 should be made available before tzpc_init. Hence this patch also makes necessary changes to have cpu_info in spl and invokes arch_cpu_init before tzpc_init in low_level_init.S for smdk5250. Signed-off-by: Inderpal Singh Acked-by: Chander Kashyap --- arch/arm

[U-Boot] [PATCH v2 1/3] exynos: move tzpc_init to armv7/exynos

2013-03-14 Thread Inderpal Singh
tzpc_init is common for all exynos5 boards, hence move it to armv7/exynos so that all other boards can use it. Also update the smdk5250 Makefile and config file. Signed-off-by: Inderpal Singh Acked-by: Chander Kashyap --- arch/arm/cpu/armv7/exynos/Makefile |2 +- arch/arm/cpu/armv7

[U-Boot] [PATCH v2 0/3] Make tzpc initialization common for exynos4 and exynos5

2013-03-14 Thread Inderpal Singh
board. Changes in v2: - removed uninitialised warning for start and end variables - corrected the SPL_TEXT_BASE for origen and smdkv310 - Added Chander's Acked-by Inderpal Singh (3): exynos: move tzpc_init to armv7/exynos exynos: update tzpc_init to make it commo

[U-Boot] [PATCH 3/3] exynos: Update origen and smdkv310 to use common tzpc_init

2013-03-05 Thread Inderpal Singh
Signed-off-by: Inderpal Singh --- board/samsung/origen/lowlevel_init.S | 44 ++- board/samsung/origen/origen_setup.h| 25 - board/samsung/smdkv310/lowlevel_init.S | 60 ++-- include/configs/origen.h |2

[U-Boot] [PATCH 2/3] exynos: update tzpc_init to make it common for exynos4 and exynos5

2013-03-05 Thread Inderpal Singh
This requires that cpu_is_exynos4/5 should be made available before tzpc_init. Hence this patch also makes necessary changes to have cpu_info in spl and invokes arch_cpu_init before tzpc_init in low_level_init.S for smdk5250. Signed-off-by: Inderpal Singh --- arch/arm/cpu/armv7/exynos

[U-Boot] [PATCH 1/3] exynos: move tzpc_init to armv7/exynos

2013-03-05 Thread Inderpal Singh
tzpc_init is common for all exynos5 boards, hence move it to armv7/exynos so that all other boards can use it. Also update the smdk5250 Makefile and config file. Signed-off-by: Inderpal Singh --- arch/arm/cpu/armv7/exynos/Makefile |2 +- arch/arm/cpu/armv7/exynos/tzpc_init.c | 48

[U-Boot] [PATCH 0/3] Make tzpc initialization common for exynos4 and exynos5

2013-03-05 Thread Inderpal Singh
board. Inderpal Singh (3): exynos: move tzpc_init to armv7/exynos exynos: update tzpc_init to make it common for exynos4 and exynos5 exynos: Update origen and smdkv310 to use common tzpc_init arch/arm/cpu/armv7/exynos/Makefile |2 +- arch/arm/cpu/armv7/exynos/tzpc_init.c | 57

Re: [U-Boot] [PATCH 2/2] Exynos5: Arndale: Add support for exynos5250 based arndale board.

2013-02-25 Thread Inderpal Singh
Dear Wolfgang Denk, On 19 February 2013 12:13, Wolfgang Denk wrote: > Dear Inderpal Singh, > > In message <1360841461-18028-3-git-send-email-inderpal.si...@linaro.org> you > wrote: >> The Arndale board is based on samsung's exynos5250 SOC. >> This patch

[U-Boot] [PATCH v2 1/2] smdk5250: move board specific options to board specific config file

2013-02-25 Thread Inderpal Singh
Signed-off-by: Inderpal Singh Acked-by: Chander Kashyap --- include/configs/exynos5250-dt.h | 60 --- include/configs/smdk5250.h | 35 +++ 2 files changed, 35 insertions(+), 60 deletions(-) diff --git a/include/configs/exynos5250

[U-Boot] [PATCH v2 2/2] Exynos5: Arndale: Add support for exynos5250 based arndale board.

2013-02-25 Thread Inderpal Singh
The Arndale board is based on samsung's exynos5250 SOC. This patch adds a initial config and dts file. Signed-off-by: Inderpal Singh Acked-by: Chander Kashyap --- This depends on the first 6 patches from Amar at [1] [1] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/1

[U-Boot] [PATCH v2 0/2] Add Arndale board support

2013-02-25 Thread Inderpal Singh
s Acked-by Inderpal Singh (2): smdk5250: move board specific options to board specific config file Exynos5: Arndale: Add support for exynos5250 based arndale board. MAINTAINERS |4 ++ board/samsung/dts/exynos5250-arndale.dts | 36 ++

[U-Boot] [PATCH 2/2] Exynos5: Arndale: Add support for exynos5250 based arndale board.

2013-02-14 Thread Inderpal Singh
The Arndale board is based on samsung's exynos5250 SOC. This patch adds a initial config and dts file. Signed-off-by: Inderpal Singh --- This depends on the first 6 patches from Amar at [1] [1] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/151523 board/samsung/dts/exyno

[U-Boot] [PATCH 1/2] smdk5250: move board specific options to board specific config file

2013-02-14 Thread Inderpal Singh
Signed-off-by: Inderpal Singh --- include/configs/exynos5250-dt.h | 60 --- include/configs/smdk5250.h | 35 +++ 2 files changed, 35 insertions(+), 60 deletions(-) diff --git a/include/configs/exynos5250-dt.h b/include/configs

[U-Boot] [PATCH 0/2] Add Arndale board support

2013-02-14 Thread Inderpal Singh
The Arndale board is based on samsung's exynos5250 SOC. First patch moves board specific options to board specific config file and the second patch adds the initial config and dts file for the arndale board. Inderpal Singh (2): smdk5250: move board specific options to board specific c