All of lore.kernel.org
 help / color / mirror / Atom feed
From: Luka Perkov <luka.perkov@sartura.hr>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-marvell master
Date: Tue, 5 May 2015 12:50:01 +0000	[thread overview]
Message-ID: <0000014d24203b64-d57338e6-d985-4e8f-a853-737fc50ca564-000000@email.amazonses.com> (raw)

Hi Tom,

please pull from marvell/master. The changes include Stefan's Armada 38x
series which reached v3 on the mailing list and two more Marvell Armada
related fixes.

The following changes since commit ace97d26176a3ebc9ec07738450de93eea35975c:

  Merge branch 'zynq' of git://www.denx.de/git/u-boot-microblaze (2015-04-29 06:46:33 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-marvell.git 

for you to fetch changes up to 2083db7a75792d317a8e726e8be72abea8941d03:

  arm: mvebu: Remove "u-boot.kwb" CONFIG_BUILD_TARGET for non-SPL targets (2015-05-05 14:32:05 +0200)

----------------------------------------------------------------
Stefan Roese (15):
      arm: armada-xp: Move SoC sources to mach-mvebu
      arm: armada-xp: Move SoC headers to mach-mvebu/include/mach
      arm: mvebu: Move mvebu-common into mach-mvebu
      arm: mvebu: Change header macros from ARMADA_XP to MVEBU
      arm: mvebu: Remove unreferenced define
      arm: mvebu: Only define MV88F78X60 for Armada XP
      arm: mvebu: Move CONFIG_SPL_LDSCRIPT to common header
      arm: mvebu: Add basic Armada 38x support
      arm: mvebu: Change network init code to allow a more flexible setup
      arm: mvebu: Remove coherency configuration
      arm: mvebu: mv-common.h: Add CONFIG_PREBOOT
      arm: mvebu: Add d-cache invalidate before enabling the d-cache
      arm: mvebu: Add Armada A38x DB-88F6820-GP board support
      arm: mvebu: db-mv784mp-gp: Fix ECC I2C address
      arm: mvebu: Remove "u-boot.kwb" CONFIG_BUILD_TARGET for non-SPL targets

 arch/arm/Kconfig                                   |   6 ++
 arch/arm/Makefile                                  |   5 +-
 arch/arm/cpu/armv7/Makefile                        |   1 -
 arch/arm/cpu/armv7/armada-xp/Makefile              |   9 --
 arch/arm/mach-mvebu/Makefile                       |  24 +++++
 arch/arm/{cpu/armv7/armada-xp => mach-mvebu}/cpu.c |  96 +++++++++++++++----
 arch/arm/{mvebu-common => mach-mvebu}/dram.c       |   0
 arch/arm/{mvebu-common => mach-mvebu}/gpio.c       |   0
 .../include/mach}/config.h                         |  17 ++--
 .../include/mach}/cpu.h                            |  13 ++-
 .../include/mach}/soc.h                            |  20 ++--
 .../armv7/armada-xp => mach-mvebu}/lowlevel_spl.S  |   0
 arch/arm/{mvebu-common => mach-mvebu}/mbus.c       |   3 -
 .../{mvebu-common => mach-mvebu}/serdes/Makefile   |   0
 .../serdes/board_env_spec.h                        |   0
 .../serdes/high_speed_env_lib.c                    |   0
 .../serdes/high_speed_env_spec.c                   |   0
 .../serdes/high_speed_env_spec.h                   |   0
 arch/arm/{cpu/armv7/armada-xp => mach-mvebu}/spl.c |   0
 arch/arm/{mvebu-common => mach-mvebu}/timer.c      |   0
 .../{mvebu-common => mach-mvebu}/u-boot-spl.lds    |   0
 board/Marvell/db-88f6820-gp/Kconfig                |  15 +++
 board/Marvell/db-88f6820-gp/Makefile               |   7 ++
 board/Marvell/db-88f6820-gp/binary.0               |  16 ++++
 board/Marvell/db-88f6820-gp/db-88f6820-gp.c        | 103 +++++++++++++++++++++
 board/Marvell/db-88f6820-gp/kwbimage.cfg           |  12 +++
 board/Marvell/db-mv784mp-gp/Kconfig                |   2 +-
 board/Marvell/db-mv784mp-gp/db-mv784mp-gp.c        |   3 +-
 board/maxbcm/Kconfig                               |   2 +-
 board/maxbcm/maxbcm.c                              |   2 +-
 configs/db-88f6820-gp_defconfig                    |   2 +
 drivers/ddr/mvebu/ddr3_axp.h                       |   2 +-
 include/configs/db-88f6820-gp.h                    |  72 ++++++++++++++
 include/configs/db-mv784mp-gp.h                    |   3 +-
 include/configs/maxbcm.h                           |   3 +-
 include/configs/mv-common.h                        |   1 +
 36 files changed, 379 insertions(+), 60 deletions(-)
 delete mode 100644 arch/arm/cpu/armv7/armada-xp/Makefile
 create mode 100644 arch/arm/mach-mvebu/Makefile
 rename arch/arm/{cpu/armv7/armada-xp => mach-mvebu}/cpu.c (71%)
 rename arch/arm/{mvebu-common => mach-mvebu}/dram.c (100%)
 rename arch/arm/{mvebu-common => mach-mvebu}/gpio.c (100%)
 rename arch/arm/{include/asm/arch-armada-xp => mach-mvebu/include/mach}/config.h (86%)
 rename arch/arm/{include/asm/arch-armada-xp => mach-mvebu/include/mach}/cpu.h (93%)
 rename arch/arm/{include/asm/arch-armada-xp => mach-mvebu/include/mach}/soc.h (81%)
 rename arch/arm/{cpu/armv7/armada-xp => mach-mvebu}/lowlevel_spl.S (100%)
 rename arch/arm/{mvebu-common => mach-mvebu}/mbus.c (99%)
 rename arch/arm/{mvebu-common => mach-mvebu}/serdes/Makefile (100%)
 rename arch/arm/{mvebu-common => mach-mvebu}/serdes/board_env_spec.h (100%)
 rename arch/arm/{mvebu-common => mach-mvebu}/serdes/high_speed_env_lib.c (100%)
 rename arch/arm/{mvebu-common => mach-mvebu}/serdes/high_speed_env_spec.c (100%)
 rename arch/arm/{mvebu-common => mach-mvebu}/serdes/high_speed_env_spec.h (100%)
 rename arch/arm/{cpu/armv7/armada-xp => mach-mvebu}/spl.c (100%)
 rename arch/arm/{mvebu-common => mach-mvebu}/timer.c (100%)
 rename arch/arm/{mvebu-common => mach-mvebu}/u-boot-spl.lds (100%)
 create mode 100644 board/Marvell/db-88f6820-gp/Kconfig
 create mode 100644 board/Marvell/db-88f6820-gp/Makefile
 create mode 100644 board/Marvell/db-88f6820-gp/binary.0
 create mode 100644 board/Marvell/db-88f6820-gp/db-88f6820-gp.c
 create mode 100644 board/Marvell/db-88f6820-gp/kwbimage.cfg
 create mode 100644 configs/db-88f6820-gp_defconfig
 create mode 100644 include/configs/db-88f6820-gp.h

