From: Steffen Trumtrar <s.trumtrar@pengutronix.de>
To: Josh Cartwright <joshc@eso.teric.us>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH v3 2/5] ARM: zynq: Add new architecture zynq
Date: Tue, 26 Mar 2013 14:28:02 +0100 [thread overview]
Message-ID: <20130326132802.GD32647@pengutronix.de> (raw)
In-Reply-To: <20130326131954.GE16050@kryptos>
On Tue, Mar 26, 2013 at 08:19:54AM -0500, Josh Cartwright wrote:
> A few comments below, but otherwise: nice work.
>
> On Tue, Mar 26, 2013 at 10:11:23AM +0100, Steffen Trumtrar wrote:
> > Add basic support for the Xilinx Zynq-7000 EPP architecture.
> > The Zynq-7000 is an embedded processing platform that combines a Cortex A9
> > dualcore MPSoC with an Artix-7 FPGA.
> >
> > Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
> > ---
> >
> > Changes since v2:
> > - don't force serial driver in Kconfig
> > - remove MACH_HAS_LOWLEVEL_INIT
> > - use (void __iomem *) in debug_ll.h
> > - remove zynq_add_device inline function
> > - use resource_size_t instead of void *
> > - use __le32 consistently in zynq-flash-header.h
> > - remove useless flash_header_start section
> [..]
> > diff --git a/arch/arm/Makefile b/arch/arm/Makefile
> > index fcb2969..ceb45dc 100644
> > --- a/arch/arm/Makefile
> > +++ b/arch/arm/Makefile
> > @@ -64,6 +64,7 @@ machine-$(CONFIG_ARCH_PXA) := pxa
> > machine-$(CONFIG_ARCH_SAMSUNG) := samsung
> > machine-$(CONFIG_ARCH_VERSATILE) := versatile
> > machine-$(CONFIG_ARCH_TEGRA) := tegra
> > +machine-$(CONFIG_ARCH_ZYNQ) := zynq
> >
> > # Board directory name. This list is sorted alphanumerically
> > # by CONFIG_* macro name.
> > @@ -157,6 +158,7 @@ board-$(CONFIG_MACH_SABRELITE) := freescale-mx6-sabrelite
> > board-$(CONFIG_MACH_TX53) := karo-tx53
> > board-$(CONFIG_MACH_GUF_VINCELL) := guf-vincell
> > board-$(CONFIG_MACH_EFIKA_MX_SMARTBOOK) := efika-mx-smartbook
> > +board-$(CONFIG_MACH_ZEDBOARD) := avnet-zedboard
> > machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
> >
> > diff --git a/arch/arm/mach-zynq/Kconfig b/arch/arm/mach-zynq/Kconfig
> > new file mode 100644
> > index 0000000..5bbd648
> > --- /dev/null
> > +++ b/arch/arm/mach-zynq/Kconfig
> > @@ -0,0 +1,38 @@
> > +if ARCH_ZYNQ
>
> Not sure how much we care here, but with the order of the patchset the
> way it is, after this one, it will be possible to select the ZedBoard,
> even though all of the other support files get added only in the last
> patch.
>
> > +
> > +config ARCH_TEXT_BASE
> > + hex
> > + default 0x1ff00000 if MACH_ZEDBOARD
> > +
> > +config ZYNQ_DEBUG_LL_UART_BASE
> > + hex
> > + default 0xe0001000 if MACH_ZEDBOARD
> > +
> > +config BOARDINFO
> > + default "ZedBoard" if MACH_ZEDBOARD
> > +
> > +choice
> > + prompt "Xilinx Zynq type board"
> > +
> > +config ARCH_ZYNQ7000
> > + bool "Zynq-7000"
> > + select CPU_V7
> > + select CLKDEV_LOOKUP
> > + select COMMON_CLK
> > + select ARM_SMP_TWD
> > +
> > +endchoice
> > +
> > +if ARCH_ZYNQ7000
> > +
> > +choice
> > + prompt "Zynq-7000 Board Type"
> > +
> > +config MACH_ZEDBOARD
> > + bool "Avnet Zynq-7000 ZedBoard"
> > + select DRIVER_SERIAL_CADENCE
> > +
> > +endchoice
> > +endif
> > +
> > +endif
> [..]
> > diff --git a/arch/arm/mach-zynq/include/mach/zynq-flash-header.h b/arch/arm/mach-zynq/include/mach/zynq-flash-header.h
> > new file mode 100644
> > index 0000000..3b67e55
> > --- /dev/null
> > +++ b/arch/arm/mach-zynq/include/mach/zynq-flash-header.h
> > @@ -0,0 +1,38 @@
> > +#ifndef __MACH_FLASH_HEADER_H
> > +#define __MACH_FLASH_HEADER_H
> > +
> > +#include <asm-generic/sections.h>
> > +
> > +#define __flash_header_section __section(.flash_header_0x0)
> > +#define __ps7reg_entry_section __section(.ps7reg_entry_0x0A0)
> > +#define __image_len_section __section(.image_len_0x08c0)
> > +#define FLASH_HEADER_OFFSET 0x0
> > +#define IMAGE_OFFSET 0x8c0
> > +
> > +#define DEST_BASE 0x8c0
> > +#define FLASH_HEADER_BASE (DEST_BASE + FLASH_HEADER_OFFSET)
> > +
> > +struct zynq_reg_entry {
> > + __le32 addr;
> > + __le32 val;
> > +};
> > +
> > +#define WIDTH_DETECTION_MAGIC 0xAA995566
> > +#define IMAGE_IDENTIFICATION 0x584C4E58 /* "XLNX" */
> > +
> > +struct zynq_flash_header {
> > + __le32 width_det;
> > + __le32 image_id;
> > + __le32 enc_stat;
> > + __le32 user;
> > + __le32 flash_offset;
> > + __le32 length;
> > + __le32 res0;
> > + __le32 start_of_exec;
> > + __le32 total_len;
> > + __le32 res1;
> > + __le32 checksum;
> > + __le32 res2;
> > +};
>
> One thing I found during my testing/debugging to be useful is to have a
> way to turn off the flash header, to get a header-less barebox.bin I
> could use JTAG to load on the board. (I realize I could have done used
> it _with_ the flash header and set the PC up at 0x8c0, but this was
> easier).
>
> It would be nice if there was a headerless binary left as a build
> artifact that could be used for this purpose.
>
Yes. Sascha suggested to remove the flash_header and generate the whole
thing with the zynq_mkimage tool. But atm I don't really feel the need to
do so, as the header is simple in comparison to other SoCs. And as you
said, you can jump over the header.
Regards,
Steffen
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2013-03-26 13:28 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-26 9:11 [PATCH v4 0/5] ARM: add support for Zynq Steffen Trumtrar
2013-03-26 9:11 ` [PATCH v3 1/5] serial: Add driver for Cadence UART Steffen Trumtrar
2013-03-26 9:11 ` [PATCH v3 2/5] ARM: zynq: Add new architecture zynq Steffen Trumtrar
2013-03-26 13:19 ` Josh Cartwright
2013-03-26 13:28 ` Steffen Trumtrar [this message]
2013-03-26 9:11 ` [PATCH v2 3/5] ARM: zynq: add clk support for zynq7000 Steffen Trumtrar
2013-03-26 13:20 ` Josh Cartwright
2013-03-26 13:25 ` Josh Cartwright
2013-03-26 14:20 ` Michal Simek
2013-03-26 9:11 ` [PATCH v3 4/5] ARM: zynq: add zynq fsbl checksum script Steffen Trumtrar
2013-03-26 9:11 ` [PATCH v3 5/5] ARM: zynq: Add support for the Avnet Zedboard Steffen Trumtrar
2013-03-26 9:21 ` [PATCH v4 0/5] ARM: add support for Zynq Michal Simek
2013-03-26 9:33 ` Steffen Trumtrar
2013-03-26 9:38 ` Michal Simek
2013-03-26 10:22 ` Jean-Christophe PLAGNIOL-VILLARD
2013-03-27 8:32 ` Sascha Hauer
-- strict thread matches above, loose matches on Subject: below --
2013-03-25 13:02 [PATCH v3 " Steffen Trumtrar
2013-03-25 13:02 ` [PATCH v3 2/5] ARM: zynq: Add new architecture zynq Steffen Trumtrar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130326132802.GD32647@pengutronix.de \
--to=s.trumtrar@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=joshc@eso.teric.us \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox