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: Sun, 23 Sep 2018 18:58:25 +0200	[thread overview]
Message-ID: <11507af5-849c-e637-fc29-cb53f95d72e3@gmail.com> (raw)

Hi Tom,

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


The following changes since commit 9dc8d155d4e88563f572ee79aab758eb4272f3fd:

  Merge git://git.denx.de/u-boot-imx (2018-09-19 20:35:27 -0400)

are available in the Git repository at:

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

for you to fetch changes up to fdd1a9ff781cda82696f8971e540e475fd1e9933:

  mips: mt7628a.dtsi: Add SPI clock-frequency property (2018-09-23 14:27:51 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (5):
      MIPS: start.S: make boot config at offset 0x10 configurable
      MIPS: cache: reimplement dcache_[status, enable, disable]
      MIPS: cache: optimise changing of k0 CCA mode
      MIPS: cache: make index base address configurable
      MIPS: cache: remove config option CONFIG_SYS_MIPS_CACHE_MODE

Philippe Reynes (3):
      pinctrl: bcm6838: add pinctrl support
      dt: bcm6838: add pinctrl
      bcm968380gerg: enable pinctrl

Stefan Roese (6):
      mips: Add arch/mips/include/asm/atomic.h
      mips: Add basic MediaTek MT7620/88 support
      mips: Add LinkIt Smart 7688 support
      mips: Add Gardena Smart-Gateway board support
      mips: mt76xx: Add sysreset support
      mips: mt7628a.dtsi: Add SPI clock-frequency property

 README                                               |  19 -------
 arch/mips/Kconfig                                    |  52 ++++++++++++++++++
 arch/mips/Makefile                                   |   1 +
 arch/mips/cpu/start.S                                |  21 ++------
 arch/mips/dts/brcm,bcm6838.dtsi                      |  12 +++++
 arch/mips/dts/gardena-smart-gateway-mt7688.dts       |  54 +++++++++++++++++++
 arch/mips/dts/linkit-smart-7688.dts                  |  46 ++++++++++++++++
 arch/mips/dts/mt7628a.dtsi                           | 144 +++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/include/asm/atomic.h                       |  54 +++++++++++++++++++
 arch/mips/lib/cache.c                                |  20 +++++++
 arch/mips/lib/cache_init.S                           | 118 +++++++++++++---------------------------
 arch/mips/mach-mt7620/Kconfig                        | 135 ++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/mach-mt7620/Makefile                       |   8 +++
 arch/mips/mach-mt7620/cpu.c                          |  69 ++++++++++++++++++++++++
 arch/mips/mach-mt7620/ddr_calibrate.c                | 308 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/mach-mt7620/lowlevel_init.S                | 322 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/mach-mt7620/mt76xx.h                       |  32 +++++++++++
 board/gardena/smart-gateway-mt7688/Kconfig           |  12 +++++
 board/gardena/smart-gateway-mt7688/MAINTAINERS       |   8 +++
 board/gardena/smart-gateway-mt7688/Makefile          |   3 ++
 board/gardena/smart-gateway-mt7688/board.c           |  17 ++++++
 board/seeed/linkit-smart-7688/Kconfig                |  12 +++++
 board/seeed/linkit-smart-7688/MAINTAINERS            |   8 +++
 board/seeed/linkit-smart-7688/Makefile               |   3 ++
 board/seeed/linkit-smart-7688/board.c                |  26 +++++++++
 configs/bcm968380gerg_ram_defconfig                  |   1 +
 configs/gardena-smart-gateway-mt7688-ram_defconfig   |  55 +++++++++++++++++++
 configs/gardena-smart-gateway-mt7688_defconfig       |  58 ++++++++++++++++++++
 configs/linkit-smart-7688-ram_defconfig              |  51 ++++++++++++++++++
 configs/linkit-smart-7688_defconfig                  |  55 +++++++++++++++++++
 doc/device-tree-bindings/pinctrl/bcm6838-pinctrl.txt |  35 ++++++++++++
 drivers/pinctrl/broadcom/Kconfig                     |   8 +++
 drivers/pinctrl/broadcom/Makefile                    |   1 +
 drivers/pinctrl/broadcom/pinctrl-bcm6838.c           | 161 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 include/configs/gardena-smart-gateway-mt7688.h       |  55 +++++++++++++++++++
 include/configs/imgtec_xilfpga.h                     |   3 --
 include/configs/linkit-smart-7688.h                  |  51 ++++++++++++++++++
 include/configs/pic32mzdask.h                        |   3 --
 scripts/config_whitelist.txt                         |   2 -
 39 files changed, 1920 insertions(+), 123 deletions(-)
 create mode 100644 arch/mips/dts/gardena-smart-gateway-mt7688.dts
 create mode 100644 arch/mips/dts/linkit-smart-7688.dts
 create mode 100644 arch/mips/dts/mt7628a.dtsi
 create mode 100644 arch/mips/include/asm/atomic.h
 create mode 100644 arch/mips/mach-mt7620/Kconfig
 create mode 100644 arch/mips/mach-mt7620/Makefile
 create mode 100644 arch/mips/mach-mt7620/cpu.c
 create mode 100644 arch/mips/mach-mt7620/ddr_calibrate.c
 create mode 100644 arch/mips/mach-mt7620/lowlevel_init.S
 create mode 100644 arch/mips/mach-mt7620/mt76xx.h
 create mode 100644 board/gardena/smart-gateway-mt7688/Kconfig
 create mode 100644 board/gardena/smart-gateway-mt7688/MAINTAINERS
 create mode 100644 board/gardena/smart-gateway-mt7688/Makefile
 create mode 100644 board/gardena/smart-gateway-mt7688/board.c
 create mode 100644 board/seeed/linkit-smart-7688/Kconfig
 create mode 100644 board/seeed/linkit-smart-7688/MAINTAINERS
 create mode 100644 board/seeed/linkit-smart-7688/Makefile
 create mode 100644 board/seeed/linkit-smart-7688/board.c
 create mode 100644 configs/gardena-smart-gateway-mt7688-ram_defconfig
 create mode 100644 configs/gardena-smart-gateway-mt7688_defconfig
 create mode 100644 configs/linkit-smart-7688-ram_defconfig
 create mode 100644 configs/linkit-smart-7688_defconfig
 create mode 100644 doc/device-tree-bindings/pinctrl/bcm6838-pinctrl.txt
 create mode 100644 drivers/pinctrl/broadcom/pinctrl-bcm6838.c
 create mode 100644 include/configs/gardena-smart-gateway-mt7688.h
 create mode 100644 include/configs/linkit-smart-7688.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/20180923/ad9b1449/attachment.sig>

             reply	other threads:[~2018-09-23 16:58 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-23 16:58 Daniel Schwierzeck [this message]
2018-09-24 15:01 ` [U-Boot] [GIT PULL] u-boot-mips/master Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2018-08-08 15:31 Daniel Schwierzeck
2018-08-10  3:27 ` 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=11507af5-849c-e637-fc29-cb53f95d72e3@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.