From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 0/15] Xilinx Zynq patches
Date: Tue, 23 Apr 2013 12:45:59 +0200 [thread overview]
Message-ID: <cover.1366713845.git.michal.simek@xilinx.com> (raw)
Patchset contains several patches which improve Xilinx Zynq arm port.
Patchset contain:
- core changes
- gem updates
- mmc support
- i2c support
- pl support
I am sending them in one package because driver depends
on each other in zynq shared files.
Thanks for your comments,
Michal
P.S.: The first version sent by patman that's why sorry
for any mistake.
Changes in v2:
- New patch in this series to reflect Tom's comments
- Remove XPSS_ prefix and replace it with ZYNQ
- Remove CONFIG_ prefix from non configurable macros (scutimer)
- Remove CONFIG_ prefix from non configurable macro (gem)
- Remove CONFIG_ prefix from non configurable macros (emio)
- Remove CONFIG_ prefix from non configurable macros (sdhci)
- Remove CONFIG_ prefix from non configurable macros (i2c)
- Fix checkpatch warnings (i2c)
- Fix #define<space>Macro name (i2c)
- Fix multiline comments (i2c)
- Remove trailing 1 for configurations (i2c)
- Fix bugs reported by Tom Rini
- Fix checkpatch warnings (fpga)
- Fix comments (fpga)
- Do not use CamelCase for XilinxZynq (fpga)
David Andrey (3):
arm: zynq: U-Boot udelay < 1000 FIX
net: gem: Pass phy address to init
net: gem: Preserve clk on emio interface
Michal Simek (12):
arm: zynq: Rename XPSS_ prefix to ZYNQ_ for hardcoded SoC addresses
zynq: Move scutimer baseaddr to hardware.h
net: phy: Define Marvell 88e1518 phy
net: gem: Remove WRAP bit from TX buffer description
net: gem: Simplify return path in zynq_gem_recv
net: gem: Do not initialize BDs again
net: gem: Fix gem driver on 1Gbps LAN
zynq: Move macros to hardware.h
net: gem: Add support for phy autodetection
mmc: Add support for Xilinx Zynq sdhci controller
i2c: zynq: Add support for Xilinx Zynq
fpga: Add support for loading bitstream for Xilinx Zynq
arch/arm/cpu/armv7/zynq/slcr.c | 61 ++++++
arch/arm/cpu/armv7/zynq/timer.c | 49 ++++-
arch/arm/include/asm/arch-zynq/hardware.h | 36 +++-
arch/arm/include/asm/arch-zynq/sys_proto.h | 7 +
board/xilinx/zynq/board.c | 66 ++++++-
drivers/fpga/Makefile | 1 +
drivers/fpga/xilinx.c | 37 ++++
drivers/fpga/zynqpl.c | 231 ++++++++++++++++++++++
drivers/i2c/Makefile | 1 +
drivers/i2c/zynq_i2c.c | 306 +++++++++++++++++++++++++++++
drivers/mmc/Makefile | 1 +
drivers/mmc/zynq_sdhci.c | 40 ++++
drivers/net/phy/marvell.c | 11 ++
drivers/net/zynq_gem.c | 199 +++++++++++++------
include/configs/zynq.h | 39 +++-
include/netdev.h | 2 +-
include/xilinx.h | 4 +
include/zynqpl.h | 59 ++++++
18 files changed, 1065 insertions(+), 85 deletions(-)
create mode 100644 drivers/fpga/zynqpl.c
create mode 100644 drivers/i2c/zynq_i2c.c
create mode 100644 drivers/mmc/zynq_sdhci.c
create mode 100644 include/zynqpl.h
--
1.8.2.1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130423/17ce7b8a/attachment.pgp>
next reply other threads:[~2013-04-23 10:45 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-23 10:45 Michal Simek [this message]
2013-04-23 10:46 ` [U-Boot] [PATCH v2 01/15] arm: zynq: U-Boot udelay < 1000 FIX Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 02/15] arm: zynq: Rename XPSS_ prefix to ZYNQ_ for hardcoded SoC addresses Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 03/15] zynq: Move scutimer baseaddr to hardware.h Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 04/15] net: phy: Define Marvell 88e1518 phy Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 05/15] net: gem: Remove WRAP bit from TX buffer description Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 06/15] net: gem: Simplify return path in zynq_gem_recv Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 07/15] net: gem: Do not initialize BDs again Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 08/15] net: gem: Fix gem driver on 1Gbps LAN Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 09/15] zynq: Move macros to hardware.h Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 10/15] net: gem: Pass phy address to init Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 11/15] net: gem: Preserve clk on emio interface Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 12/15] net: gem: Add support for phy autodetection Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 13/15] mmc: Add support for Xilinx Zynq sdhci controller Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 14/15] i2c: zynq: Add support for Xilinx Zynq Michal Simek
2013-04-29 3:39 ` Heiko Schocher
2013-04-29 6:26 ` Michal Simek
2013-04-23 10:46 ` [U-Boot] [PATCH v2 15/15] fpga: Add support for loading bitstream " Michal Simek
2013-04-23 16:16 ` [U-Boot] [PATCH v2 0/15] Xilinx Zynq patches Tom Rini
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.1366713845.git.michal.simek@xilinx.com \
--to=michal.simek@xilinx.com \
--cc=u-boot@lists.denx.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.