Re: [U-Boot] [RFC] zynq: Add support for E3xx board.

2015-09-03 Thread Peter Crosthwaite
On Thu, Sep 3, 2015 at 11:44 AM, Moritz Fischer wrote: > Signed-off-by: Moritz Fischer > --- > arch/arm/dts/Makefile | 3 +- > arch/arm/dts/zynq-e3xx.dts|35 + > arch/arm/mach-zynq/Kconfig| 4 + > board/xilin

Re: [U-Boot] [PATCH 2/3] configs: zynq: Add config support for ZYBO

2014-08-29 Thread Peter Crosthwaite
to do > that. > DTS might work, is it a "chosen" perhaps? If the value is absent, then u-boot will do nothing and assume other boot stages will do MAC addr init. Regards, Peter > Thanks indeed! > Regards, > Steve > > > -----Peter Crosthwaite wrote: - > T

Re: [U-Boot] [PATCH 0/3] ARM: Zynq: Add ZYBO board

2014-08-29 Thread Peter Crosthwaite
On Fri, Aug 29, 2014 at 9:07 PM, Michal Simek wrote: > On 08/28/2014 01:16 PM, Peter Crosthwaite wrote: >> Hi Michal, Steven, >> >> This series adds the ZYBO board to u-boot. Some components were originally >> contributed to the digilent u-boot tree (P2). Thanks to S

Re: [U-Boot] [PATCH] arm: zynq: Add compile time boot mode override

2014-08-28 Thread Peter Crosthwaite
On Thu, Aug 28, 2014 at 9:58 PM, Michal Simek wrote: > On 08/28/2014 01:02 PM, Peter Crosthwaite wrote: >> Ping! >> >> On Wed, Aug 20, 2014 at 10:14 PM, Peter Crosthwaite >> wrote: >>> To better enable debug of u-boot itself (in particular SPL). To debug >

Re: [U-Boot] [PATCH] arm: zynq: Add compile time boot mode override

2014-08-28 Thread Peter Crosthwaite
On Thu, Aug 28, 2014 at 10:05 PM, Jagan Teki wrote: > On 28 August 2014 17:28, Michal Simek wrote: >> On 08/28/2014 01:02 PM, Peter Crosthwaite wrote: >>> Ping! >>> >>> On Wed, Aug 20, 2014 at 10:14 PM, Peter Crosthwaite >>> wrote: >>>> T

[U-Boot] [PATCH 3/3] kconfig: zynq: Add ZYBO board

2014-08-28 Thread Peter Crosthwaite
Add a defconfig and Kconfigury for the Digilent ZYBO board. Signed-off-by: Peter Crosthwaite --- arch/arm/Kconfig| 3 +++ board/xilinx/zynq/Kconfig | 24 configs/zynq_zybo_defconfig | 3 +++ 3 files changed, 30 insertions(+) create mode 100644 configs

[U-Boot] [PATCH 1/3] arm: dts: zynq: Add digilent ZYBO board dts

2014-08-28 Thread Peter Crosthwaite
It's a Zynq board similar in design to the currently supported ones. 512MB of RAM and UART1 is used. Signed-off-by: Peter Crosthwaite --- arch/arm/dts/Makefile | 1 + arch/arm/dts/zynq-zybo.dts | 23 +++ 2 files changed, 24 insertions(+) create mode 100644 arc

[U-Boot] [PATCH 0/3] ARM: Zynq: Add ZYBO board

2014-08-28 Thread Peter Crosthwaite
to have appeared in u-boot since the original digilent work (P1). The new configury is P3. Regards, Peter Peter Crosthwaite (2): arm: dts: zynq: Add digilent ZYBO board dts kconfig: zynq: Add ZYBO board Tinghui Wang (1): configs: zynq: Add config support for ZYBO arch/arm/Kconfig

[U-Boot] [PATCH 2/3] configs: zynq: Add config support for ZYBO

2014-08-28 Thread Peter Crosthwaite
From: Tinghui Wang This patch adds config support needed for ZYBO target and has been tested on Rev. B ZYBO hardware. Signed-off-by: Tinghui Wang [PC changes: * Dropped boards.cfg change (rebase conflict) * Dropped custom u-boot env * Added DTS * Misc forward-porting changes ] Signed-off-by

Re: [U-Boot] [PATCH] arm: zynq: Add compile time boot mode override

2014-08-28 Thread Peter Crosthwaite
Ping! On Wed, Aug 20, 2014 at 10:14 PM, Peter Crosthwaite wrote: > To better enable debug of u-boot itself (in particular SPL). To debug > u-boot you want to put your board in JTAG boot mode for quick recompile > and elf downloads via the JTAG debugger. Yet you may still want to boot

[U-Boot] [PATCH] arm: zynq: Add compile time boot mode override

2014-08-20 Thread Peter Crosthwaite
to facilitate this. Signed-off-by: Peter Crosthwaite --- arch/arm/cpu/armv7/zynq/slcr.c | 4 doc/README.zynq| 6 ++ 2 files changed, 10 insertions(+) diff --git a/arch/arm/cpu/armv7/zynq/slcr.c b/arch/arm/cpu/armv7/zynq/slcr.c index 934ccc3..26e02b8 100644 --- a/arch/arm

Re: [U-Boot] [PATCH] zynq: spl: Add vectors section to linker script

2014-08-07 Thread Peter Crosthwaite
On Tue, Aug 5, 2014 at 5:57 PM, Michal Simek wrote: > On 08/04/2014 12:51 PM, Peter Crosthwaite wrote: >> The vectors section contains the _start symbol which is used as the >> program entry point. Add it to the linker script in same fasion as done > > fashion > Fixed

[U-Boot] [PATCH] zynq: spl: Add vectors section to linker script

2014-08-07 Thread Peter Crosthwaite
sunxi: Fix u-boot-spl.lds to refer to .vectors" (sha1: 9e5f80d823e3fd2a685b10ecf02009e34b86cff9) This also allows for placement of the vector table at the hivecs location by setting the TEXT_BASE to 0x. Tested-by: Michal Simek Signed-off-by: Peter Crosthwaite --- Changed since

[U-Boot] [PATCH] zynq: spl: Add vectors section to linker script

2014-08-04 Thread Peter Crosthwaite
9e5f80d823e3fd2a685b10ecf02009e34b86cff9. This also allows for placement of the vector table at the hivecs location by setting the TEXT_BASE to 0x. Signed-off-by: Peter Crosthwaite --- arch/arm/cpu/armv7/zynq/u-boot-spl.lds | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/cpu/armv7/zynq