public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Pull request: u-boot-mips/master
@ 2012-09-12 23:17 Daniel Schwierzeck
  2012-09-12 23:43 ` Tom Rini
  2012-09-14  2:04 ` Daniel Schwierzeck
  0 siblings, 2 replies; 13+ messages in thread
From: Daniel Schwierzeck @ 2012-09-12 23:17 UTC (permalink / raw)
  To: u-boot

Hi Tom,

The following changes since commit e66443fdb5355e68cfdbbdd37248c4b7eb4968f5:

  Makefile: fix HAVE_VENDOR_COMMON_LIB (2012-08-17 18:07:12 +0200)

are available in the git repository at:

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

for you to fetch changes up to b1418d90e7adf236433b1e2bf88ee05e7ad73d9d:

  MIPS: add board qemu-mips64 support (2012-09-13 00:50:06 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (3):
      MIPS: factor out endianess flag handling to arch config.mk
      MIPS: move CONFIG_STANDALONE_LOAD_ADDR to CPU config makefiles
      MIPS: add support for qemu for little endian MIPS32 CPUs

Marek Vasut (4):
      dm: mips: Fix lb60 WDT control
      dm: mips: Fix lb60 timer code
      dm: mips: Fix warnings in lb60 board
      dm: mips: Import libgcc components from Linux

Zhi-zhou Zhang (4):
      MIPS: don't use camel-case style
      MIPS: add support for 64 bit addressing
      MIPS: qemu_mips: move CONFIG_SYS_TEXT_BASE to qemu-mips.h
      MIPS: add board qemu-mips64 support

 arch/mips/config.mk                 |  20 ++-
 arch/mips/cpu/mips32/cache.S        |  10 +-
 arch/mips/cpu/mips32/config.mk      |  19 +--
 arch/mips/cpu/mips32/cpu.c          |   8 +-
 arch/mips/cpu/mips64/Makefile       |  45 +++++++
 arch/mips/cpu/mips64/cache.S        | 229 ++++++++++++++++++++++++++++++++
 arch/mips/cpu/mips64/config.mk      |  40 ++++++
 arch/mips/cpu/mips64/cpu.c          | 111 ++++++++++++++++
 arch/mips/cpu/mips64/interrupts.c   |  34 +++++
 arch/mips/cpu/mips64/start.S        | 256 ++++++++++++++++++++++++++++++++++++
 arch/mips/cpu/mips64/time.c         |  87 ++++++++++++
 arch/mips/cpu/xburst/config.mk      |   5 +-
 arch/mips/cpu/xburst/cpu.c          |  14 +-
 arch/mips/cpu/xburst/start.S        |   4 +-
 arch/mips/cpu/xburst/timer.c        |  12 +-
 arch/mips/include/asm/addrspace.h   |   2 +-
 arch/mips/include/asm/asm.h         |   2 +-
 arch/mips/include/asm/cacheops.h    |  82 ++++++------
 arch/mips/include/asm/io.h          |  16 +++
 arch/mips/include/asm/posix_types.h |   6 +
 arch/mips/lib/Makefile              |  20 +++
 arch/mips/lib/ashldi3.c             |  25 ++++
 arch/mips/lib/ashrdi3.c             |  27 ++++
 arch/mips/lib/libgcc.h              |  25 ++++
 arch/mips/lib/lshrdi3.c             |  25 ++++
 board/qemu-mips/config.mk           |  10 --
 board/qemu-mips/u-boot.lds          |   8 ++
 board/qi/qi_lb60/qi_lb60.c          |   4 +-
 boards.cfg                          |   5 +-
 examples/standalone/mips64.lds      |  59 +++++++++
 include/configs/qemu-mips.h         |   8 +-
 include/configs/qemu-mips64.h       | 175 ++++++++++++++++++++++++
 include/configs/qi_lb60.h           |   1 +
 33 files changed, 1291 insertions(+), 103 deletions(-)
 create mode 100644 arch/mips/cpu/mips64/Makefile
 create mode 100644 arch/mips/cpu/mips64/cache.S
 create mode 100644 arch/mips/cpu/mips64/config.mk
 create mode 100644 arch/mips/cpu/mips64/cpu.c
 create mode 100644 arch/mips/cpu/mips64/interrupts.c
 create mode 100644 arch/mips/cpu/mips64/start.S
 create mode 100644 arch/mips/cpu/mips64/time.c
 create mode 100644 arch/mips/lib/ashldi3.c
 create mode 100644 arch/mips/lib/ashrdi3.c
 create mode 100644 arch/mips/lib/libgcc.h
 create mode 100644 arch/mips/lib/lshrdi3.c
 delete mode 100644 board/qemu-mips/config.mk
 create mode 100644 examples/standalone/mips64.lds
 create mode 100644 include/configs/qemu-mips64.h

-- 
Best regards,
Daniel

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [U-Boot] Pull request: u-boot-mips/master
@ 2017-05-10 19:46 Daniel Schwierzeck
  2017-05-11  0:13 ` Tom Rini
  0 siblings, 1 reply; 13+ messages in thread
From: Daniel Schwierzeck @ 2017-05-10 19:46 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the initial infrastructure and support for Broadcom MIPS SoC's.

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



The following changes since commit dd9999d5f4d3a0354c959fa3bccc0957a1164bf5:

  Merge git://git.denx.de/u-boot-dm (2017-05-09 16:11:36 -0400)

are available in the git repository at:

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

for you to fetch changes up to a41481bfcba89d1d8dd8b51faa7775cd3ff1c15f:

  mips: bmips: enable bcm6328-power-domain driver for BCM6328 and BCM63268 boards (2017-05-10 16:16:09 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (1):
      MIPS: call debug_uart_init right before board_init_f

Álvaro Fernández Rojas (48):
      u-boot.elf: remove hard-coded arm64 flags
      u-boot.elf: allow overriding entry symbol
      MIPS: add support for generating u-boot.elf
      u-boot.elf: add quiet_cmd_u-boot-elf and cmd_u-boot-elf
      MIPS: QCA AP121: remove debug_uart_init call
      MIPS: QCA AP143: remove debug_uart_init call
      MIPS: tl-wdr4300: remove debug_uart_init call
      cmd: cpu: fix NULL cpu feature prints
      sysreset: add syscon-reboot driver
      MIPS: allow using generic sysreset drivers
      serial: add serial driver for BCM6345
      cmd: cpu: refactor to ensure devices are probed and improve code style
      cpu: add CPU driver for Broadcom MIPS SoCs
      ram: add RAM driver for Broadcom MIPS SoCs
      MIPS: add initial infrastructure for Broadcom MIPS SoCs
      MIPS: add support for Broadcom MIPS BCM6358 SoC family
      MIPS: add BMIPS Huawei HG556a board
      MIPS: add support for Broadcom MIPS BCM6328 SoC family
      MIPS: add BMIPS Comtrend AR-5387un board
      MIPS: add support for Broadcom MIPS BCM63268 SoC family
      MIPS: add BMIPS Comtrend VR-3032u board
      dm: gpio: add BCM6345 gpio driver
      mips: bmips: add bcm6345-gpio driver support for BCM6358
      mips: bmips: add bcm6345-gpio driver support for BCM6328
      mips: bmips: add bcm6345-gpio driver support for BCM63268
      mips: bmips: add Huawei HG556a gpio-leds
      dm: led: add BCM6328 led driver
      mips: bmips: add bcm6328-led driver support for BCM6328
      mips: bmips: add bcm6328-led driver support for BCM63268
      mips: bmips: add Comtrend AR-5387un bcm6328-leds
      mips: bmips: add Comtrend VR-3032u bcm6328-leds
      dm: led: add BCM6358 led driver
      mips: bmips: add bcm6358-led driver support for BCM6358
      mips: bmips: add NeufBox 4 (Sercomm) board
      dm: clk: add BCM6345 clock driver
      mips: bmips: add bcm6345-clk driver support for BCM6358
      mips: bmips: add bcm6345-clk driver support for BCM6328
      mips: bmips: add bcm6345-clk driver support for BCM63268
      mips: bmips: enable bcm6345-clk driver for all BMIPS boards
      dm: reset: add BCM6345 reset driver
      mips: bmips: add bcm6345-rst driver support for BCM6358
      mips: bmips: add bcm6345-rst driver support for BCM6328
      mips: bmips: add bcm6345-rst driver support for BCM63268
      mips: bmips: enable bcm6345-reset driver for all BMIPS boards
      dm: power: domain: add BCM6328 power domain driver
      mips: bmips: add bcm6328-power-domain driver support for BCM6328
      mips: bmips: add bcm6328-power-domain driver support for BCM63268
      mips: bmips: enable bcm6328-power-domain driver for BCM6328 and BCM63268 boards

 Makefile                                                 |  23 +++---
 arch/arm/config.mk                                       |   6 ++
 arch/mips/Kconfig                                        |  10 +++
 arch/mips/Makefile                                       |   1 +
 arch/mips/config.mk                                      |   2 +
 arch/mips/cpu/cpu.c                                      |   2 +
 arch/mips/cpu/start.S                                    |  19 +++++
 arch/mips/dts/Makefile                                   |   3 +
 arch/mips/dts/brcm,bcm63268.dtsi                         | 143 +++++++++++++++++++++++++++++++++++
 arch/mips/dts/brcm,bcm6328.dtsi                          | 127 +++++++++++++++++++++++++++++++
 arch/mips/dts/brcm,bcm6358.dtsi                          | 140 ++++++++++++++++++++++++++++++++++
 arch/mips/dts/comtrend,ar-5387un.dts                     |  57 ++++++++++++++
 arch/mips/dts/comtrend,vr-3032u.dts                      |  70 +++++++++++++++++
 arch/mips/dts/huawei,hg556a.dts                          | 104 +++++++++++++++++++++++++
 arch/mips/dts/sfr,nb4-ser.dts                            |  93 +++++++++++++++++++++++
 arch/mips/mach-bmips/Kconfig                             |  88 ++++++++++++++++++++++
 arch/mips/mach-bmips/Makefile                            |   5 ++
 arch/mips/mach-bmips/dram.c                              |  37 +++++++++
 arch/mips/mach-bmips/include/ioremap.h                   |  45 +++++++++++
 board/comtrend/ar5387un/Kconfig                          |  12 +++
 board/comtrend/ar5387un/MAINTAINERS                      |   6 ++
 board/comtrend/ar5387un/Makefile                         |   5 ++
 board/comtrend/ar5387un/ar-5387un.c                      |   7 ++
 board/comtrend/vr3032u/Kconfig                           |  12 +++
 board/comtrend/vr3032u/MAINTAINERS                       |   6 ++
 board/comtrend/vr3032u/Makefile                          |   5 ++
 board/comtrend/vr3032u/vr-3032u.c                        |   7 ++
 board/huawei/hg556a/Kconfig                              |  12 +++
 board/huawei/hg556a/MAINTAINERS                          |   6 ++
 board/huawei/hg556a/Makefile                             |   5 ++
 board/huawei/hg556a/hg556a.c                             |   7 ++
 board/qca/ap121/ap121.c                                  |   3 -
 board/qca/ap143/ap143.c                                  |   3 -
 board/sfr/nb4_ser/Kconfig                                |  12 +++
 board/sfr/nb4_ser/MAINTAINERS                            |   6 ++
 board/sfr/nb4_ser/Makefile                               |   5 ++
 board/sfr/nb4_ser/nb4-ser.c                              |   7 ++
 board/tplink/wdr4300/wdr4300.c                           |  18 ++++-
 cmd/cpu.c                                                |  31 ++++----
 configs/comtrend_ar5387un_ram_defconfig                  |  54 +++++++++++++
 configs/comtrend_vr3032u_ram_defconfig                   |  54 +++++++++++++
 configs/huawei_hg556a_ram_defconfig                      |  55 ++++++++++++++
 configs/sfr_nb4-ser_ram_defconfig                        |  56 ++++++++++++++
 doc/device-tree-bindings/leds/leds-bcm6328.txt           | 106 ++++++++++++++++++++++++++
 doc/device-tree-bindings/leds/leds-bcm6358.txt           | 141 ++++++++++++++++++++++++++++++++++
 drivers/clk/Kconfig                                      |   8 ++
 drivers/clk/Makefile                                     |   1 +
 drivers/clk/clk_bcm6345.c                                |  78 +++++++++++++++++++
 drivers/cpu/Makefile                                     |   2 +
 drivers/cpu/bmips_cpu.c                                  | 310 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/gpio/Kconfig                                     |   6 ++
 drivers/gpio/Makefile                                    |   1 +
 drivers/gpio/bcm6345_gpio.c                              | 125 ++++++++++++++++++++++++++++++
 drivers/led/Kconfig                                      |  19 +++++
 drivers/led/Makefile                                     |   2 +
 drivers/led/led_bcm6328.c                                | 262 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/led/led_bcm6358.c                                | 227 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/power/domain/Kconfig                             |   7 ++
 drivers/power/domain/Makefile                            |   1 +
 drivers/power/domain/bcm6328-power-domain.c              |  83 ++++++++++++++++++++
 drivers/ram/Makefile                                     |   1 +
 drivers/ram/bmips_ram.c                                  | 126 +++++++++++++++++++++++++++++++
 drivers/reset/Kconfig                                    |   6 ++
 drivers/reset/Makefile                                   |   1 +
 drivers/reset/reset-bcm6345.c                            |  89 ++++++++++++++++++++++
 drivers/serial/Kconfig                                   |  14 ++++
 drivers/serial/Makefile                                  |   1 +
 drivers/serial/serial_bcm6345.c                          | 300 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/sysreset/Kconfig                                 |   8 ++
 drivers/sysreset/Makefile                                |   1 +
 drivers/sysreset/sysreset_syscon.c                       |  78 +++++++++++++++++++
 include/configs/bmips_bcm63268.h                         |  25 ++++++
 include/configs/bmips_bcm6328.h                          |  25 ++++++
 include/configs/bmips_bcm6358.h                          |  30 ++++++++
 include/configs/bmips_common.h                           |  23 ++++++
 include/configs/comtrend_ar5387un.h                      |  17 +++++
 include/configs/comtrend_vr3032u.h                       |  17 +++++
 include/configs/huawei_hg556a.h                          |  20 +++++
 include/configs/sfr_nb4_ser.h                            |  20 +++++
 include/dt-bindings/clock/bcm63268-clock.h               |  52 +++++++++++++
 include/dt-bindings/clock/bcm6328-clock.h                |  25 ++++++
 include/dt-bindings/clock/bcm6358-clock.h                |  24 ++++++
 include/dt-bindings/power-domain/bcm63268-power-domain.h |  25 ++++++
 include/dt-bindings/power-domain/bcm6328-power-domain.h  |  21 ++++++
 include/dt-bindings/reset/bcm63268-reset.h               |  32 ++++++++
 include/dt-bindings/reset/bcm6328-reset.h                |  24 ++++++
 include/dt-bindings/reset/bcm6358-reset.h                |  21 ++++++
 87 files changed, 3737 insertions(+), 37 deletions(-)
 create mode 100644 arch/mips/dts/brcm,bcm63268.dtsi
 create mode 100644 arch/mips/dts/brcm,bcm6328.dtsi
 create mode 100644 arch/mips/dts/brcm,bcm6358.dtsi
 create mode 100644 arch/mips/dts/comtrend,ar-5387un.dts
 create mode 100644 arch/mips/dts/comtrend,vr-3032u.dts
 create mode 100644 arch/mips/dts/huawei,hg556a.dts
 create mode 100644 arch/mips/dts/sfr,nb4-ser.dts
 create mode 100644 arch/mips/mach-bmips/Kconfig
 create mode 100644 arch/mips/mach-bmips/Makefile
 create mode 100644 arch/mips/mach-bmips/dram.c
 create mode 100644 arch/mips/mach-bmips/include/ioremap.h
 create mode 100644 board/comtrend/ar5387un/Kconfig
 create mode 100644 board/comtrend/ar5387un/MAINTAINERS
 create mode 100644 board/comtrend/ar5387un/Makefile
 create mode 100644 board/comtrend/ar5387un/ar-5387un.c
 create mode 100644 board/comtrend/vr3032u/Kconfig
 create mode 100644 board/comtrend/vr3032u/MAINTAINERS
 create mode 100644 board/comtrend/vr3032u/Makefile
 create mode 100644 board/comtrend/vr3032u/vr-3032u.c
 create mode 100644 board/huawei/hg556a/Kconfig
 create mode 100644 board/huawei/hg556a/MAINTAINERS
 create mode 100644 board/huawei/hg556a/Makefile
 create mode 100644 board/huawei/hg556a/hg556a.c
 create mode 100644 board/sfr/nb4_ser/Kconfig
 create mode 100644 board/sfr/nb4_ser/MAINTAINERS
 create mode 100644 board/sfr/nb4_ser/Makefile
 create mode 100644 board/sfr/nb4_ser/nb4-ser.c
 create mode 100644 configs/comtrend_ar5387un_ram_defconfig
 create mode 100644 configs/comtrend_vr3032u_ram_defconfig
 create mode 100644 configs/huawei_hg556a_ram_defconfig
 create mode 100644 configs/sfr_nb4-ser_ram_defconfig
 create mode 100644 doc/device-tree-bindings/leds/leds-bcm6328.txt
 create mode 100644 doc/device-tree-bindings/leds/leds-bcm6358.txt
 create mode 100644 drivers/clk/clk_bcm6345.c
 create mode 100644 drivers/cpu/bmips_cpu.c
 create mode 100644 drivers/gpio/bcm6345_gpio.c
 create mode 100644 drivers/led/led_bcm6328.c
 create mode 100644 drivers/led/led_bcm6358.c
 create mode 100644 drivers/power/domain/bcm6328-power-domain.c
 create mode 100644 drivers/ram/bmips_ram.c
 create mode 100644 drivers/reset/reset-bcm6345.c
 create mode 100644 drivers/serial/serial_bcm6345.c
 create mode 100644 drivers/sysreset/sysreset_syscon.c
 create mode 100644 include/configs/bmips_bcm63268.h
 create mode 100644 include/configs/bmips_bcm6328.h
 create mode 100644 include/configs/bmips_bcm6358.h
 create mode 100644 include/configs/bmips_common.h
 create mode 100644 include/configs/comtrend_ar5387un.h
 create mode 100644 include/configs/comtrend_vr3032u.h
 create mode 100644 include/configs/huawei_hg556a.h
 create mode 100644 include/configs/sfr_nb4_ser.h
 create mode 100644 include/dt-bindings/clock/bcm63268-clock.h
 create mode 100644 include/dt-bindings/clock/bcm6328-clock.h
 create mode 100644 include/dt-bindings/clock/bcm6358-clock.h
 create mode 100644 include/dt-bindings/power-domain/bcm63268-power-domain.h
 create mode 100644 include/dt-bindings/power-domain/bcm6328-power-domain.h
 create mode 100644 include/dt-bindings/reset/bcm63268-reset.h
 create mode 100644 include/dt-bindings/reset/bcm6328-reset.h
 create mode 100644 include/dt-bindings/reset/bcm6358-reset.h


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

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [U-Boot] Pull request: u-boot-mips/master
@ 2017-05-12 21:08 Daniel Schwierzeck
  2017-05-14  0:12 ` Tom Rini
  0 siblings, 1 reply; 13+ messages in thread
From: Daniel Schwierzeck @ 2017-05-12 21:08 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull some follow-up fixes for Broadcom MIPS and some minor updates for 
MIPS Boston board.

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


The following changes since commit 1f5541c8818d3ecd243f9bbf58db9ea5f55a3195:

  Merge git://git.denx.de/u-boot-rockchip (2017-05-10 17:40:11 -0400)

are available in the git repository at:

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

for you to fetch changes up to bc34986c86fc119813f406d95bb43e75e09b0df9:

  boston: Enable CONFIG_DISTRO_DEFAULTS in defconfigs (2017-05-12 13:29:50 +0200)

----------------------------------------------------------------
Paul Burton (5):
      MIPS: Make CM GCR base configurable
      boston: Move CM GCRs away from flash
      boston: Setup memory ranges in FDT provided to Linux
      boston: Bump CONFIG_SYS_BOOTM_LEN to 64MiB
      boston: Enable CONFIG_DISTRO_DEFAULTS in defconfigs

Álvaro Fernández Rojas (5):
      mips: bmips: bcm6358: fix brcm, bcm6358-mc size
      mips: bmips: bcm6328: fix brcm, bcm6328-mc size
      mips: bmips: bcm63268: fix brcm, bcm6328-mc size
      dm: ram: remove unneeded brcm,bcm63268-mc id
      mips: bmips: add missing SFR NeufBox 4 config

 arch/mips/Kconfig                | 21 ++++++++++++---------
 arch/mips/dts/brcm,bcm63268.dtsi |  2 +-
 arch/mips/dts/brcm,bcm6328.dtsi  |  2 +-
 arch/mips/dts/brcm,bcm6358.dtsi  |  2 +-
 arch/mips/lib/cache.c            |  2 ++
 arch/mips/mach-bmips/Kconfig     |  6 ++++++
 board/imgtec/boston/Makefile     |  1 +
 board/imgtec/boston/dt.c         | 27 +++++++++++++++++++++++++++
 configs/boston32r2_defconfig     |  7 +------
 configs/boston32r2el_defconfig   |  7 +------
 configs/boston64r2_defconfig     |  7 +------
 configs/boston64r2el_defconfig   |  7 +------
 drivers/ram/bmips_ram.c          |  6 +-----
 include/configs/boston.h         |  5 +++++
 14 files changed, 61 insertions(+), 41 deletions(-)
 create mode 100644 board/imgtec/boston/dt.c

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

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [U-Boot] Pull request: u-boot-mips/master
@ 2017-05-31 19:38 Daniel Schwierzeck
  2017-06-01 12:10 ` Tom Rini
  0 siblings, 1 reply; 13+ messages in thread
From: Daniel Schwierzeck @ 2017-05-31 19:38 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull another update for Broadcom MIPS. 
This contains new SoC's, new boards and new drivers and some bugfixes.

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


The following changes since commit ccbbada0a59fead35495409d0c2c7bcb22a40278:

  Merge branch 'master' of git://git.denx.de/u-boot-mmc (2017-05-30 14:07:23 -0400)

are available in the git repository at:

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

for you to fetch changes up to c93bb1d7bb24930cd3591b0a5a980f77fabd1c29:

  mips: bmips: fix BCM3380 periph clock frequency (2017-05-31 15:45:29 +0200)

----------------------------------------------------------------
Álvaro Fernández Rojas (25):
      dm: watchdog: add BCM6345 watchdog driver
      mips: bmips: add bcm6345-wdt driver support for BCM6358
      mips: bmips: add bcm6345-wdt driver support for BCM6328
      mips: bmips: add bcm6345-wdt driver support for BCM63268
      dm: sysreset: add watchdog-reboot driver
      mips: bmips: add wdt-reboot driver support for BCM6358
      mips: bmips: add wdt-reboot driver support for BCM6328
      mips: bmips: add wdt-reboot driver support for BCM63268
      dm: cpu: bmips: rename cpu_desc specific functions
      dm: cpu: bmips: add BCM6348 support
      dm: ram: bmips: split bcm6358_get_ram_size
      dm: ram: bmips: add BCM6338/BCM6348 support
      MIPS: add support for Broadcom MIPS BCM6348 SoC family
      MIPS: add BMIPS Comtrend CT-5361 board
      dm: cpu: bmips: add BCM3380 support
      MIPS: add support for Broadcom MIPS BCM3380 SoC family
      MIPS: add BMIPS Netgear CG3100D board
      dm: cpu: bmips: add BCM6338 support
      MIPS: add support for Broadcom MIPS BCM6338 SoC family
      MIPS: add BMIPS Sagem F at ST1704 board
      mips: bmips: add board descriptions
      dm: serial: bcm6345: fix uart stop bits
      dm: serial: bcm6345: fix baud rate clock calculation
      mips: bmips: extend baud rates support
      mips: bmips: fix BCM3380 periph clock frequency

 arch/mips/dts/Makefile                    |   3 ++
 arch/mips/dts/brcm,bcm3380.dtsi           | 154 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/dts/brcm,bcm63268.dtsi          |  11 +++++++
 arch/mips/dts/brcm,bcm6328.dtsi           |  11 +++++++
 arch/mips/dts/brcm,bcm6338.dtsi           | 118 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/dts/brcm,bcm6348.dtsi           | 127 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/dts/brcm,bcm6358.dtsi           |  11 +++++++
 arch/mips/dts/comtrend,ct-5361.dts        |  49 +++++++++++++++++++++++++++++++
 arch/mips/dts/netgear,cg3100d.dts         |  96 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/dts/sagem,f at st1704.dts          |  50 ++++++++++++++++++++++++++++++++
 arch/mips/mach-bmips/Kconfig              |  96 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/mach-bmips/include/ioremap.h    |   4 ++-
 board/comtrend/ct5361/Kconfig             |  12 ++++++++
 board/comtrend/ct5361/MAINTAINERS         |   6 ++++
 board/comtrend/ct5361/Makefile            |   5 ++++
 board/comtrend/ct5361/ct-5361.c           |   7 +++++
 board/netgear/cg3100d/Kconfig             |  12 ++++++++
 board/netgear/cg3100d/MAINTAINERS         |   6 ++++
 board/netgear/cg3100d/Makefile            |   5 ++++
 board/netgear/cg3100d/cg3100d.c           |   7 +++++
 board/sagem/f at st1704/Kconfig              |  12 ++++++++
 board/sagem/f at st1704/MAINTAINERS          |   6 ++++
 board/sagem/f at st1704/Makefile             |   5 ++++
 board/sagem/f at st1704/f at st1704.c           |   7 +++++
 configs/comtrend_ct5361_ram_defconfig     |  57 ++++++++++++++++++++++++++++++++++++
 configs/netgear_cg3100d_ram_defconfig     |  56 ++++++++++++++++++++++++++++++++++++
 configs/sagem_f at st1704_ram_defconfig      |  52 +++++++++++++++++++++++++++++++++
 drivers/cpu/bmips_cpu.c                   |  72 ++++++++++++++++++++++++++++++++++++++++++----
 drivers/ram/bmips_ram.c                   |  54 ++++++++++++++++++++++++++++-------
 drivers/serial/serial_bcm6345.c           |  10 ++++---
 drivers/sysreset/Kconfig                  |   6 ++++
 drivers/sysreset/Makefile                 |   1 +
 drivers/sysreset/sysreset_watchdog.c      |  60 ++++++++++++++++++++++++++++++++++++++
 drivers/watchdog/Kconfig                  |   8 ++++++
 drivers/watchdog/Makefile                 |   1 +
 drivers/watchdog/bcm6345_wdt.c            | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 include/configs/bmips_bcm3380.h           |  25 ++++++++++++++++
 include/configs/bmips_bcm6338.h           |  30 +++++++++++++++++++
 include/configs/bmips_bcm6348.h           |  30 +++++++++++++++++++
 include/configs/bmips_common.h            |   4 +++
 include/configs/comtrend_ct5361.h         |  20 +++++++++++++
 include/configs/netgear_cg3100d.h         |  15 ++++++++++
 include/configs/sagem_f at st1704.h          |  15 ++++++++++
 include/dt-bindings/clock/bcm3380-clock.h |  23 +++++++++++++++
 include/dt-bindings/clock/bcm6338-clock.h |  19 ++++++++++++
 include/dt-bindings/clock/bcm6348-clock.h |  22 ++++++++++++++
 include/dt-bindings/reset/bcm3380-reset.h |  16 +++++++++++
 include/dt-bindings/reset/bcm6338-reset.h |  22 ++++++++++++++
 include/dt-bindings/reset/bcm6348-reset.h |  22 ++++++++++++++
 49 files changed, 1550 insertions(+), 20 deletions(-)
 create mode 100644 arch/mips/dts/brcm,bcm3380.dtsi
 create mode 100644 arch/mips/dts/brcm,bcm6338.dtsi
 create mode 100644 arch/mips/dts/brcm,bcm6348.dtsi
 create mode 100644 arch/mips/dts/comtrend,ct-5361.dts
 create mode 100644 arch/mips/dts/netgear,cg3100d.dts
 create mode 100644 arch/mips/dts/sagem,f at st1704.dts
 create mode 100644 board/comtrend/ct5361/Kconfig
 create mode 100644 board/comtrend/ct5361/MAINTAINERS
 create mode 100644 board/comtrend/ct5361/Makefile
 create mode 100644 board/comtrend/ct5361/ct-5361.c
 create mode 100644 board/netgear/cg3100d/Kconfig
 create mode 100644 board/netgear/cg3100d/MAINTAINERS
 create mode 100644 board/netgear/cg3100d/Makefile
 create mode 100644 board/netgear/cg3100d/cg3100d.c
 create mode 100644 board/sagem/f at st1704/Kconfig
 create mode 100644 board/sagem/f at st1704/MAINTAINERS
 create mode 100644 board/sagem/f at st1704/Makefile
 create mode 100644 board/sagem/f at st1704/f at st1704.c
 create mode 100644 configs/comtrend_ct5361_ram_defconfig
 create mode 100644 configs/netgear_cg3100d_ram_defconfig
 create mode 100644 configs/sagem_f at st1704_ram_defconfig
 create mode 100644 drivers/sysreset/sysreset_watchdog.c
 create mode 100644 drivers/watchdog/bcm6345_wdt.c
 create mode 100644 include/configs/bmips_bcm3380.h
 create mode 100644 include/configs/bmips_bcm6338.h
 create mode 100644 include/configs/bmips_bcm6348.h
 create mode 100644 include/configs/comtrend_ct5361.h
 create mode 100644 include/configs/netgear_cg3100d.h
 create mode 100644 include/configs/sagem_f at st1704.h
 create mode 100644 include/dt-bindings/clock/bcm3380-clock.h
 create mode 100644 include/dt-bindings/clock/bcm6338-clock.h
 create mode 100644 include/dt-bindings/clock/bcm6348-clock.h
 create mode 100644 include/dt-bindings/reset/bcm3380-reset.h
 create mode 100644 include/dt-bindings/reset/bcm6338-reset.h
 create mode 100644 include/dt-bindings/reset/bcm6348-reset.h


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

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2017-06-01 12:10 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-12 23:17 [U-Boot] Pull request: u-boot-mips/master Daniel Schwierzeck
2012-09-12 23:43 ` Tom Rini
2012-09-13 13:38   ` Daniel Schwierzeck
2012-09-13 17:03     ` Tom Rini
2012-09-14  2:03       ` Daniel Schwierzeck
2012-09-14  2:04 ` Daniel Schwierzeck
2012-09-18 14:50   ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2017-05-10 19:46 Daniel Schwierzeck
2017-05-11  0:13 ` Tom Rini
2017-05-12 21:08 Daniel Schwierzeck
2017-05-14  0:12 ` Tom Rini
2017-05-31 19:38 Daniel Schwierzeck
2017-06-01 12:10 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox