All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [GIT PULL] Xilinx changes for Zynq and Microblaze
@ 2015-12-18 12:24 Michal Simek
  2015-12-18 18:17 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Michal Simek @ 2015-12-18 12:24 UTC (permalink / raw)
  To: u-boot

Hi Tom,

here are fixes which I have in my queue for 2016.1.
Moving Microblaze drivers to DM will be send after 2016.1 because there
are some stuff which are not fully reviewed yet.

This patchset contain fixes for zybo, mkimage, gem and microblaze.
There is also one generic fix for MANUAL_RELOC for net DM.

Thanks,
Michal

The following changes since commit 9cddb4fe0266484aab9babdd2ebe650021644ea9:

  Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq
(2015-12-17 07:52:56 -0500)

are available in the git repository at:


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

for you to fetch changes up to b5e9b9a9a1bb231e35e206f8f3e2becee1dd06ab:

  microblaze: Do not handle watchdog and gpio in SPL (2015-12-18
13:15:58 +0100)

----------------------------------------------------------------
Michal Simek (13):
      ARM: zynq: Enable u-boot,dm-pre-reloc for sdhci
      net: gem: Setup default phy address to -1
      net: gem: Fix return value from recv
      net: gem: Separate recv and free_pkt functions
      net: gem: Fix typo in Kconfig entry
      net: gem: Add driver dependencies to PHYLIB
      dm: net: Fix DM for targets which use MANUAL_RELOC
      microblaze: Make room for malloc before ELF
      microblaze: Use malloc setting via Kconfig
      microblaze: Remove support for LL_TEMAC
      microblaze: Enable OF_CONTROL by default
      microblaze: Enable DM by default
      microblaze: Do not handle watchdog and gpio in SPL

Nathan Rossi (4):
      ARM: zynq: Add default ps7_init_gpl.c/h for ZYBO
      tools: zynqimage: Clean up check_params
      spi: zynq_qspi: Add configuration to disable LQSPI feature
      arm: zynq: Update ZYBO config options

 arch/arm/dts/zynq-zc706.dts                          |     2 +
 arch/arm/dts/zynq-zed.dts                            |     2 +
 arch/arm/dts/zynq-zybo.dts                           |    18 +
 arch/arm/mach-zynq/Kconfig                           |     1 -
 arch/microblaze/Kconfig                              |     2 +
 board/xilinx/microblaze-generic/microblaze-generic.c |    38 +-
 board/xilinx/microblaze-generic/xparameters.h        |     6 -
 board/xilinx/zynq/Makefile                           |     1 +
 board/xilinx/zynq/zybo_hw_platform/ps7_init_gpl.c    | 11948
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 board/xilinx/zynq/zybo_hw_platform/ps7_init_gpl.h    |    97 ++
 configs/microblaze-generic_defconfig                 |     2 +-
 configs/zynq_microzed_defconfig                      |     1 -
 configs/zynq_picozed_defconfig                       |     1 -
 configs/zynq_zc702_defconfig                         |     1 -
 configs/zynq_zc706_defconfig                         |     1 -
 configs/zynq_zc770_xm010_defconfig                   |     1 -
 configs/zynq_zc770_xm011_defconfig                   |     1 -
 configs/zynq_zc770_xm012_defconfig                   |     1 -
 configs/zynq_zc770_xm013_defconfig                   |     1 -
 configs/zynq_zed_defconfig                           |     1 -
 configs/zynq_zybo_defconfig                          |     4 +-
 drivers/net/Kconfig                                  |     3 +-
 drivers/net/zynq_gem.c                               |    61 +-
 drivers/spi/zynq_qspi.c                              |     9 +
 include/configs/microblaze-generic.h                 |    21 +-
 include/configs/xilinx_zynqmp.h                      |     1 -
 include/configs/zynq_zybo.h                          |     1 +
 net/eth.c                                            |    28 +
 tools/zynqimage.c                                    |     3 +-
 29 files changed, 12159 insertions(+), 98 deletions(-)
 create mode 100644 board/xilinx/zynq/zybo_hw_platform/ps7_init_gpl.c
 create mode 100644 board/xilinx/zynq/zybo_hw_platform/ps7_init_gpl.h


-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20151218/7e32fc69/attachment.sig>

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [U-Boot] [GIT PULL] Xilinx changes for Zynq and Microblaze
  2015-12-18 12:24 [U-Boot] [GIT PULL] Xilinx changes for Zynq and Microblaze Michal Simek
@ 2015-12-18 18:17 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2015-12-18 18:17 UTC (permalink / raw)
  To: u-boot

On Fri, Dec 18, 2015 at 01:24:06PM +0100, Michal Simek wrote:

> Hi Tom,
> 
> here are fixes which I have in my queue for 2016.1.
> Moving Microblaze drivers to DM will be send after 2016.1 because there
> are some stuff which are not fully reviewed yet.
> 
> This patchset contain fixes for zybo, mkimage, gem and microblaze.
> There is also one generic fix for MANUAL_RELOC for net DM.
> 
> Thanks,
> Michal
> 
> The following changes since commit 9cddb4fe0266484aab9babdd2ebe650021644ea9:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq
> (2015-12-17 07:52:56 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://www.denx.de/git/u-boot-microblaze.git master
> 
> for you to fetch changes up to b5e9b9a9a1bb231e35e206f8f3e2becee1dd06ab:
> 
>   microblaze: Do not handle watchdog and gpio in SPL (2015-12-18
> 13:15:58 +0100)
> 

Applied to u-boot/master, thanks!



-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20151218/34e9d62e/attachment.sig>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-12-18 18:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-18 12:24 [U-Boot] [GIT PULL] Xilinx changes for Zynq and Microblaze Michal Simek
2015-12-18 18:17 ` Tom Rini

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.