[U-Boot] [GIT PULL] u-boot-mips/master
Daniel Schwierzeck
daniel.schwierzeck at gmail.com
Sun Sep 23 16:58:25 UTC 2018
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>
More information about the U-Boot
mailing list