From: michal.simek@xilinx.com (Michal Simek)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v1 0/24] Zynq DT changes
Date: Fri, 3 Jan 2014 11:10:45 +0100 [thread overview]
Message-ID: <cover.1388743861.git.michal.simek@xilinx.com> (raw)
Hi,
this is respin of Jagan v3 series sent here
http://lists.denx.de/pipermail/u-boot/2013-December/169617.html
+ 2 patches v4
http://lists.denx.de/pipermail/u-boot/2013-December/169753.html
http://lists.denx.de/pipermail/u-boot/2013-December/169752.html
The purpose of this series was to synchronized configuration
which we are using with mainline version with adding features
which we are using.
The major change, which I have done, is adding DT support for
all zynq boards instead of board specification configurations.
I have changed serial, gem, emaclite, mmc.
i2c, spi already support bus selection.
For more information please look at patches.
All series are available here for easier testing.
http://git.denx.de/?p=u-boot/u-boot-microblaze.git;a=shortlog;h=refs/heads/zynq
Thanks,
Michal
Changes in v1:
- Remove doc compare to origin Jagan version
- Update to the latest status
Jagannadha Sutradharudu Teki (19):
gpio: zynq: Add dummy gpio routines
zynq: Enable CONFIG_FIT_VERBOSE
zynq: Enable Boot FreeBSD/vxWorks
zynq: Cleanup on miscellaneous configs
zynq: Cleanup on memory configs
zynq: Minor config cleanup
zynq: Enable cache options
zynq: serial: Simplify serial driver initialization
zynq: Add GEM0, GEM1 configs support
zynq-common: Define exact TEXT_BASE
zynq: Add Catalyst 24WC08 EEPROM config support
zynq-common: Define default environment
zynq-common: Change Env. Sector size to 128Kb
zynq-common: Define flash env. partition
zynq-common: Define CONFIG_ENV_OVERWRITE
zynq: Add support to find bootmode
dts: zynq: Add fdt support
zynq-common: Enable verified boot(RSA)
doc: zynq: Add information on zynq u-boot
Michal Simek (5):
net: emaclite: Fix OF initialization
net: gem: Add OF initialization support
mmc: zynq: Add OF initialization support
zynq: Add OF ram initialization support
serial: zynq: Add OF initialization support
arch/arm/cpu/armv7/zynq/slcr.c | 6 +
arch/arm/include/asm/arch-zynq/gpio.h | 25 ++
arch/arm/include/asm/arch-zynq/hardware.h | 2 +
arch/arm/include/asm/arch-zynq/sys_proto.h | 2 +
board/xilinx/dts/zynq-generic.dts | 421 +++++++++++++++++++++++++++++
board/xilinx/zynq/board.c | 75 +++--
doc/README.zynq | 76 ++++++
drivers/mmc/zynq_sdhci.c | 29 ++
drivers/net/xilinx_emaclite.c | 15 +-
drivers/net/zynq_gem.c | 42 +++
drivers/serial/serial_zynq.c | 62 ++++-
include/configs/zynq.h | 203 +++++++++-----
include/netdev.h | 2 +
13 files changed, 850 insertions(+), 110 deletions(-)
create mode 100644 arch/arm/include/asm/arch-zynq/gpio.h
create mode 100644 board/xilinx/dts/zynq-generic.dts
create mode 100644 doc/README.zynq
--
1.8.2.3
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140103/24042e5f/attachment.sig>
next reply other threads:[~2014-01-03 10:10 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-03 10:10 Michal Simek [this message]
2014-01-03 10:10 ` [PATCH v1 01/24] net: emaclite: Fix OF initialization Michal Simek
2014-01-03 10:10 ` [PATCH v1 02/24] net: gem: Add OF initialization support Michal Simek
2014-01-03 10:10 ` [PATCH v1 03/24] mmc: zynq: " Michal Simek
2014-01-03 10:10 ` [PATCH v1 04/24] zynq: Add OF ram " Michal Simek
2014-01-03 10:10 ` [PATCH v1 05/24] gpio: zynq: Add dummy gpio routines Michal Simek
2014-01-03 10:10 ` [PATCH v1 06/24] zynq: Enable CONFIG_FIT_VERBOSE Michal Simek
2014-01-03 10:10 ` [PATCH v1 07/24] zynq: Enable Boot FreeBSD/vxWorks Michal Simek
2014-01-03 10:10 ` [PATCH v1 08/24] zynq: Cleanup on miscellaneous configs Michal Simek
2014-01-03 10:10 ` [PATCH v1 09/24] zynq: Cleanup on memory configs Michal Simek
2014-01-03 10:10 ` [PATCH v1 10/24] zynq: Minor config cleanup Michal Simek
2014-01-03 10:10 ` [PATCH v1 11/24] zynq: Enable cache options Michal Simek
2014-01-03 10:10 ` [PATCH v1 12/24] zynq: serial: Simplify serial driver initialization Michal Simek
2014-01-03 10:10 ` [PATCH v1 13/24] serial: zynq: Add OF initialization support Michal Simek
2014-01-03 10:10 ` [PATCH v1 14/24] zynq: Add GEM0, GEM1 configs support Michal Simek
2014-01-03 10:11 ` [PATCH v1 15/24] zynq-common: Define exact TEXT_BASE Michal Simek
2014-01-03 10:11 ` [PATCH v1 16/24] zynq: Add Catalyst 24WC08 EEPROM config support Michal Simek
2014-01-03 10:11 ` [PATCH v1 17/24] zynq-common: Define default environment Michal Simek
2014-01-03 10:11 ` [PATCH v1 18/24] zynq-common: Change Env. Sector size to 128Kb Michal Simek
2014-01-03 10:11 ` [PATCH v1 19/24] zynq-common: Define flash env. partition Michal Simek
2014-01-03 10:11 ` [PATCH v1 20/24] zynq-common: Define CONFIG_ENV_OVERWRITE Michal Simek
2014-01-03 10:11 ` [PATCH v1 21/24] zynq: Add support to find bootmode Michal Simek
2014-01-03 10:11 ` [PATCH v1 22/24] dts: zynq: Add fdt support Michal Simek
2014-01-03 10:11 ` [PATCH v1 23/24] zynq-common: Enable verified boot(RSA) Michal Simek
2014-01-03 10:11 ` [PATCH v1 24/24] doc: zynq: Add information on zynq u-boot Michal Simek
2014-01-03 11:39 ` [PATCH v1 0/24] Zynq DT changes Russell King - ARM Linux
2014-01-14 12:08 ` Albert ARIBAUD
2014-01-14 12:48 ` Michal Simek
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=cover.1388743861.git.michal.simek@xilinx.com \
--to=michal.simek@xilinx.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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;
as well as URLs for NNTP newsgroup(s).