Regards,
Luka

             reply	other threads:[~2015-05-05 12:50 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-05 12:50 Luka Perkov [this message]
2015-05-05 23:59 ` [U-Boot] Please pull u-boot-marvell master Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2015-11-29 21:20 Luka Perkov
2015-11-30 20:17 ` Tom Rini
2015-11-17 22:46 Luka Perkov
2015-11-18  0:50 ` Tom Rini
2015-10-21  0:29 Luka Perkov
2015-10-21 13:10 ` Tom Rini
2015-10-01  0:07 Luka Perkov
2015-10-03  0:35 ` Tom Rini
2015-08-17 16:56 Luka Perkov
2015-08-18  0:54 ` Tom Rini
2015-07-24  7:56 Luka Perkov
2015-07-25 19:50 ` Tom Rini
     [not found] <20150723063510.GA1896@localhost>
2015-07-23  7:29 ` Luka Perkov
2015-07-23  6:35 Luka Perkov
2015-07-10 12:59 Luka Perkov
2015-07-10 19:03 ` Tom Rini
2015-06-28 15:58 Luka Perkov
2015-06-29  0:36 ` Tom Rini
2015-06-14 15:59 Luka Perkov
2015-06-15 15:18 ` Tom Rini
2015-04-11  9:53 Luka Perkov
2015-04-11 11:27 ` Tom Rini
2015-03-05 21:14 Luka Perkov
2015-03-06 15:43 ` Tom Rini
2015-02-16 12:50 Luka Perkov
2015-02-16 17:41 ` Tom Rini
2015-02-06 16:35 Luka Perkov
2015-02-09 20:26 ` Tom Rini
2015-01-25 23:42 Luka Perkov
2015-01-27 11:51 ` 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=0000014d24203b64-d57338e6-d985-4e8f-a853-737fc50ca564-000000@email.amazonses.com \
    --to=luka.perkov@sartura.hr \
    --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.