All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PULL] u-boot-mips
Date: Sat,  4 May 2019 15:26:18 +0200	[thread overview]
Message-ID: <20190504132618.26753-1-daniel.schwierzeck@gmail.com> (raw)

Hi Tom,

please pull MIPS updates for 2019.07

https://travis-ci.org/danielschwierzeck/u-boot/builds/527853668


The following changes since commit b4ee6daad7a2604ca9466b2ba48de86cc27d381f:

  Merge tag 'u-boot-imx-20190426' of git://git.denx.de/u-boot-imx (2019-05-01 07:25:51 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-mips.git tags/mips-pull-2019-05-03

for you to fetch changes up to 5c629b1b69f780540e6e3bcc57d29438749f97c5:

  net: mscc: ocelot: Update DTS for Luton pcb90 (2019-05-03 16:46:36 +0200)

----------------------------------------------------------------
- mscc: small fixes, enhance network support for Serval, Luton amd
Ocelot
- mt7620: rename arch to more generic name mtmips
- mips: pass initrd addresses via DT as physical addresses

----------------------------------------------------------------
Horatiu Vultur (13):
      mips: mscc: serval: Fix reset
      board: mscc: serval: Fix board detect
      net: Add MSCC Serval network driver.
      board: mscc: serval: Update MSCC Serval boards
      net: mscc: serval: Add ethernet nodes for Serval
      configs: mscc_serval: Add network support
      arch: mips: Update initrd_start and initrd_end
      net: mscc: ocelot: Update network driver for pcb120
      board: mscc: ocelot: Update MSCC Ocelot board.
      net: mscc: ocelot: Update DTS for Ocelot pcb120.
      net: mscc: luton: Update network driver for pcb90
      board: mscc: luton: Update MSCC Luton board
      net: mscc: ocelot: Update DTS for Luton pcb90

Robert P. J. Day (1):
      MSCC: delete obsolete reference to MSCC_BITBANG_SPI_GPIO

Weijie Gao (1):
      mips: rename mach-mt7620 to mach-mtmips

 MAINTAINERS                                        |   1 +
 arch/mips/Kconfig                                  |   6 +-
 arch/mips/Makefile                                 |   2 +-
 arch/mips/dts/Makefile                             |   2 +-
 arch/mips/dts/luton_pcb090.dts                     | 228 +++++--
 arch/mips/dts/luton_pcb091.dts                     | 132 ++--
 arch/mips/dts/mscc,luton.dtsi                      | 126 +---
 arch/mips/dts/mscc,ocelot.dtsi                     | 109 ++--
 arch/mips/dts/mscc,serval.dtsi                     |  58 ++
 arch/mips/dts/ocelot_pcb120.dts                    |  75 +++
 arch/mips/dts/ocelot_pcb123.dts                    |  44 +-
 arch/mips/dts/serval_pcb105.dts                    |  44 ++
 arch/mips/dts/serval_pcb106.dts                    |  44 ++
 arch/mips/lib/bootm.c                              |   2 +
 arch/mips/mach-mscc/Kconfig                        |   1 -
 arch/mips/mach-mscc/include/mach/ddr.h             |  55 +-
 .../include/mach/ocelot/ocelot_devcpu_gcb.h        |   1 +
 arch/mips/mach-mscc/reset.c                        |   2 +-
 arch/mips/{mach-mt7620 => mach-mtmips}/Kconfig     |  14 +-
 arch/mips/{mach-mt7620 => mach-mtmips}/Makefile    |   0
 arch/mips/{mach-mt7620 => mach-mtmips}/cpu.c       |   0
 .../{mach-mt7620 => mach-mtmips}/ddr_calibrate.c   |   0
 .../{mach-mt7620 => mach-mtmips}/lowlevel_init.S   |   0
 arch/mips/{mach-mt7620 => mach-mtmips}/mt76xx.h    |   0
 board/mscc/luton/luton.c                           |  13 +-
 board/mscc/ocelot/ocelot.c                         |  15 +
 board/mscc/serval/serval.c                         |  14 +-
 configs/gardena-smart-gateway-mt7688-ram_defconfig |   2 +-
 configs/gardena-smart-gateway-mt7688_defconfig     |   2 +-
 configs/linkit-smart-7688-ram_defconfig            |   2 +-
 configs/linkit-smart-7688_defconfig                |   2 +-
 configs/mscc_serval_defconfig                      |   6 +-
 drivers/gpio/Kconfig                               |   2 +-
 drivers/net/Kconfig                                |   2 +-
 drivers/net/mscc_eswitch/Kconfig                   |   7 +
 drivers/net/mscc_eswitch/Makefile                  |   5 +-
 drivers/net/mscc_eswitch/luton_switch.c            | 415 +++++++-----
 drivers/net/mscc_eswitch/ocelot_switch.c           | 434 ++++++++++---
 drivers/net/mscc_eswitch/serval_switch.c           | 703 +++++++++++++++++++++
 drivers/spi/Kconfig                                |   2 +-
 drivers/watchdog/Kconfig                           |   2 +-
 include/dt-bindings/mscc/luton_data.h              |  17 +
 include/dt-bindings/mscc/ocelot_data.h             |  19 +
 include/dt-bindings/mscc/serval_data.h             |  19 +
 44 files changed, 2043 insertions(+), 586 deletions(-)
 rename arch/mips/{mach-mt7620 => mach-mtmips}/Kconfig (93%)
 rename arch/mips/{mach-mt7620 => mach-mtmips}/Makefile (100%)
 rename arch/mips/{mach-mt7620 => mach-mtmips}/cpu.c (100%)
 rename arch/mips/{mach-mt7620 => mach-mtmips}/ddr_calibrate.c (100%)
 rename arch/mips/{mach-mt7620 => mach-mtmips}/lowlevel_init.S (100%)
 rename arch/mips/{mach-mt7620 => mach-mtmips}/mt76xx.h (100%)
 create mode 100644 drivers/net/mscc_eswitch/serval_switch.c
 create mode 100644 include/dt-bindings/mscc/luton_data.h
 create mode 100644 include/dt-bindings/mscc/ocelot_data.h
 create mode 100644 include/dt-bindings/mscc/serval_data.h

             reply	other threads:[~2019-05-04 13:26 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-04 13:26 Daniel Schwierzeck [this message]
2019-05-05 16:24 ` [U-Boot] [PULL] u-boot-mips Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2019-11-30 22:01 Daniel Schwierzeck
2019-12-03  3:10 ` Tom Rini
2019-10-25 22:30 Daniel Schwierzeck
2019-10-26 11:50 ` Tom Rini
2019-07-05 15:29 Daniel Schwierzeck
2019-07-08  8:37 ` Stefan Roese
2019-07-08 19:24 ` Tom Rini
2019-05-24 19:08 Daniel Schwierzeck
2019-05-26 10:49 ` Tom Rini
2019-04-12 20:32 Daniel Schwierzeck
2019-04-14  3:58 ` Tom Rini
2019-02-01 17:38 Daniel Schwierzeck
2019-02-03  1:10 ` Tom Rini
2019-01-23 21:51 Daniel Schwierzeck
2019-01-24  2:41 ` Tom Rini
2019-01-16 18:26 Daniel Schwierzeck
2019-01-18 13:39 ` 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=20190504132618.26753-1-daniel.schwierzeck@gmail.com \
    --to=daniel.schwierzeck@gmail.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.