All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [GIT PULL] Xilinx changes
Date: Tue, 24 May 2016 13:02:50 +0200	[thread overview]
Message-ID: <574434DA.8060900@xilinx.com> (raw)

Hi Tom,

here are patches I have collected. I expect some others changes will
come after that.

Thanks,
Michal


The following changes since commit d7d000311285e4b8d11e089ca13ea456a01be3b8:

  Merge branch 'master' of git://git.denx.de/u-boot-mips (2016-05-23
11:51:37 -0400)

are available in the git repository at:


  git://www.denx.de/git/u-boot-microblaze.git master

for you to fetch changes up to da83af77b125bbf487502c79cfb22c750e3dec11:

  ARM: zynq: Simplify zynq configuration (2016-05-24 11:15:02 +0200)

----------------------------------------------------------------
Alexander Graf (1):
      ARM64: zynqmp: Align gic ranges for 64k in device tree

Masahiro Yamada (2):
      ARM: zynq: load u-boot.img whether CONFIG_OF_SEPARATE is defined
or not
      ARM: dts: zynq: describe SLCR as simple-mfd rather than simple-bus

Michal Simek (27):
      gpio: zynq: Add support for reading gpio pin state
      ARM64: zynqmp: Enable HUSH parser for all zynqmp targets
      ARM64: zynqmp: Enable missing distro default options
      ARM64: zynqmp: Add support for reading MAC from eeprom
      ARM64: zynqmp: Enable eMMC boot partitions commands
      ARM64: zynqmp: Wire up debug_uart setup
      ARM: zynq: Add support for SPL_LOAD_FIT
      ARM64: zynqmp: Remove CONFIG_PREBOOT
      ARM64: zynqmp: Enable SPI_FLASH and FLASH_BAR for ep108
      ARM64: zynqmp: Add debug uart for zc1751-dc1
      spl: Introduce new function spl_board_prepare_for_boot
      ARM64: zynqmp: Enable option to overwrite default variables
      ARM: zynq: Call ps7_post_config() for SPL
      SPL: FIT: Enable SPL_FIT_LOAD in RAM based boot mode
      tools: zynqmpimage: Add Xilinx ZynqMP boot header generation
      ARM64: zynqmp: Add missing u-boot,dm-pre-reloc to DTSI
      ARM64: zynqmp: Add SPL support support
      ARM64: zynqmp: Enable CLK framework
      fpga: Fix typo in function comment
      mkimage: Report information about fpga
      net: xilinx: Handle error value from phy_startup()
      phy: Return correct error code when timeout happens
      net: phy: Handle phy_startup() error codes properly
      image: Add boot_get_fpga() to load fpga with bootm
      phy: Wire return value from phy_config()
      phy: marvell: Do not reset phy after negotiation
      ARM: zynq: Simplify zynq configuration

 arch/arm/Kconfig
  |   1 +
 arch/arm/cpu/armv8/zynqmp/Makefile
  |   1 +
 arch/arm/cpu/armv8/zynqmp/spl.c
  | 107 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/dts/zynq-7000.dtsi
  |   2 +-
 arch/arm/dts/zynqmp.dtsi
  |   9 ++++-
 arch/arm/include/asm/arch-zynqmp/sys_proto.h
  |   2 +
 arch/arm/mach-zynq/Kconfig
  |  48 +++---------------------
 arch/arm/mach-zynq/spl.c
  |  25 +++++++++++++
 board/xilinx/zynq/Makefile
  |  12 +-----
 board/xilinx/zynq/custom_hw_platform/.gitignore
  |   1 -
 board/xilinx/zynq/{MicroZed_hw_platform =>
zynq-microzed}/ps7_init_gpl.c |   0
 board/xilinx/zynq/{MicroZed_hw_platform =>
zynq-microzed}/ps7_init_gpl.h |   0
 board/xilinx/zynq/{ZC702_hw_platform => zynq-zc702}/ps7_init_gpl.c
  |   0
 board/xilinx/zynq/{ZC702_hw_platform => zynq-zc702}/ps7_init_gpl.h
  |   0
 board/xilinx/zynq/{ZC706_hw_platform => zynq-zc706}/ps7_init_gpl.c
  |   0
 board/xilinx/zynq/{ZC706_hw_platform => zynq-zc706}/ps7_init_gpl.h
  |   0
 board/xilinx/zynq/{zed_hw_platform => zynq-zed}/ps7_init_gpl.c
  |   0
 board/xilinx/zynq/{zed_hw_platform => zynq-zed}/ps7_init_gpl.h
  |   0
 board/xilinx/zynq/{zybo_hw_platform => zynq-zybo}/ps7_init_gpl.c
  |   0
 board/xilinx/zynq/{zybo_hw_platform => zynq-zybo}/ps7_init_gpl.h
  |   0
 board/xilinx/zynqmp/Makefile
  |  23 +++++++++++-
 board/xilinx/zynqmp/xil_io.h
  |  35 ++++++++++++++++++
 board/xilinx/zynqmp/zynqmp.c
  |  17 +++++++++
 common/bootm.c
  |  10 +++++
 common/image-fit.c
  |  11 +++++-
 common/image.c
  |  94 ++++++++++++++++++++++++++++++++++++++++++++++
 common/spl/spl.c
  |  51 ++++++++++++++++++++-----
 configs/xilinx_zynqmp_ep_defconfig
  |   9 +++++
 configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig
  |   8 ++++
 configs/xilinx_zynqmp_zc1751_xm016_dc2_defconfig
  |   3 ++
 configs/xilinx_zynqmp_zc1751_xm019_dc5_defconfig
  |   3 ++
 configs/xilinx_zynqmp_zcu102_defconfig
  |   8 ++++
 configs/xilinx_zynqmp_zcu102_revB_defconfig
  |   8 ++++
 configs/zynq_microzed_defconfig
  |   2 +-
 configs/zynq_picozed_defconfig
  |   2 +-
 configs/zynq_zc702_defconfig
  |   1 +
 configs/zynq_zc706_defconfig
  |   2 +-
 configs/zynq_zc770_xm010_defconfig
  |   2 +-
 configs/zynq_zc770_xm011_defconfig
  |   2 +-
 configs/zynq_zc770_xm012_defconfig
  |   2 +-
 configs/zynq_zc770_xm013_defconfig
  |   2 +-
 configs/zynq_zed_defconfig
  |   2 +-
 configs/zynq_zybo_defconfig
  |   2 +-
 doc/uImage.FIT/multi-with-fpga.its
  |  67 +++++++++++++++++++++++++++++++++
 doc/uImage.FIT/source_file_format.txt
  |   3 ++
 drivers/fpga/fpga.c
  |   2 +-
 drivers/gpio/zynq_gpio.c
  |  22 +++++++++++
 drivers/net/phy/broadcom.c
  |  34 +++++++++++------
 drivers/net/phy/davicom.c
  |   9 +++--
 drivers/net/phy/et1011c.c
  |  10 +++--
 drivers/net/phy/lxt.c
  |   9 +++--
 drivers/net/phy/marvell.c
  |  39 ++++++++++---------
 drivers/net/phy/micrel.c
  |   7 +++-
 drivers/net/phy/natsemi.c
  |  18 ++++++---
 drivers/net/phy/phy.c
  |  15 ++++----
 drivers/net/phy/realtek.c
  |  28 +++++++++-----
 drivers/net/phy/smsc.c
  |  10 +++--
 drivers/net/phy/vitesse.c
  |   8 ++--
 drivers/net/xilinx_emaclite.c
  |   4 +-
 drivers/net/zynq_gem.c
  |   8 ++--
 include/bootstage.h
  |   1 +
 include/configs/xilinx_zynqmp.h
  |  59 ++++++++++++++++++++++++++++-
 include/configs/xilinx_zynqmp_zcu102.h
  |   6 +++
 include/configs/zynq-common.h
  |   6 +--
 include/image.h
  |   7 +++-
 include/spl.h
  |   1 +
 scripts/Makefile.spl
  |   7 ++++
 tools/Makefile
  |   1 +
 tools/zynqmpimage.c
  | 269
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 69 files changed, 999 insertions(+), 158 deletions(-)
 create mode 100644 arch/arm/cpu/armv8/zynqmp/spl.c
 delete mode 100644 board/xilinx/zynq/custom_hw_platform/.gitignore
 rename board/xilinx/zynq/{MicroZed_hw_platform =>
zynq-microzed}/ps7_init_gpl.c (100%)
 rename board/xilinx/zynq/{MicroZed_hw_platform =>
zynq-microzed}/ps7_init_gpl.h (100%)
 rename board/xilinx/zynq/{ZC702_hw_platform =>
zynq-zc702}/ps7_init_gpl.c (100%)
 rename board/xilinx/zynq/{ZC702_hw_platform =>
zynq-zc702}/ps7_init_gpl.h (100%)
 rename board/xilinx/zynq/{ZC706_hw_platform =>
zynq-zc706}/ps7_init_gpl.c (100%)
 rename board/xilinx/zynq/{ZC706_hw_platform =>
zynq-zc706}/ps7_init_gpl.h (100%)
 rename board/xilinx/zynq/{zed_hw_platform => zynq-zed}/ps7_init_gpl.c
