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] [GIT PULL] u-boot-mips/master
Date: Wed, 8 Aug 2018 17:31:44 +0200	[thread overview]
Message-ID: <a7b4f945-137d-e5fe-017d-41782ffea02a@gmail.com> (raw)

Hi Tom,

I hope it's okay for post RC1, but I wanted to wait until you had the Kconfig sorting stuff merged.

Travis CI: https://travis-ci.org/danielschwierzeck/u-boot/builds/413538994


The following changes since commit b1aad8dbe28415695b290726199681ced969c118:

  zynqmp: Add avnet_ultra96_rev1_defconfig to the lits of boards (2018-08-07 11:36:39 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-mips.git master

for you to fetch changes up to 990cebf0a2c2e4dd9033c56acf7b1404a0c0f698:

  bcm968380gerg: add initial support (2018-08-08 13:38:17 +0200)

----------------------------------------------------------------
Philippe Reynes (3):
      bmips: ram: add an option to force the size of the ram
      bcm6838: add initial support
      bcm968380gerg: add initial support

Tom Rini (2):
      mips: dbau1x00: Remove this board
      mips: au1x00: Remove support for these SoCs

 arch/mips/Kconfig                            |   21 --
 arch/mips/Makefile                           |    1 -
 arch/mips/dts/brcm,bcm6838.dtsi              |   75 +++++
 arch/mips/dts/brcm,bcm968380gerg.dts         |   40 +++
 arch/mips/include/asm/addrspace.h            |    6 +-
 arch/mips/mach-au1x00/Makefile               |    6 -
 arch/mips/mach-au1x00/au1x00_eth.c           |  312 --------------------
 arch/mips/mach-au1x00/au1x00_ide.c           |   14 -
 arch/mips/mach-au1x00/au1x00_serial.c        |  130 ---------
 arch/mips/mach-au1x00/au1x00_usb_ohci.c      | 1609 --------------------------------------------------------------------------------------------------------
 arch/mips/mach-au1x00/au1x00_usb_ohci.h      |  416 ---------------------------
 arch/mips/mach-au1x00/include/mach/au1x00.h  | 1071 ---------------------------------------------------------------------
 arch/mips/mach-bmips/Kconfig                 |   25 ++
 board/broadcom/bcm968380gerg/Kconfig         |   12 +
 board/broadcom/bcm968380gerg/Makefile        |    3 +
 board/broadcom/bcm968380gerg/bcm968380gerg.c |    6 +
 board/broadcom/bcm968380gerg/board.c         |    6 +
 board/dbau1x00/Kconfig                       |   46 ---
 board/dbau1x00/MAINTAINERS                   |   10 -
 board/dbau1x00/Makefile                      |    7 -
 board/dbau1x00/README                        |   63 -----
 board/dbau1x00/dbau1x00.c                    |  118 --------
 board/dbau1x00/lowlevel_init.S               |  589 --------------------------------------
 board/pb1x00/Kconfig                         |   27 --
 board/pb1x00/MAINTAINERS                     |    6 -
 board/pb1x00/Makefile                        |    7 -
 board/pb1x00/README                          |   63 -----
 board/pb1x00/flash.c                         |   26 --
 board/pb1x00/lowlevel_init.S                 |  391 --------------------------
 board/pb1x00/pb1x00.c                        |  108 -------
 configs/bcm968380gerg_ram_defconfig          |   48 ++++
 configs/dbau1000_defconfig                   |   21 --
 configs/dbau1100_defconfig                   |   21 --
 configs/dbau1500_defconfig                   |   21 --
 configs/dbau1550_defconfig                   |   16 --
 configs/dbau1550_el_defconfig                |   17 --
 configs/pb1000_defconfig                     |   20 --
 drivers/cpu/bmips_cpu.c                      |   33 +++
 drivers/ram/bmips_ram.c                      |    8 +-
 drivers/serial/serial.c                      |    2 -
 drivers/usb/gadget/gadget_chips.h            |    8 -
 include/configs/bmips_bcm6838.h              |   24 ++
 include/configs/broadcom_bcm968380gerg.h     |    9 +
 include/configs/dbau1x00.h                   |  172 ------------
 include/configs/pb1x00.h                     |  138 ---------
 include/netdev.h                             |    1 -
 include/serial.h                             |    1 -
 47 files changed, 291 insertions(+), 5483 deletions(-)
 create mode 100644 arch/mips/dts/brcm,bcm6838.dtsi
 create mode 100644 arch/mips/dts/brcm,bcm968380gerg.dts
 delete mode 100644 arch/mips/mach-au1x00/Makefile
 delete mode 100644 arch/mips/mach-au1x00/au1x00_eth.c
 delete mode 100644 arch/mips/mach-au1x00/au1x00_ide.c
 delete mode 100644 arch/mips/mach-au1x00/au1x00_serial.c
 delete mode 100644 arch/mips/mach-au1x00/au1x00_usb_ohci.c
 delete mode 100644 arch/mips/mach-au1x00/au1x00_usb_ohci.h
 delete mode 100644 arch/mips/mach-au1x00/include/mach/au1x00.h
 create mode 100644 board/broadcom/bcm968380gerg/Kconfig
 create mode 100644 board/broadcom/bcm968380gerg/Makefile
 create mode 100644 board/broadcom/bcm968380gerg/bcm968380gerg.c
 create mode 100644 board/broadcom/bcm968380gerg/board.c
 delete mode 100644 board/dbau1x00/Kconfig
 delete mode 100644 board/dbau1x00/MAINTAINERS
 delete mode 100644 board/dbau1x00/Makefile
 delete mode 100644 board/dbau1x00/README
 delete mode 100644 board/dbau1x00/dbau1x00.c
 delete mode 100644 board/dbau1x00/lowlevel_init.S
 delete mode 100644 board/pb1x00/Kconfig
 delete mode 100644 board/pb1x00/MAINTAINERS
 delete mode 100644 board/pb1x00/Makefile
 delete mode 100644 board/pb1x00/README
 delete mode 100644 board/pb1x00/flash.c
 delete mode 100644 board/pb1x00/lowlevel_init.S
 delete mode 100644 board/pb1x00/pb1x00.c
 create mode 100644 configs/bcm968380gerg_ram_defconfig
 delete mode 100644 configs/dbau1000_defconfig
 delete mode 100644 configs/dbau1100_defconfig
 delete mode 100644 configs/dbau1500_defconfig
 delete mode 100644 configs/dbau1550_defconfig
 delete mode 100644 configs/dbau1550_el_defconfig
 delete mode 100644 configs/pb1000_defconfig
 create mode 100644 include/configs/bmips_bcm6838.h
 create mode 100644 include/configs/broadcom_bcm968380gerg.h
 delete mode 100644 include/configs/dbau1x00.h
 delete mode 100644 include/configs/pb1x00.h

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

             reply	other threads:[~2018-08-08 15:31 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-08 15:31 Daniel Schwierzeck [this message]
2018-08-10  3:27 ` [U-Boot] [GIT PULL] u-boot-mips/master Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2018-09-23 16:58 Daniel Schwierzeck
2018-09-24 15:01 ` Tom Rini
2017-11-28 21:13 Daniel Schwierzeck
2017-11-29  4:23 ` Tom Rini
2016-11-30 18:13 Daniel Schwierzeck
2016-11-30 19:01 ` Tom Rini
2016-11-30 19:21   ` Daniel Schwierzeck
2016-12-01  0:45 ` Tom Rini
2016-09-21 15:49 Daniel Schwierzeck
2016-09-22 15:35 ` Tom Rini
2016-06-10 10:52 Daniel Schwierzeck
2016-06-19 14:01 ` Tom Rini
2016-05-31  9:36 Daniel Schwierzeck
2016-05-31 14:50 ` Tom Rini
2016-05-26  0:13 Daniel Schwierzeck
2016-05-26 15:49 ` Tom Rini
2016-04-19 11:24 Daniel Schwierzeck
2016-04-21 11:25 ` Tom Rini
2016-03-09 11:01 Daniel Schwierzeck
2016-03-10 16:01 ` Tom Rini
2016-01-16 20:45 Daniel Schwierzeck
2016-01-17  3:00 ` Tom Rini
2015-11-06 13:10 Daniel Schwierzeck
2015-11-07 13:18 ` Tom Rini
2015-08-24 11:24 Daniel Schwierzeck
2015-08-24 13:43 ` Tom Rini
2015-08-24 15:47   ` Daniel Schwierzeck
2015-07-02  9:34 Daniel Schwierzeck
2015-07-10 12:55 ` Tom Rini
2015-04-24 10:20 Daniel Schwierzeck
2015-04-28 14:51 ` Tom Rini
2015-01-30 14:42 Daniel Schwierzeck
2015-02-02 18:57 ` Tom Rini
2015-01-21 13:14 Daniel Schwierzeck
2015-01-23 21:56 ` Tom Rini
2014-11-27 15:25 Daniel Schwierzeck
2014-11-27 18:09 ` Tom Rini
2014-10-31 18:50 Daniel Schwierzeck
2014-11-04  2:33 ` Tom Rini
2014-04-20 11:28 Daniel Schwierzeck
2014-04-21  8:37 ` Masahiro Yamada
2014-04-21  9:10   ` Daniel Schwierzeck
2014-04-21  9:46     ` Masahiro Yamada
2014-04-23 15:15 ` Tom Rini
2014-03-04 22:49 Daniel Schwierzeck
2014-03-05  0:03 ` Tom Rini
2013-11-26 23:56 Daniel Schwierzeck
2013-12-02 16:12 ` Tom Rini
2013-11-15 23:03 Daniel Schwierzeck
2013-11-17 19:17 ` Tom Rini
2013-11-09 20:53 Daniel Schwierzeck
2013-11-11 17:30 ` Tom Rini
2013-11-11 19:00   ` Daniel Schwierzeck
2013-11-11 19:11     ` Tom Rini
2013-11-11 19:13 ` Tom Rini
2013-08-13 10:42 Daniel Schwierzeck
2013-08-13 13:13 ` Tom Rini
2013-07-23 22:42 Daniel Schwierzeck
2013-07-25 13:06 ` Tom Rini
2013-01-31  0:21 Daniel Schwierzeck
2013-01-31  0:30 ` Tom Rini
2013-01-16 10:11 Daniel Schwierzeck
2013-01-21 21:08 ` Tom Rini
2012-12-12 13:00 Daniel Schwierzeck
2012-12-12 13:52 ` Tom Rini
2012-12-08 20:57 Daniel Schwierzeck
2012-12-10 15:07 ` Tom Rini
2012-11-27 23:19 Daniel Schwierzeck
2012-11-28 13:04 ` Tom Rini
2012-10-16 22:01 Daniel Schwierzeck
2012-10-17 21:10 ` Tom Rini
2012-06-03 22:04 Daniel Schwierzeck
2012-06-07 21:39 ` Wolfgang Denk

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=a7b4f945-137d-e5fe-017d-41782ffea02a@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.