(100%)
 rename board/xilinx/zynq/{zed_hw_platform => zynq-zed}/ps7_init_gpl.h
(100%)
 rename board/xilinx/zynq/{zybo_hw_platform => zynq-zybo}/ps7_init_gpl.c
(100%)
 rename board/xilinx/zynq/{zybo_hw_platform => zynq-zybo}/ps7_init_gpl.h
(100%)
 create mode 100644 board/xilinx/zynqmp/xil_io.h
 create mode 100644 doc/uImage.FIT/multi-with-fpga.its
 create mode 100644 tools/zynqmpimage.c

             reply	other threads:[~2016-05-24 11:02 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-24 11:02 Michal Simek [this message]
2016-05-24 11:16 ` [U-Boot] [GIT PULL] Xilinx changes Michal Simek
  -- strict thread matches above, loose matches on Subject: below --
2017-01-11  8:59 Michal Simek
2017-01-11 16:28 ` Tom Rini
2017-01-12  6:42   ` Michal Simek
2017-01-12  7:13     ` Masahiro Yamada
2017-01-12  7:17       ` Michal Simek
2017-01-19  3:20         ` Tom Rini
2016-11-15 17:59 Michal Simek
2016-11-16  0:26 ` Masahiro Yamada
2016-11-16  7:31   ` Michal Simek
2016-11-17 22:14 ` Tom Rini
2016-09-14 11:14 Michal Simek
2016-09-18 18:04 ` Tom Rini
2016-09-19 10:00   ` Michal Simek
2016-09-19 11:13     ` Tom Rini
2016-08-02  6:25 Michal Simek
2016-08-02 17:38 ` Tom Rini
2016-07-22 13:17 Michal Simek
2016-07-23  0:10 ` Tom Rini
2016-06-06  9:26 Michal Simek
2016-06-06 21:27 ` Tom Rini
2016-04-13 16:37 Michal Simek
2016-04-13 19:47 ` Tom Rini
2016-04-04 18:31 Michal Simek
2016-04-05  0:01 ` Tom Rini
2016-01-27 15:42 Michal Simek
2016-01-28 23:18 ` Tom Rini
2016-02-04 13:44   ` Ricardo Ribalda Delgado

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=574434DA.8060900@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.