All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2016-01-16 20:45 Daniel Schwierzeck
  2016-01-17  3:00 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2016-01-16 20:45 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the first bunch of MIPS updates.

There is a possible merge conflict in dts/Makefile due to my patch [1]
in this PR and Thomas' patch [2] waiting in u-boot-fdt tree.

[1] http://patchwork.ozlabs.org/patch/566695/
[2] http://patchwork.ozlabs.org/patch/563669/


The following changes since commit 782acf7b52db6bec1a796773e3033b4afcd6c9e2:

  Merge git://git.denx.de/u-boot-rockchip (2016-01-15 08:11:15 -0500)

are available in the git repository at:

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

for you to fetch changes up to 0e0efb40b874633360967f532eb1ed59ad02adbe:

  MIPS: implement bit manipulating I/O accessors (2016-01-16 21:06:46 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (16):
      MIPS: fix annotation of _start and relocate_code
      MIPS: create .text sub-sections for assembler functions
      MIPS: do not build position-independent executables for SPL
      MIPS: add initial infrastructure for device-tree files
      MIPS: Kconfig: refactor machine setup
      MIPS: au1x00: move SoC header files to arch/mips/mach-au1x00/include/mach/
      MIPS: Kconfig: optimize gcc -march and -mtune setup
      MIPS: malta: do not pull in target header files in config.h
      MIPS: malta: fix IO accessor call
      MIPS: vct: fix I/O accessor calls
      MIPS: kconfig: add option for MIPS_L1_CACHE_SHIFT
      net: pcnet: refactor mapping of virtual addresses to physical ones
      MIPS: sync I/O related header files with linux-4.4
      MIPS: sync processor and register definitions with linux-4.4
      MIPS: fix SPDX license identifier in remaining arch header files
      MIPS: implement bit manipulating I/O accessors

Purna Chandra Mandal (1):
      MIPS: add asm/gpio.h to fix compilation error with CONFIG_CMD_GPIO.

 arch/Kconfig                                                 |    1 +
 arch/mips/Kconfig                                            |   33 ++-
 arch/mips/Makefile                                           |   23 +-
 arch/mips/config.mk                                          |   25 +-
 arch/mips/cpu/start.S                                        |   12 +-
 arch/mips/dts/.gitignore                                     |    1 +
 arch/mips/dts/Makefile                                       |   16 ++
 arch/mips/dts/include/dt-bindings                            |    1 +
 arch/mips/dts/skeleton.dtsi                                  |   23 ++
 arch/mips/include/asm/addrspace.h                            |   10 +-
 arch/mips/include/asm/asm.h                                  |  126 +++++-----
 arch/mips/include/asm/bitops.h                               |    6 +-
 arch/mips/include/asm/byteorder.h                            |    6 +-
 arch/mips/include/asm/cache.h                                |   14 +-
 arch/mips/include/asm/cachectl.h                             |    6 +-
 arch/mips/include/asm/cacheops.h                             |    6 +-
 arch/mips/include/asm/const.h                                |   31 +++
 arch/mips/include/asm/cpu-features.h                         |   30 +++
 arch/mips/include/asm/gpio.h                                 |    1 +
 arch/mips/include/asm/io.h                                   |  814
+++++++++++++++++++++++++++++++++----------------------------
 arch/mips/include/asm/isadep.h                               |    6 +-
 arch/mips/include/asm/mach-generic/cpu-feature-overrides.h   |   11 +
 arch/mips/include/asm/mach-generic/ioremap.h                 |   32 +++
 arch/mips/include/asm/mach-generic/mangle-port.h             |   50 ++++
 arch/mips/include/asm/mach-generic/spaces.h                  |  102 ++++++++
 arch/mips/include/asm/mipsregs.h                             | 1495
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------
 arch/mips/include/asm/pgtable-bits.h                         |  283
++++++++++++++++++++++
 arch/mips/include/asm/posix_types.h                          |    9 +-
 arch/mips/include/asm/processor.h                            |    6 +-
 arch/mips/include/asm/ptrace.h                               |   99 +++++---
 arch/mips/include/asm/reboot.h                               |    6 +-
 arch/mips/include/asm/reg.h                                  |    6 +-
 arch/mips/include/asm/regdef.h                               |   12 +-
 arch/mips/include/asm/sgidefs.h                              |    6 +-
 arch/mips/include/asm/string.h                               |    6 +-
 arch/mips/include/asm/system.h                               |    6 +-
 arch/mips/include/asm/types.h                                |    6 +-
 arch/mips/include/asm/unaligned.h                            |    6 +-
 arch/mips/lib/cache.c                                        |    4 +-
 arch/mips/lib/cache_init.S                                   |   16 +-
 arch/mips/mach-au1x00/au1x00_eth.c                           |    2 +-
 arch/mips/mach-au1x00/au1x00_serial.c                        |    2 +-
 arch/mips/mach-au1x00/au1x00_usb_ohci.c                      |    2 +-
 arch/mips/mach-au1x00/config.mk                              |    8 -
 arch/mips/{include/asm => mach-au1x00/include/mach}/au1x00.h |    0
 board/dbau1x00/dbau1x00.c                                    |    2 +-
 board/dbau1x00/lowlevel_init.S                               |    2 +-
 board/imgtec/malta/malta.c                                   |    3 +-
 board/micronas/vct/vct.h                                     |    6 +-
 board/pb1x00/lowlevel_init.S                                 |    2 +-
 board/pb1x00/pb1x00.c                                        |    2 +-
 drivers/net/pcnet.c                                          |   28 ++-
 dts/Makefile                                                 |    2 +-
 include/configs/malta.h                                      |    9 +-
 54 files changed, 2396 insertions(+), 1026 deletions(-)
 create mode 100644 arch/mips/dts/.gitignore
 create mode 100644 arch/mips/dts/Makefile
 create mode 120000 arch/mips/dts/include/dt-bindings
 create mode 100644 arch/mips/dts/skeleton.dtsi
 create mode 100644 arch/mips/include/asm/const.h
 create mode 100644 arch/mips/include/asm/cpu-features.h
 create mode 100644 arch/mips/include/asm/gpio.h
 create mode 100644 arch/mips/include/asm/mach-generic/cpu-feature-overrides.h
 create mode 100644 arch/mips/include/asm/mach-generic/ioremap.h
 create mode 100644 arch/mips/include/asm/mach-generic/mangle-port.h
 create mode 100644 arch/mips/include/asm/mach-generic/spaces.h
 create mode 100644 arch/mips/include/asm/pgtable-bits.h
 delete mode 100644 arch/mips/mach-au1x00/config.mk
 rename arch/mips/{include/asm => mach-au1x00/include/mach}/au1x00.h (100%)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2016-01-16 20:45 [U-Boot] [GIT PULL] u-boot-mips/master Daniel Schwierzeck
@ 2016-01-17  3:00 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2016-01-17  3:00 UTC (permalink / raw)
  To: u-boot

On Sat, Jan 16, 2016 at 09:45:19PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull the first bunch of MIPS updates.
> 
> There is a possible merge conflict in dts/Makefile due to my patch [1]
> in this PR and Thomas' patch [2] waiting in u-boot-fdt tree.
> 
> [1] http://patchwork.ozlabs.org/patch/566695/
> [2] http://patchwork.ozlabs.org/patch/563669/
> 
> 
> The following changes since commit 782acf7b52db6bec1a796773e3033b4afcd6c9e2:
> 
>   Merge git://git.denx.de/u-boot-rockchip (2016-01-15 08:11:15 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 0e0efb40b874633360967f532eb1ed59ad02adbe:
> 
>   MIPS: implement bit manipulating I/O accessors (2016-01-16 21:06:46 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160116/b478647f/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2018-09-23 16:58 Daniel Schwierzeck
@ 2018-09-24 15:01 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2018-09-24 15:01 UTC (permalink / raw)
  To: u-boot

On Sun, Sep 23, 2018 at 06:58:25PM +0200, Daniel Schwierzeck wrote:

> 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)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180924/1be79436/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2018-09-23 16:58 Daniel Schwierzeck
  2018-09-24 15:01 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2018-09-23 16:58 UTC (permalink / raw)
  To: u-boot

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>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2018-08-08 15:31 Daniel Schwierzeck
@ 2018-08-10  3:27 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2018-08-10  3:27 UTC (permalink / raw)
  To: u-boot

On Wed, Aug 08, 2018 at 05:31:44PM +0200, Daniel Schwierzeck wrote:

> 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)
> 

Applied to u-boot/master, thanks!




-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180809/b1f28a96/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2018-08-08 15:31 Daniel Schwierzeck
  2018-08-10  3:27 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2018-08-08 15:31 UTC (permalink / raw)
  To: u-boot

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>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2017-11-28 21:13 Daniel Schwierzeck
@ 2017-11-29  4:23 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2017-11-29  4:23 UTC (permalink / raw)
  To: u-boot

On Tue, Nov 28, 2017 at 10:13:30PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> The following changes since commit 73a01d90c0b2ed2527283f289f73d69ef52cafa5:
> 
>   test: Correct operation when tests pass (2017-11-27 23:05:22 -0500)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to caead80a66271d2de809acf410f8648c31ed5805:
> 
>   boston: Add u-boot.mcs make target (2017-11-28 21:59:30 +0100)
> 

Applied to u-boot/master, thanks!




-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20171128/4e1986a4/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2017-11-28 21:13 Daniel Schwierzeck
  2017-11-29  4:23 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2017-11-28 21:13 UTC (permalink / raw)
  To: u-boot

Hi Tom,

The following changes since commit 73a01d90c0b2ed2527283f289f73d69ef52cafa5:

  test: Correct operation when tests pass (2017-11-27 23:05:22 -0500)

are available in the Git repository at:

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

for you to fetch changes up to caead80a66271d2de809acf410f8648c31ed5805:

  boston: Add u-boot.mcs make target (2017-11-28 21:59:30 +0100)

----------------------------------------------------------------
Paul Burton (9):
      boston: Drop unused return value
      boston: Remove unused label in lowlevel_display
      MIPS: Drop unused PTR_COUNT_SHIFT from u-boot.lds
      Update Paul Burton's email address
      MIPS: Ensure cache ops complete in cache maintenance functions
      MIPS: Clear instruction hazards in flush_cache()
      MIPS: Break out of cache loops for unimplemented caches
      boston: Set CONFIG_SYS_LOAD_ADDR to 0x88000000
      boston: Add u-boot.mcs make target

 .mailmap                            |  1 +
 arch/mips/cpu/u-boot.lds            |  6 ------
 arch/mips/include/asm/system.h      | 13 +++++++++++++
 arch/mips/lib/cache.c               | 30 ++++++++++++++++++++++--------
 board/imgtec/boston/MAINTAINERS     |  2 +-
 board/imgtec/boston/config.mk       | 14 ++++++++++++++
 board/imgtec/boston/lowlevel_init.S |  3 +--
 board/imgtec/malta/MAINTAINERS      |  2 +-
 board/imgtec/malta/superio.c        |  2 +-
 board/imgtec/malta/superio.h        |  2 +-
 drivers/pci/pci_msc01.c             |  2 +-
 include/configs/boston.h            |  2 +-
 include/msc01.h                     |  2 +-
 include/pci_msc01.h                 |  2 +-
 14 files changed, 59 insertions(+), 24 deletions(-)
 create mode 100644 board/imgtec/boston/config.mk

-------------- 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/20171128/e2886e5f/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2016-11-30 18:13 Daniel Schwierzeck
  2016-11-30 19:01 ` Tom Rini
@ 2016-12-01  0:45 ` Tom Rini
  1 sibling, 0 replies; 75+ messages in thread
From: Tom Rini @ 2016-12-01  0:45 UTC (permalink / raw)
  To: u-boot

On Wed, Nov 30, 2016 at 07:13:51PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> Travis-CI build is green (one job has failed due to job time limit)
>   
>   https://travis-ci.org/danielschwierzeck/u-boot/builds/180114376
> 
> 
> The following changes since commit 6b29a395b62965eef6b5065d3a526a8588a92038:
> 
>   Merge git://git.denx.de/u-boot-mpc85xx (2016-11-29 19:42:48 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 6fd596a1aa57bd431263f45b0c57ee8ae6b2403c:
> 
>   MIPS: Fix map_physmem for cached mappings (2016-11-30 16:18:19 +0100)
> 

Applied to u-boot/master, thanks!




-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20161130/79964ac6/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2016-11-30 19:01 ` Tom Rini
@ 2016-11-30 19:21   ` Daniel Schwierzeck
  0 siblings, 0 replies; 75+ messages in thread
From: Daniel Schwierzeck @ 2016-11-30 19:21 UTC (permalink / raw)
  To: u-boot



Am 30.11.2016 um 20:01 schrieb Tom Rini:
> On Wed, Nov 30, 2016 at 07:13:51PM +0100, Daniel Schwierzeck wrote:
>> Hi Tom,
>>
>> Travis-CI build is green (one job has failed due to job time limit)
>>   
>>   https://travis-ci.org/danielschwierzeck/u-boot/builds/180114376
> 
> Note that if you head to
> https://travis-ci.org/danielschwierzeck/u-boot/jobs/180114393 you can
> tell it to re-start the job and it _should_ complete in time.  But that
> said, that also just failed for me and I think that means I'm going to
> split it into ARM32 and ARM64 builds so it's not so close to failing due
> to time.
> 
>> The following changes since commit 6b29a395b62965eef6b5065d3a526a8588a92038:
>>
>>   Merge git://git.denx.de/u-boot-mpc85xx (2016-11-29 19:42:48 -0500)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-mips.git master
>>
>> for you to fetch changes up to 6fd596a1aa57bd431263f45b0c57ee8ae6b2403c:
>>
>>   MIPS: Fix map_physmem for cached mappings (2016-11-30 16:18:19 +0100)
>>
>> ----------------------------------------------------------------
>> Daniel Schwierzeck (9):
>>       MIPS: make inclusion of ROM exception vectors configurable
>>       MIPS: fix ROM exception vectors
>>       MIPS: fix iand optimize setup of CP0 registers
>>       MIPS: factor out code for initial stack and global data
>>       MIPS: add possibility to setup initial stack and global data in SRAM
>>       MIPS: add asm-offsets for struct pt_regs
>>       MIPS: reserve space for exception vectors
>>       MIPS: add handling for generic and EJTAG exceptions
>>       common/board_f: enable initr_trap for MIPS
>>
>> Marek Vasut (1):
>>       mips: Let cache.h be included from assembly source
> 
> Are there other parts of the Ci20 series you could apply as well?  I'm
> keen to see this (and then Ci40) go in as I have both platforms and
> would like to get them in mainline and then worked into my test.py
> framework, thanks!
> 

not in this pull request. I'm going to create a new one when the review
has finished.

-- 
- Daniel

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

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  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
  1 sibling, 1 reply; 75+ messages in thread
From: Tom Rini @ 2016-11-30 19:01 UTC (permalink / raw)
  To: u-boot

On Wed, Nov 30, 2016 at 07:13:51PM +0100, Daniel Schwierzeck wrote:
> Hi Tom,
> 
> Travis-CI build is green (one job has failed due to job time limit)
>   
>   https://travis-ci.org/danielschwierzeck/u-boot/builds/180114376

Note that if you head to
https://travis-ci.org/danielschwierzeck/u-boot/jobs/180114393 you can
tell it to re-start the job and it _should_ complete in time.  But that
said, that also just failed for me and I think that means I'm going to
split it into ARM32 and ARM64 builds so it's not so close to failing due
to time.

> The following changes since commit 6b29a395b62965eef6b5065d3a526a8588a92038:
> 
>   Merge git://git.denx.de/u-boot-mpc85xx (2016-11-29 19:42:48 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 6fd596a1aa57bd431263f45b0c57ee8ae6b2403c:
> 
>   MIPS: Fix map_physmem for cached mappings (2016-11-30 16:18:19 +0100)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (9):
>       MIPS: make inclusion of ROM exception vectors configurable
>       MIPS: fix ROM exception vectors
>       MIPS: fix iand optimize setup of CP0 registers
>       MIPS: factor out code for initial stack and global data
>       MIPS: add possibility to setup initial stack and global data in SRAM
>       MIPS: add asm-offsets for struct pt_regs
>       MIPS: reserve space for exception vectors
>       MIPS: add handling for generic and EJTAG exceptions
>       common/board_f: enable initr_trap for MIPS
> 
> Marek Vasut (1):
>       mips: Let cache.h be included from assembly source

Are there other parts of the Ci20 series you could apply as well?  I'm
keen to see this (and then Ci40) go in as I have both platforms and
would like to get them in mainline and then worked into my test.py
framework, thanks!

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

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2016-11-30 18:13 Daniel Schwierzeck
  2016-11-30 19:01 ` Tom Rini
  2016-12-01  0:45 ` Tom Rini
  0 siblings, 2 replies; 75+ messages in thread
From: Daniel Schwierzeck @ 2016-11-30 18:13 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Travis-CI build is green (one job has failed due to job time limit)
  
  https://travis-ci.org/danielschwierzeck/u-boot/builds/180114376


The following changes since commit 6b29a395b62965eef6b5065d3a526a8588a92038:

  Merge git://git.denx.de/u-boot-mpc85xx (2016-11-29 19:42:48 -0500)

are available in the git repository at:

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

for you to fetch changes up to 6fd596a1aa57bd431263f45b0c57ee8ae6b2403c:

  MIPS: Fix map_physmem for cached mappings (2016-11-30 16:18:19 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (9):
      MIPS: make inclusion of ROM exception vectors configurable
      MIPS: fix ROM exception vectors
      MIPS: fix iand optimize setup of CP0 registers
      MIPS: factor out code for initial stack and global data
      MIPS: add possibility to setup initial stack and global data in SRAM
      MIPS: add asm-offsets for struct pt_regs
      MIPS: reserve space for exception vectors
      MIPS: add handling for generic and EJTAG exceptions
      common/board_f: enable initr_trap for MIPS

Marek Vasut (1):
      mips: Let cache.h be included from assembly source

Paul Burton (2):
      MIPS: Use ram_top, not bi_memsize, in arch_lmb_reserve
      MIPS: Fix map_physmem for cached mappings

 arch/mips/Kconfig                   |  32 +++++++++++++++++++
 arch/mips/cpu/start.S               | 173 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------
 arch/mips/include/asm/asm-offsets.h |   5 +++
 arch/mips/include/asm/cache.h       |   2 ++
 arch/mips/include/asm/io.h          |   2 +-
 arch/mips/include/asm/mipsregs.h    |   1 +
 arch/mips/include/asm/system.h      |   8 +++++
 arch/mips/include/asm/u-boot-mips.h |   4 +++
 arch/mips/lib/Makefile              |   3 ++
 arch/mips/lib/asm-offsets.c         |  61 ++++++++++++++++++++++++++++++++++++
 arch/mips/lib/bootm.c               |   2 +-
 arch/mips/lib/genex.S               | 224 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/lib/stack.c               |  19 ++++++++++++
 arch/mips/lib/traps.c               | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/mach-ath79/Kconfig        |   2 ++
 arch/mips/mach-pic32/Kconfig        |   1 +
 common/board_r.c                    |   4 +--
 17 files changed, 584 insertions(+), 65 deletions(-)
 create mode 100644 arch/mips/include/asm/asm-offsets.h
 create mode 100644 arch/mips/lib/asm-offsets.c
 create mode 100644 arch/mips/lib/genex.S
 create mode 100644 arch/mips/lib/stack.c
 create mode 100644 arch/mips/lib/traps.c

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

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2016-09-21 15:49 Daniel Schwierzeck
@ 2016-09-22 15:35 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2016-09-22 15:35 UTC (permalink / raw)
  To: u-boot

On Wed, Sep 21, 2016 at 05:49:14PM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> this pull-request introduces:
> - new board: MIPSfpga
> - new board: Boston with variants for MIPS32r2/MIPS64r2 and BE/LE
> - updates to DM core code needed for Boston board
> - support for L2 cache and MIPS coherency manager
> - various fixes on cache initialization
> 
> 
> The following changes since commit 9b1b6d42256a4c2e59c803afdbf90d39371e61ba:
> 
>   Revert "Increase default of CONFIG_SYS_MALLOC_F_LEN for SPL_OF_CONTROL" (2016-09-19 15:20:09 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 31d36f748c52b22833aa946f6c406cc8fb2f1908:
> 
>   MIPS: Hang if run on a secondary CPU (2016-09-21 17:04:53 +0200)
> 

Applied to u-boot/master, thanks!




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

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2016-09-21 15:49 Daniel Schwierzeck
  2016-09-22 15:35 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2016-09-21 15:49 UTC (permalink / raw)
  To: u-boot

Hi Tom,

this pull-request introduces:
- new board: MIPSfpga
- new board: Boston with variants for MIPS32r2/MIPS64r2 and BE/LE
- updates to DM core code needed for Boston board
- support for L2 cache and MIPS coherency manager
- various fixes on cache initialization


The following changes since commit 9b1b6d42256a4c2e59c803afdbf90d39371e61ba:

  Revert "Increase default of CONFIG_SYS_MALLOC_F_LEN for SPL_OF_CONTROL" (2016-09-19 15:20:09 -0400)

are available in the git repository at:

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

for you to fetch changes up to 31d36f748c52b22833aa946f6c406cc8fb2f1908:

  MIPS: Hang if run on a secondary CPU (2016-09-21 17:04:53 +0200)

----------------------------------------------------------------
Paul Burton (28):
      board_f: Add a mach_cpu_init callback
      MIPS: ath79: Use mach_cpu_init instead of arch_cpu_init
      MIPS: Probe cache line sizes once during boot
      MIPS: Enable use of the instruction cache earlier
      MIPS: Preserve Config implementation-defined bits
      MIPS: If we don't need DDR for cache init, init cache first
      MIPS: Define register names for cache init
      MIPS: Map CM Global Control Registers
      MIPS: L2 cache support
      MIPS: Join the coherent domain when a CM is present
      MIPS: Malta: Enable CM & L2 support
      MIPS: Ensure Config.K0=2 applies before any memory accesses
      MIPS: Clear hazard between TagLo writes & cache ops
      MIPS: Ensure cache ops complete in mips_cache_reset
      clk: Use dummy clk_get_by_* functions when CONFIG_CLK is disabled
      serial: ns16550: Support clocks via phandle
      dt-bindings: Add interrupt-controller/mips-gic.h header
      pci: xilinx: Add a driver for Xilinx AXI to PCIe bridge
      pci: Flip condition for detecting non-PCI parent devices
      net: pch_gbe: Use dm_pci_map_bar to discover MMIO base
      net: pch_gbe: Make 64 bit safe
      dm: regmap: Implement simple regmap_read & regmap_write
      dm: core: Match compatible strings in order of priority
      dm: syscon: Provide a generic syscon driver
      clk: boston: Providea simple driver for Boston board clocks
      boston: Introduce support for the MIPS Boston development board
      MIPS: Fix cache maintenance in relocate_code & simplify
      MIPS: Hang if run on a secondary CPU

Zubair Lutfullah Kakakhel (5):
      net: emaclite: Use ioremap_nocache
      net: emaclite: use __raw_readl/writel instead of weird define
      net: emaclite: Enable driver for MIPS
      mips: xilfpga: Add device tree files
      mips: Add MIPSfpga platform support

 arch/mips/Kconfig                                   |  57 +++++++++++++++++
 arch/mips/cpu/Makefile                              |   2 +
 arch/mips/cpu/cm_init.S                             |  45 ++++++++++++++
 arch/mips/cpu/cpu.c                                 |   7 +++
 arch/mips/cpu/start.S                               |  93 +++++++++++++++++-----------
 arch/mips/cpu/u-boot.lds                            |   2 +
 arch/mips/dts/Makefile                              |   2 +
 arch/mips/dts/img,boston.dts                        | 222 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/dts/microAptiv.dtsi                       |  21 +++++++
 arch/mips/dts/nexys4ddr.dts                         |  62 +++++++++++++++++++
 arch/mips/include/asm/cache.h                       |   9 +++
 arch/mips/include/asm/cm.h                          |  62 +++++++++++++++++++
 arch/mips/include/asm/global_data.h                 |   7 +++
 arch/mips/include/asm/mipsregs.h                    |  13 ++++
 arch/mips/lib/cache.c                               | 101 ++++++++++++++++++++++++------
 arch/mips/lib/cache_init.S                          | 271 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------
 arch/mips/mach-ath79/cpu.c                          |   2 +-
 board/imgtec/boston/Kconfig                         |  16 +++++
 board/imgtec/boston/MAINTAINERS                     |   6 ++
 board/imgtec/boston/Makefile                        |   9 +++
 board/imgtec/boston/boston-lcd.h                    |  21 +++++++
 board/imgtec/boston/boston-regs.h                   |  26 ++++++++
 board/imgtec/boston/checkboard.c                    |  30 +++++++++
 board/imgtec/boston/ddr.c                           |  30 +++++++++
 board/imgtec/boston/lowlevel_init.S                 |  56 +++++++++++++++++
 board/imgtec/malta/lowlevel_init.S                  |   6 --
 board/imgtec/xilfpga/Kconfig                        |  15 +++++
 board/imgtec/xilfpga/MAINTAINERS                    |   6 ++
 board/imgtec/xilfpga/Makefile                       |   7 +++
 board/imgtec/xilfpga/README                         |  55 +++++++++++++++++
 board/imgtec/xilfpga/xilfpga.c                      |  20 ++++++
 common/board_f.c                                    |   6 ++
 configs/boston32r2_defconfig                        |  41 +++++++++++++
 configs/boston32r2el_defconfig                      |  42 +++++++++++++
 configs/boston64r2_defconfig                        |  41 +++++++++++++
 configs/boston64r2el_defconfig                      |  42 +++++++++++++
 configs/imgtec_xilfpga_defconfig                    |  25 ++++++++
 doc/README.boston                                   |  58 ++++++++++++++++++
 drivers/clk/Kconfig                                 |   8 +++
 drivers/clk/Makefile                                |   1 +
 drivers/clk/clk_boston.c                            |  97 +++++++++++++++++++++++++++++
 drivers/core/lists.c                                |  78 +++++++++++++-----------
 drivers/core/regmap.c                               |  20 ++++++
 drivers/core/syscon-uclass.c                        |  11 ++++
 drivers/net/Kconfig                                 |   2 +-
 drivers/net/pch_gbe.c                               |  28 ++++-----
 drivers/net/xilinx_emaclite.c                       |  90 ++++++++++++++-------------
 drivers/pci/Kconfig                                 |   7 +++
 drivers/pci/Makefile                                |   1 +
 drivers/pci/pci-uclass.c                            |   2 +-
 drivers/pci/pcie_xilinx.c                           | 220 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/serial/ns16550.c                            |  21 ++++++-
 include/clk.h                                       |   2 +-
 include/configs/boston.h                            |  81 ++++++++++++++++++++++++
 include/configs/imgtec_xilfpga.h                    |  68 +++++++++++++++++++++
 include/dt-bindings/clock/boston-clock.h            |  13 ++++
 include/dt-bindings/interrupt-controller/mips-gic.h |   9 +++
 57 files changed, 2115 insertions(+), 180 deletions(-)
 create mode 100644 arch/mips/cpu/cm_init.S
 create mode 100644 arch/mips/dts/img,boston.dts
 create mode 100644 arch/mips/dts/microAptiv.dtsi
 create mode 100644 arch/mips/dts/nexys4ddr.dts
 create mode 100644 arch/mips/include/asm/cm.h
 create mode 100644 board/imgtec/boston/Kconfig
 create mode 100644 board/imgtec/boston/MAINTAINERS
 create mode 100644 board/imgtec/boston/Makefile
 create mode 100644 board/imgtec/boston/boston-lcd.h
 create mode 100644 board/imgtec/boston/boston-regs.h
 create mode 100644 board/imgtec/boston/checkboard.c
 create mode 100644 board/imgtec/boston/ddr.c
 create mode 100644 board/imgtec/boston/lowlevel_init.S
 create mode 100644 board/imgtec/xilfpga/Kconfig
 create mode 100644 board/imgtec/xilfpga/MAINTAINERS
 create mode 100644 board/imgtec/xilfpga/Makefile
 create mode 100644 board/imgtec/xilfpga/README
 create mode 100644 board/imgtec/xilfpga/xilfpga.c
 create mode 100644 configs/boston32r2_defconfig
 create mode 100644 configs/boston32r2el_defconfig
 create mode 100644 configs/boston64r2_defconfig
 create mode 100644 configs/boston64r2el_defconfig
 create mode 100644 configs/imgtec_xilfpga_defconfig
 create mode 100644 doc/README.boston
 create mode 100644 drivers/clk/clk_boston.c
 create mode 100644 drivers/pci/pcie_xilinx.c
 create mode 100644 include/configs/boston.h
 create mode 100644 include/configs/imgtec_xilfpga.h
 create mode 100644 include/dt-bindings/clock/boston-clock.h
 create mode 100644 include/dt-bindings/interrupt-controller/mips-gic.h

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

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2016-06-10 10:52 Daniel Schwierzeck
@ 2016-06-19 14:01 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2016-06-19 14:01 UTC (permalink / raw)
  To: u-boot

On Fri, Jun 10, 2016 at 12:52:45PM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> this PR contains some fixes for the MIPS cache code. I've also applied the PIC32
> SPI driver because there is no reaction from Jagan and the change is isolated.
> Please pull, thanks.
> 
> 
> The following changes since commit 6b3943f1b04be60f147ee540fbd72c4c7ea89f80:
> 
>   siemens,am33x: add draco etamin board (2016-06-09 13:53:13 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to e19b9004575cacf1f64fff894621adafe0e7ea7f:
> 
>   spi: pic32_spi: add SPI master driver for PIC32 SoC. (2016-06-10 12:31:12 +0200)
> 

Applied to u-boot/master, thanks!

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

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2016-06-10 10:52 Daniel Schwierzeck
  2016-06-19 14:01 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2016-06-10 10:52 UTC (permalink / raw)
  To: u-boot

Hi Tom,

this PR contains some fixes for the MIPS cache code. I've also applied the PIC32
SPI driver because there is no reaction from Jagan and the change is isolated.
Please pull, thanks.


The following changes since commit 6b3943f1b04be60f147ee540fbd72c4c7ea89f80:

  siemens,am33x: add draco etamin board (2016-06-09 13:53:13 -0400)

are available in the git repository at:

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

for you to fetch changes up to e19b9004575cacf1f64fff894621adafe0e7ea7f:

  spi: pic32_spi: add SPI master driver for PIC32 SoC. (2016-06-10 12:31:12 +0200)

----------------------------------------------------------------
Paul Burton (2):
      MIPS: Fix invalidate_dcache_range to operate on L1 Dcache
      MIPS: Make CONFIG_SYS_DCACHE_LINE_SIZE int, not hex

Purna Chandra Mandal (1):
      spi: pic32_spi: add SPI master driver for PIC32 SoC.

 arch/mips/Kconfig       |   2 +-
 arch/mips/lib/cache.c   |   2 +-
 drivers/spi/Kconfig     |   8 +++
 drivers/spi/Makefile    |   1 +
 drivers/spi/pic32_spi.c | 448 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 459 insertions(+), 2 deletions(-)
 create mode 100644 drivers/spi/pic32_spi.c

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2016-05-31  9:36 Daniel Schwierzeck
@ 2016-05-31 14:50 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2016-05-31 14:50 UTC (permalink / raw)
  To: u-boot

On Tue, May 31, 2016 at 11:36:46AM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull the last batch of MIPS updates, thanks.
> 
> The following changes since commit e4a94ce4ac77396b181663c0493c50bc2d5b9143:
> 
>   Merge git://git.denx.de/u-boot-dm (2016-05-27 20:34:12 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to f1b65c98b0a134ce92c38141b917fd3a210ee535:
> 
>   mips: ath79: ap143: Reset ethernet on boot (2016-05-31 10:17:54 +0200)
> 

Applied to u-boot/master, thanks!




-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160531/4fae4885/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2016-05-31  9:36 Daniel Schwierzeck
  2016-05-31 14:50 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2016-05-31  9:36 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the last batch of MIPS updates, thanks.

The following changes since commit e4a94ce4ac77396b181663c0493c50bc2d5b9143:

  Merge git://git.denx.de/u-boot-dm (2016-05-27 20:34:12 -0400)

are available in the git repository at:

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

for you to fetch changes up to f1b65c98b0a134ce92c38141b917fd3a210ee535:

  mips: ath79: ap143: Reset ethernet on boot (2016-05-31 10:17:54 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (4):
      MIPS: provide a default u-boot-spl.lds
      MIPS: add tune for MIPS 34kc
      MIPS: remove dead code from asm/u-boot-mips.h
      MIPS: malta: add defconfigs for MIPS64

Marek Vasut (1):
      net: Add ag7xxx driver for Atheros MIPS

Paul Burton (8):
      MIPS: Use CPHYSADDR to implement mips32 virt_to_phys
      net: pcnet: Stop converting kseg1->kseg0 addresses
      net: pcnet: Make 64 bit safe
      net: pcnet: Fix init on big endian 64 bit
      malta: Allow MIPS64 builds
      MIPS: Move cache sizes to Kconfig
      MIPS: Split I & D cache line size config
      MIPS: Abstract cache op loops with a macro

Wills Wang (6):
      mips: ath79: Rename get_bootstrap into ath79_get_bootstrap
      mips: ath79: ap121: Enable ethernet
      mips: ath79: Use 8MB flash profile for mtd partition by default
      mips: ath79: Add support for ungating USB and ethernet on qca953x
      mips: ath79: Use AR933X_PLL_SWITCH_CLOCK_CONTROL_REG macro define
      mips: ath79: ap143: Reset ethernet on boot

 arch/mips/Kconfig                               |  40 +++++
 arch/mips/Makefile                              |   1 +
 arch/mips/config.mk                             |   5 +-
 arch/mips/cpu/u-boot-spl.lds                    |  90 ++++++++++++
 arch/mips/dts/ap121.dts                         |   5 +
 arch/mips/dts/ar933x.dtsi                       |   4 +-
 arch/mips/include/asm/cache.h                   |   7 +
 arch/mips/include/asm/io.h                      |   5 +-
 arch/mips/include/asm/u-boot-mips.h             |  21 +--
 arch/mips/lib/cache.c                           |  79 +++-------
 arch/mips/lib/cache_init.S                      |  10 +-
 arch/mips/mach-ath79/ar933x/clk.c               |   4 +-
 arch/mips/mach-ath79/ar933x/ddr.c               |   4 +-
 arch/mips/mach-ath79/ar934x/clk.c               |   6 +-
 arch/mips/mach-ath79/ar934x/ddr.c               |   4 +-
 arch/mips/mach-ath79/include/mach/ar71xx_regs.h |   1 +
 arch/mips/mach-ath79/include/mach/ath79.h       |   1 +
 arch/mips/mach-ath79/include/mach/reset.h       |  14 --
 arch/mips/mach-ath79/qca953x/clk.c              |   4 +-
 arch/mips/mach-ath79/qca953x/ddr.c              |   4 +-
 arch/mips/mach-ath79/reset.c                    |  54 ++++++-
 board/dbau1x00/Kconfig                          |  12 ++
 board/imgtec/malta/Kconfig                      |   3 +-
 board/imgtec/malta/lowlevel_init.S              |  13 +-
 board/micronas/vct/Kconfig                      |  12 ++
 board/pb1x00/Kconfig                            |  12 ++
 board/qca/ap121/Kconfig                         |  12 ++
 board/qca/ap121/ap121.c                         |   2 +
 board/qca/ap143/Kconfig                         |  12 ++
 board/qca/ap143/ap143.c                         |   2 +
 board/qemu-mips/Kconfig                         |  12 ++
 board/tplink/wdr4300/Kconfig                    |  12 ++
 configs/ap121_defconfig                         |   9 +-
 configs/malta64_defconfig                       |  16 ++
 configs/malta64el_defconfig                     |  17 +++
 drivers/net/Kconfig                             |   9 ++
 drivers/net/Makefile                            |   1 +
 drivers/net/ag7xxx.c                            | 980 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/net/pcnet.c                             |  39 +++--
 include/configs/ap121.h                         |   9 +-
 include/configs/ap143.h                         |  11 +-
 include/configs/dbau1x00.h                      |   7 -
 include/configs/malta.h                         |  18 ++-
 include/configs/pb1x00.h                        |   6 -
 include/configs/pic32mzdask.h                   |   1 -
 include/configs/qemu-mips.h                     |   7 -
 include/configs/qemu-mips64.h                   |   7 -
 include/configs/tplink_wdr4300.h                |   5 -
 include/configs/vct.h                           |   7 -
 49 files changed, 1412 insertions(+), 204 deletions(-)
 create mode 100644 arch/mips/cpu/u-boot-spl.lds
 delete mode 100644 arch/mips/mach-ath79/include/mach/reset.h
 create mode 100644 configs/malta64_defconfig
 create mode 100644 configs/malta64el_defconfig
 create mode 100644 drivers/net/ag7xxx.c

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

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2016-05-26  0:13 Daniel Schwierzeck
@ 2016-05-26 15:49 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2016-05-26 15:49 UTC (permalink / raw)
  To: u-boot

On Thu, May 26, 2016 at 02:13:38AM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> here is another batch of MIPS updates.
> 
> The following changes since commit fc15b9beed05dec6cc092c265042381a0eadb0e9:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2016-05-24 13:42:03 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 4349b55b9953d0bb591f13ca9985edf591348ced:
> 
>   mips: ath79: ar933x: Avoid warning with gcc5 (2016-05-26 01:34:14 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160526/5ae97e66/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2016-05-26  0:13 Daniel Schwierzeck
  2016-05-26 15:49 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2016-05-26  0:13 UTC (permalink / raw)
  To: u-boot

Hi Tom,

here is another batch of MIPS updates.

The following changes since commit fc15b9beed05dec6cc092c265042381a0eadb0e9:

  Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2016-05-24 13:42:03 -0400)

are available in the git repository at:

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

for you to fetch changes up to 4349b55b9953d0bb591f13ca9985edf591348ced:

  mips: ath79: ar933x: Avoid warning with gcc5 (2016-05-26 01:34:14 +0200)

----------------------------------------------------------------
Marek Vasut (2):
      mips: Allow overriding start.S in SPL
      mips: Drop JZ4740 remnants

Paul Burton (6):
      fdt: Support for ISA busses
      fdt: Document the rest of struct of_bus
      dm: ns16550: Don't map_physmem for I/O ports
      malta: Tidy up UART address selection
      malta: Use device model & tree for UART
      MIPS: Move CONFIG_SYS_TEXT_BASE to Kconfig

Wills Wang (2):
      mips: ath79: ar933x: Fix ethernet PHY mismatch
      mips: ath79: ar933x: Avoid warning with gcc5

 Kconfig                                         |    2 +-
 arch/mips/Kconfig                               |    4 +
 arch/mips/Makefile                              |    6 +
 arch/mips/dts/Makefile                          |    1 +
 arch/mips/dts/mti,malta.dts                     |   32 ++++
 arch/mips/include/asm/global_data.h             |    8 -
 arch/mips/include/asm/jz4740.h                  | 1150 -------------------------------------------------------------------------------------------------------------
 arch/mips/mach-ath79/ar933x/ddr.c               |    2 +
 arch/mips/mach-ath79/include/mach/ar71xx_regs.h |    1 +
 arch/mips/mach-ath79/reset.c                    |    3 +-
 board/dbau1x00/Kconfig                          |    3 +
 board/imgtec/malta/Kconfig                      |    3 +
 board/imgtec/malta/malta.c                      |   13 --
 board/microchip/pic32mzda/Kconfig               |    3 +
 board/micronas/vct/Kconfig                      |    3 +
 board/pb1x00/Kconfig                            |    3 +
 board/qca/ap121/Kconfig                         |    3 +
 board/qca/ap143/Kconfig                         |    3 +
 board/qemu-mips/Kconfig                         |    4 +
 board/tplink/wdr4300/Kconfig                    |    3 +
 common/fdt_support.c                            |  120 +++++++++++-
 configs/malta_defconfig                         |    2 +
 configs/maltael_defconfig                       |    2 +
 drivers/core/Kconfig                            |   23 +++
 drivers/serial/ns16550.c                        |   10 +-
 include/configs/ap121.h                         |    2 -
 include/configs/ap143.h                         |    2 -
 include/configs/dbau1x00.h                      |    6 -
 include/configs/malta.h                         |    9 +-
 include/configs/pb1x00.h                        |    6 -
 include/configs/pic32mzdask.h                   |    1 -
 include/configs/qemu-mips.h                     |    1 -
 include/configs/qemu-mips64.h                   |    1 -
 include/configs/tplink_wdr4300.h                |    2 -
 include/configs/vct.h                           |    1 -
 35 files changed, 230 insertions(+), 1208 deletions(-)
 create mode 100644 arch/mips/dts/mti,malta.dts
 delete mode 100644 arch/mips/include/asm/jz4740.h

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2016-04-19 11:24 Daniel Schwierzeck
@ 2016-04-21 11:25 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2016-04-21 11:25 UTC (permalink / raw)
  To: u-boot

On Tue, Apr 19, 2016 at 01:24:34PM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull a bugfix for MIPS, thanks.
> 
> 
> The following changes since commit 108f8418597350bd98357f25acaa8ab8a0435779:
> 
>   ARM: rpi: fix 64-bit CONFIG_SYS_TEXT_BASE (2016-04-16 09:02:17 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to fdff5b0598c73767c2cad097c66a82a705463452:
> 
>   MIPS: bootm: Add fixup of '/memory' node. (2016-04-19 13:21:48 +0200)
> 

Applied to u-boot/master, thanks!




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

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2016-04-19 11:24 Daniel Schwierzeck
  2016-04-21 11:25 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2016-04-19 11:24 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull a bugfix for MIPS, thanks.


The following changes since commit 108f8418597350bd98357f25acaa8ab8a0435779:

  ARM: rpi: fix 64-bit CONFIG_SYS_TEXT_BASE (2016-04-16 09:02:17 -0400)

are available in the git repository at:

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

for you to fetch changes up to fdff5b0598c73767c2cad097c66a82a705463452:

  MIPS: bootm: Add fixup of '/memory' node. (2016-04-19 13:21:48 +0200)

----------------------------------------------------------------
Purna Chandra Mandal (1):
      MIPS: bootm: Add fixup of '/memory' node.

 arch/mips/lib/bootm.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

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

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2016-03-09 11:01 Daniel Schwierzeck
@ 2016-03-10 16:01 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2016-03-10 16:01 UTC (permalink / raw)
  To: u-boot

On Wed, Mar 09, 2016 at 12:01:35PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> two fixes for MIPS:
> - fix a build error on Travis CI for pic32mzdask board
> - fix cache op for toolchains not supporting __builtin_mips_cache()
> 
> please consider pulling, thanks
> 
> 
> The following changes since commit deff6fb3a7790e93264292982000275e78bb12e5:
> 
>   malloc: remove !gd handling (2016-03-08 15:01:47 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 40a09be2e925e6e4b56a236fec5aed2c002e9d6f:
> 
>   MIPS: pic32mzdask: use CONFIG_USE_PRIVATE_LIBGCC=y (2016-03-09 11:54:01 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160310/2711ac23/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2016-03-09 11:01 Daniel Schwierzeck
  2016-03-10 16:01 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2016-03-09 11:01 UTC (permalink / raw)
  To: u-boot

Hi Tom,

two fixes for MIPS:
- fix a build error on Travis CI for pic32mzdask board
- fix cache op for toolchains not supporting __builtin_mips_cache()

please consider pulling, thanks


The following changes since commit deff6fb3a7790e93264292982000275e78bb12e5:

  malloc: remove !gd handling (2016-03-08 15:01:47 -0500)

are available in the git repository at:

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

for you to fetch changes up to 40a09be2e925e6e4b56a236fec5aed2c002e9d6f:

  MIPS: pic32mzdask: use CONFIG_USE_PRIVATE_LIBGCC=y (2016-03-09 11:54:01 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (1):
      MIPS: pic32mzdask: use CONFIG_USE_PRIVATE_LIBGCC=y

Matthias Schiffer (1):
      MIPS: fix mips_cache fallback without __builtin_mips_cache

 arch/mips/include/asm/cacheops.h | 2 +-
 configs/pic32mzdask_defconfig    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2015-11-06 13:10 Daniel Schwierzeck
@ 2015-11-07 13:18 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2015-11-07 13:18 UTC (permalink / raw)
  To: u-boot

On Fri, Nov 06, 2015 at 02:10:06PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull the MIPS bootm fixes, thanks.
> 
> 
> The following changes since commit ed02c532be690b3d0c3e15c81531785a788fd949:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-video (2015-11-05 07:47:21 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 347ea94e2a954ab70f64a3f43d9b374cf4640f26:
> 
>   MIPS: bootm: use CONFIG_IS_ENABLED() everywhere (2015-11-06 13:27:28 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20151107/77fa6eea/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2015-11-06 13:10 Daniel Schwierzeck
  2015-11-07 13:18 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2015-11-06 13:10 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the MIPS bootm fixes, thanks.


The following changes since commit ed02c532be690b3d0c3e15c81531785a788fd949:

  Merge branch 'master' of git://git.denx.de/u-boot-video (2015-11-05 07:47:21 -0500)

are available in the git repository at:

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

for you to fetch changes up to 347ea94e2a954ab70f64a3f43d9b374cf4640f26:

  MIPS: bootm: use CONFIG_IS_ENABLED() everywhere (2015-11-06 13:27:28 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (3):
      common/board_f: enable setup_board_part1() for MIPS
      MIPS: bootm: rework and fix broken bootm code
      MIPS: bootm: use CONFIG_IS_ENABLED() everywhere

 arch/mips/lib/bootm.c | 196 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------------------------------
 common/board_f.c      |   8 ++++--
 2 files changed, 98 insertions(+), 106 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2015-08-24 13:43 ` Tom Rini
@ 2015-08-24 15:47   ` Daniel Schwierzeck
  0 siblings, 0 replies; 75+ messages in thread
From: Daniel Schwierzeck @ 2015-08-24 15:47 UTC (permalink / raw)
  To: u-boot

2015-08-24 15:43 GMT+02:00 Tom Rini <trini@konsulko.com>:
> On Mon, Aug 24, 2015 at 01:24:57PM +0200, Daniel Schwierzeck wrote:
>
>> Hi Tom,
>>
>> please pull some fixes for MIPS, thanks.
>>
>>
>> The following changes since commit 8d77576371381ade83de475bb639949b44941e8c:
>>
>>   ARM: davinci: remove support for cam_enc_4xx (2015-08-20 12:55:50 -0400)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-mips.git master
>>
>> for you to fetch changes up to 369d2aad8ac54792118fbf857b94826266e40454:
>>
>>   MIPS: add clrbits and setbits and add phy_to_bus support.
>> (2015-08-21 15:22:41 +0200)
>>
>
> NAK.  With this I now get:
> board/micronas/vct/gpio.c:35:59: error: macro "clrsetbits" requires 4
> arguments, but only 3 given
>
> And a bunch of other similar errors.
>

sorry, somehow I missed that commit in my buildman run. I'll send
another PR with only
the first two commits.

-- 
- Daniel

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2015-08-24 11:24 Daniel Schwierzeck
@ 2015-08-24 13:43 ` Tom Rini
  2015-08-24 15:47   ` Daniel Schwierzeck
  0 siblings, 1 reply; 75+ messages in thread
From: Tom Rini @ 2015-08-24 13:43 UTC (permalink / raw)
  To: u-boot

On Mon, Aug 24, 2015 at 01:24:57PM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull some fixes for MIPS, thanks.
> 
> 
> The following changes since commit 8d77576371381ade83de475bb639949b44941e8c:
> 
>   ARM: davinci: remove support for cam_enc_4xx (2015-08-20 12:55:50 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 369d2aad8ac54792118fbf857b94826266e40454:
> 
>   MIPS: add clrbits and setbits and add phy_to_bus support.
> (2015-08-21 15:22:41 +0200)
> 

NAK.  With this I now get:
board/micronas/vct/gpio.c:35:59: error: macro "clrsetbits" requires 4
arguments, but only 3 given

And a bunch of other similar errors.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150824/61025824/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2015-08-24 11:24 Daniel Schwierzeck
  2015-08-24 13:43 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2015-08-24 11:24 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull some fixes for MIPS, thanks.


The following changes since commit 8d77576371381ade83de475bb639949b44941e8c:

  ARM: davinci: remove support for cam_enc_4xx (2015-08-20 12:55:50 -0400)

are available in the git repository at:

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

for you to fetch changes up to 369d2aad8ac54792118fbf857b94826266e40454:

  MIPS: add clrbits and setbits and add phy_to_bus support.
(2015-08-21 15:22:41 +0200)

----------------------------------------------------------------
Chris Packham (1):
      mips: Use unsigned int when reading c0 registers

Govindraj Raja (2):
      MIPS: fix syntax for fdt_chosen/initrd.
      MIPS: add clrbits and setbits and add phy_to_bus support.

 arch/mips/include/asm/io.h       | 54
++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/include/asm/mipsregs.h |  4 ++--
 arch/mips/lib/bootm.c            |  4 ++--
 arch/mips/lib/io.c               | 17 +++++++++++++++++
 4 files changed, 75 insertions(+), 4 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2015-07-02  9:34 Daniel Schwierzeck
@ 2015-07-10 12:55 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2015-07-10 12:55 UTC (permalink / raw)
  To: u-boot

On Thu, Jul 02, 2015 at 11:34:45AM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull two bugfixes for MIPS
> 
> 
> The following changes since commit 891b487098ee2169a16b1bbb354aaef28aa90630:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-spi (2015-07-01
> 15:38:12 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to b11c5d1dc29e81326d1215011d19377737082aeb:
> 
>   MIPS: change 'extern inline' to 'static inline' (2015-07-02 11:29:33
> +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150710/9525634a/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2015-07-02  9:34 Daniel Schwierzeck
  2015-07-10 12:55 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2015-07-02  9:34 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull two bugfixes for MIPS


The following changes since commit 891b487098ee2169a16b1bbb354aaef28aa90630:

  Merge branch 'master' of git://git.denx.de/u-boot-spi (2015-07-01
15:38:12 -0400)

are available in the git repository at:

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

for you to fetch changes up to b11c5d1dc29e81326d1215011d19377737082aeb:

  MIPS: change 'extern inline' to 'static inline' (2015-07-02 11:29:33
+0200)

----------------------------------------------------------------
Daniel Schwierzeck (1):
      MIPS: change 'extern inline' to 'static inline'

Tony Wu (1):
      MIPS: fix missing semicolon in cacheops.h

 arch/mips/include/asm/cacheops.h |  2 +-
 arch/mips/include/asm/io.h       | 12 ++++++------
 arch/mips/include/asm/system.h   |  6 +++---
 3 files changed, 10 insertions(+), 10 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2015-04-24 10:20 Daniel Schwierzeck
@ 2015-04-28 14:51 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2015-04-28 14:51 UTC (permalink / raw)
  To: u-boot

On Fri, Apr 24, 2015 at 12:20:30PM +0200, Daniel Schwierzeck wrote:

> The following changes since commit d8c1d5d5fb6eafbc532982125f006e49f2c40e71:
> 
>   Merge branch 'buildman' of git://git.denx.de/u-boot-x86 (2015-04-23 14:56:47 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 90b1c9fad7bde21e3f0d388d0ba0ac5ee1f2e976:
> 
>   MIPS: implement device-tree handover to Linux kernel (2015-04-24 12:15:34 +0200)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150428/8b691c91/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2015-04-24 10:20 Daniel Schwierzeck
  2015-04-28 14:51 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2015-04-24 10:20 UTC (permalink / raw)
  To: u-boot

The following changes since commit d8c1d5d5fb6eafbc532982125f006e49f2c40e71:

  Merge branch 'buildman' of git://git.denx.de/u-boot-x86 (2015-04-23 14:56:47 -0400)

are available in the git repository at:

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

for you to fetch changes up to 90b1c9fad7bde21e3f0d388d0ba0ac5ee1f2e976:

  MIPS: implement device-tree handover to Linux kernel (2015-04-24 12:15:34 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (1):
      MIPS: implement device-tree handover to Linux kernel

 arch/mips/Kconfig     | 9 +++------
 arch/mips/lib/bootm.c | 6 +++++-
 2 files changed, 8 insertions(+), 7 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2015-01-30 14:42 Daniel Schwierzeck
@ 2015-02-02 18:57 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2015-02-02 18:57 UTC (permalink / raw)
  To: u-boot

On Fri, Jan 30, 2015 at 03:42:25PM +0100, Daniel Schwierzeck wrote:

> The following changes since commit ab92da9f47d51d363c7de42e2a7bd807e2c1bd54:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-x86 (2015-01-26 17:44:49 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to eef88dfb3e16e4631e078f42714dbcef3216e3e1:
> 
>   MIPS: unify CPU code in arch/mips/cpu/ (2015-01-30 14:19:58 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150202/2f9aeb0a/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2015-01-30 14:42 Daniel Schwierzeck
  2015-02-02 18:57 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2015-01-30 14:42 UTC (permalink / raw)
  To: u-boot

The following changes since commit ab92da9f47d51d363c7de42e2a7bd807e2c1bd54:

  Merge branch 'master' of git://git.denx.de/u-boot-x86 (2015-01-26 17:44:49 -0500)

are available in the git repository at:

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

for you to fetch changes up to eef88dfb3e16e4631e078f42714dbcef3216e3e1:

  MIPS: unify CPU code in arch/mips/cpu/ (2015-01-30 14:19:58 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (2):
      MIPS: move au1x00 SoC code to arch/mips/mach-au1x00
      MIPS: unify CPU code in arch/mips/cpu/

Paul Burton (15):
      MIPS: avoid .set ISA for cache operations
      MIPS: unify cache maintenance functions
      MIPS: unify cache initialization code
      MIPS: refactor L1 cache config reads to a macro
      MIPS: refactor cache loops to a macro
      MIPS: inline mips_init_[id]cache functions
      MIPS: allow systems to skip loads during cache init
      MIPS: clear TagLo select 2 during cache init
      malta: IDE support
      malta: delay after reset
      malta: enable HUSH parser
      malta: enable ELF loading
      MIPS: use asm.h macros in mips32 start.S
      MIPS: handle mips64 relocs in mips32 start.S
      MIPS: handle mips64 ST0_KX bit in mips32 start.S

 arch/mips/Kconfig                                              |   6 +++
 arch/mips/Makefile                                             |   8 +--
 arch/mips/cpu/Makefile                                         |   9 ++++
 arch/mips/cpu/cpu.c                                            |  38 +++++++++++++++
 arch/mips/cpu/{mips64 => }/interrupts.c                        |   0
 arch/mips/cpu/mips32/Makefile                                  |  12 -----
 arch/mips/cpu/mips32/interrupts.c                              |  22 ---------
 arch/mips/cpu/mips32/time.c                                    |  19 --------
 arch/mips/cpu/mips64/Makefile                                  |   9 ----
 arch/mips/cpu/mips64/cache.S                                   | 213 --------------------------------------------------------------------------------
 arch/mips/cpu/mips64/cpu.c                                     |  95 ------------------------------------
 arch/mips/cpu/mips64/start.S                                   | 291 --------------------------------------------------------------------------------------------------------------
 arch/mips/cpu/{mips32 => }/start.S                             | 137 ++++++++++++++++++++++++++++++----------------------
 arch/mips/cpu/{mips64 => }/time.c                              |   0
 arch/mips/include/asm/cacheops.h                               |  13 +++++
 arch/mips/include/asm/malta.h                                  |   5 ++
 arch/mips/lib/Makefile                                         |   2 +
 arch/mips/{cpu/mips32/cpu.c => lib/cache.c}                    |  75 ++++++-----------------------
 arch/mips/{cpu/mips32/cache.S => lib/cache_init.S}             | 222 +++++++++++++++++++++++++++++++++++-------------------------------------------------
 arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/Makefile          |   0
 arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_eth.c      |   6 +++
 arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_ide.c      |   0
 arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_serial.c   |   0
 arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_usb_ohci.c |   0
 arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_usb_ohci.h |   0
 arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/config.mk         |   0
 board/imgtec/malta/malta.c                                     |  20 ++++++++
 include/configs/malta.h                                        |  13 +++++
 28 files changed, 303 insertions(+), 912 deletions(-)
 create mode 100644 arch/mips/cpu/Makefile
 create mode 100644 arch/mips/cpu/cpu.c
 rename arch/mips/cpu/{mips64 => }/interrupts.c (100%)
 delete mode 100644 arch/mips/cpu/mips32/Makefile
 delete mode 100644 arch/mips/cpu/mips32/interrupts.c
 delete mode 100644 arch/mips/cpu/mips32/time.c
 delete mode 100644 arch/mips/cpu/mips64/Makefile
 delete mode 100644 arch/mips/cpu/mips64/cache.S
 delete mode 100644 arch/mips/cpu/mips64/cpu.c
 delete mode 100644 arch/mips/cpu/mips64/start.S
 rename arch/mips/cpu/{mips32 => }/start.S (61%)
 rename arch/mips/cpu/{mips64 => }/time.c (100%)
 rename arch/mips/{cpu/mips32/cpu.c => lib/cache.c} (55%)
 rename arch/mips/{cpu/mips32/cache.S => lib/cache_init.S} (59%)
 rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/Makefile (100%)
 rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_eth.c (98%)
 rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_ide.c (100%)
 rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_serial.c (100%)
 rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_usb_ohci.c (100%)
 rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_usb_ohci.h (100%)
 rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/config.mk (100%)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2015-01-21 13:14 Daniel Schwierzeck
@ 2015-01-23 21:56 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2015-01-23 21:56 UTC (permalink / raw)
  To: u-boot

On Wed, Jan 21, 2015 at 02:14:53PM +0100, Daniel Schwierzeck wrote:

> The following changes since commit 768f6096f9c389b5ed36bee2957bee16b085fc4a:
> 
>   Merge git://git.denx.de/u-boot-arc (2015-01-20 16:41:11 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to e520023882c7187a7cbaecfea0726ea158440aef:
> 
>   MIPS: add support for pre-relocation malloc (2015-01-21 14:07:23 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150123/fb583077/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2015-01-21 13:14 Daniel Schwierzeck
  2015-01-23 21:56 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2015-01-21 13:14 UTC (permalink / raw)
  To: u-boot

The following changes since commit 768f6096f9c389b5ed36bee2957bee16b085fc4a:

  Merge git://git.denx.de/u-boot-arc (2015-01-20 16:41:11 -0500)

are available in the git repository at:

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

for you to fetch changes up to e520023882c7187a7cbaecfea0726ea158440aef:

  MIPS: add support for pre-relocation malloc (2015-01-21 14:07:23 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (9):
      MIPS: bootm: refactor preparation of Linux kernel command line
      MIPS: bootm: refactor preparation of Linux kernel environment
      MIPS: bootm: add mem, rd_start and rd_size to kernel command line
      MIPS: bootm: prepare a flattened device tree for the kernel
      MIPS: bootm: add bootstage reporting
      MIPS: replace $(CPU) with Kconfig symbols
      MIPS: add Kconfig option for CONFIG_SWAP_IO_SPACE
      MIPS: add support for CONFIG_SYS_INIT_SP_ADDR
      MIPS: add support for pre-relocation malloc

Thomas Langer (1):
      MIPS: use common code from lib/time.c

 arch/mips/Kconfig              | 45 +++++++++++++++++++++++++++++++++++++++++++++
 arch/mips/Makefile             |  6 ++++--
 arch/mips/cpu/mips32/start.S   | 29 ++++++++++++++++++++++++++++-
 arch/mips/cpu/mips32/time.c    | 59 ++++-------------------------------------------------------
 arch/mips/cpu/mips64/start.S   | 29 ++++++++++++++++++++++++++++-
 arch/mips/cpu/mips64/time.c    | 59 ++++-------------------------------------------------------
 arch/mips/include/asm/config.h |  2 --
 arch/mips/lib/bootm.c          | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 include/configs/malta.h        |  2 --
 9 files changed, 206 insertions(+), 123 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2014-11-27 15:25 Daniel Schwierzeck
@ 2014-11-27 18:09 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2014-11-27 18:09 UTC (permalink / raw)
  To: u-boot

On Thu, Nov 27, 2014 at 04:25:56PM +0100, Daniel Schwierzeck wrote:

> The following changes since commit 85bafb6da4dddfffa78479aa49a72ae48578a4ce:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2014-11-26 11:23:26 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 6cec63d59dc102e87077cd1d85f3c1b9cdcad239:
> 
>   MIPS: bootm: remove unused or redundant header files (2014-11-27 16:20:37 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141127/7624b856/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2014-11-27 15:25 Daniel Schwierzeck
  2014-11-27 18:09 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2014-11-27 15:25 UTC (permalink / raw)
  To: u-boot

The following changes since commit 85bafb6da4dddfffa78479aa49a72ae48578a4ce:

  Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2014-11-26 11:23:26 -0500)

are available in the git repository at:

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

for you to fetch changes up to 6cec63d59dc102e87077cd1d85f3c1b9cdcad239:

  MIPS: bootm: remove unused or redundant header files (2014-11-27 16:20:37 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (8):
      MIPS: fix setup of initial stack frame
      MIPS: dbau1x00: switch to generic board
      MIPS: pb1x00: switch to generic board
      MIPS: qemu_mips: switch to generic board
      MIPS: vct: switch to generic board
      MIPS: remove board.c
      MIPS: bootm: add missing initramfs relocation
      MIPS: bootm: remove unused or redundant header files

 arch/mips/cpu/mips32/start.S  |   7 +++-
 arch/mips/cpu/mips64/start.S  |   7 +++-
 arch/mips/lib/Makefile        |   3 --
 arch/mips/lib/board.c         | 320 -------------------------------------------------------------------------------------------------------------------------------------------------
 arch/mips/lib/bootm.c         |  23 +++++++++--
 include/configs/dbau1x00.h    |   3 ++
 include/configs/pb1x00.h      |   3 ++
 include/configs/qemu-mips.h   |   3 ++
 include/configs/qemu-mips64.h |   3 ++
 include/configs/vct.h         |   3 ++
 10 files changed, 45 insertions(+), 330 deletions(-)
 delete mode 100644 arch/mips/lib/board.c

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2014-10-31 18:50 Daniel Schwierzeck
@ 2014-11-04  2:33 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2014-11-04  2:33 UTC (permalink / raw)
  To: u-boot

On Fri, Oct 31, 2014 at 07:50:43PM +0100, Daniel Schwierzeck wrote:

> The following changes since commit 571bdf16a78e9e116a93d46f4809c4f8a3f2adb6:
> 
>   arm: interrupt_init: set sp in IRQ/FIQ modes (2014-10-29 09:03:28 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 75a7d0242daf292fe048801e6c3e67364a5ab191:
> 
>   MIPS: add .padding section to linker script (2014-10-31 19:41:54 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141103/d8f09293/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2014-10-31 18:50 Daniel Schwierzeck
  2014-11-04  2:33 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2014-10-31 18:50 UTC (permalink / raw)
  To: u-boot

The following changes since commit 571bdf16a78e9e116a93d46f4809c4f8a3f2adb6:

  arm: interrupt_init: set sp in IRQ/FIQ modes (2014-10-29 09:03:28 -0400)

are available in the git repository at:

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

for you to fetch changes up to 75a7d0242daf292fe048801e6c3e67364a5ab191:

  MIPS: add .padding section to linker script (2014-10-31 19:41:54 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (8):
      MIPS: kconfig: add options for endianess select
      MIPS: kconfig: add options for CPU type select
      MIPS: kconfig: globally define CONFIG_SYS_CPU for MIPS
      MIPS: kconfig: merge targets qemu_mips and qemu_mips64
      MIPS: kconfig: add options for dbau1x00 board variant select
      MIPS: kconfig: add options for vct board variant select
      MIPS: refactor setting of compiler options
      MIPS: add .padding section to linker script

 arch/mips/Kconfig                               | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 arch/mips/config.mk                             |  44 +++++++++++++++++++++++++++++--------------
 arch/mips/cpu/mips32/config.mk                  |  14 --------------
 arch/mips/cpu/mips64/config.mk                  |  14 --------------
 arch/mips/cpu/u-boot.lds                        |  18 ++++++++++++++++++
 board/dbau1x00/Kconfig                          |  21 ++++++++++++++++++---
 board/imgtec/malta/Kconfig                      |   3 ---
 board/micronas/vct/Kconfig                      |  27 +++++++++++++++++++++++---
 board/pb1x00/Kconfig                            |   3 ---
 board/qemu-mips/Kconfig                         |  19 ++-----------------
 configs/dbau1000_defconfig                      |   1 +
 configs/dbau1100_defconfig                      |   3 ++-
 configs/dbau1500_defconfig                      |   3 ++-
 configs/dbau1550_defconfig                      |   3 ++-
 configs/dbau1550_el_defconfig                   |   3 ++-
 configs/malta_defconfig                         |   2 +-
 configs/maltael_defconfig                       |   2 +-
 configs/pb1000_defconfig                        |   1 +
 configs/qemu_mips64_defconfig                   |   5 +++--
 configs/qemu_mips64el_defconfig                 |   5 +++--
 configs/qemu_mips_defconfig                     |   3 ++-
 configs/qemu_mipsel_defconfig                   |   3 ++-
 configs/vct_platinum_defconfig                  |   3 ++-
 configs/vct_platinum_onenand_defconfig          |   4 +++-
 configs/vct_platinum_onenand_small_defconfig    |   5 ++++-
 configs/vct_platinum_small_defconfig            |   4 +++-
 configs/vct_platinumavc_defconfig               |   3 ++-
 configs/vct_platinumavc_onenand_defconfig       |   4 +++-
 configs/vct_platinumavc_onenand_small_defconfig |   5 ++++-
 configs/vct_platinumavc_small_defconfig         |   4 +++-
 configs/vct_premium_defconfig                   |   3 ++-
 configs/vct_premium_onenand_defconfig           |   4 +++-
 configs/vct_premium_onenand_small_defconfig     |   5 ++++-
 configs/vct_premium_small_defconfig             |   4 +++-
 34 files changed, 258 insertions(+), 97 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2014-04-20 11:28 Daniel Schwierzeck
  2014-04-21  8:37 ` Masahiro Yamada
@ 2014-04-23 15:15 ` Tom Rini
  1 sibling, 0 replies; 75+ messages in thread
From: Tom Rini @ 2014-04-23 15:15 UTC (permalink / raw)
  To: u-boot

On Sun, Apr 20, 2014 at 01:28:53PM +0200, Daniel Schwierzeck wrote:

> The following changes since commit b149c4c399b111cec1ff7505ca9fabbeeb4fe394:
> 
>   ARM:tegra20: Remove aes debug prints (2014-04-18 16:14:17 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to ed638b6af2e9089bc998500db7e9c655c02c2493:
> 
>   MAKEALL: remove hard-coded MIPS boards (2014-04-20 13:16:43 +0200)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (3):
>       MIPS: always keep all sections in u-boot ELF binary.
>       MIPS: drop incaip board
>       MAKEALL: remove hard-coded MIPS boards
> 
> Masahiro Yamada (2):
>       mips: xburst: remove remainders of dead board
>       cosmetic: README: add some entries to Directory Hierarchy
> 
> Paul Burton (7):
>       MIPS: stub interrupt_init function
>       MIPS: move mips_io_port_base out of board.c
>       MIPS: define __init_end in u-boot.lds
>       board_f: call init_func_ram on MIPS
>       board_f: call timer_init on MIPS
>       MIPS: allow use of generic board
>       MIPS: Malta: convert to generic board

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140423/7bc7bb64/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2014-04-21  9:10   ` Daniel Schwierzeck
@ 2014-04-21  9:46     ` Masahiro Yamada
  0 siblings, 0 replies; 75+ messages in thread
From: Masahiro Yamada @ 2014-04-21  9:46 UTC (permalink / raw)
  To: u-boot

Hi Daniel,

> > Tom, a conflict will happen anyway when pulling u-boot-mips/master.
> 
> why? The branch is rebased to current master so it would be a
> fast-forward merge.

Sorry, my misunderstanding.

I was seeing your patch file:
http://lists.denx.de/pipermail/u-boot/2014-April/177675.html

You had already rebased it.



Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2014-04-21  8:37 ` Masahiro Yamada
@ 2014-04-21  9:10   ` Daniel Schwierzeck
  2014-04-21  9:46     ` Masahiro Yamada
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2014-04-21  9:10 UTC (permalink / raw)
  To: u-boot

2014-04-21 10:37 GMT+02:00 Masahiro Yamada <yamada.m@jp.panasonic.com>:

>> diff --git a/doc/README.scrapyard b/doc/README.scrapyard
>> index 7d67033..32c85ad 100644
>> --- a/doc/README.scrapyard
>> +++ b/doc/README.scrapyard
>> @@ -114,3 +114,4 @@ PCIPPC2          powerpc     MPC740/MPC750  7c9e89b     2013-02-07  Wolfgang Den
>>  PCIPPC6          powerpc     MPC740/MPC750  -           -           Wolfgang Denk <wd@denx.de>
>>  omap2420h4       arm         omap24xx       -           2013-06-04  Richard Woodruff <r-woodruff2@ti.com>
>>  eNET             x86         x86            7e8c53d     2013-02-14  Graeme Russ <graeme.russ@gmail.com>
>> +incaip           mips        mips32         -           2014-04-17  Wolfgang Denk <wd@denx.de>
>
>
> Commit bef67f1f32 sorted the list in reverse chronological order
> but the patch "MIPS: drop incaip board" broke the rule so soon.  :-(

I saw that the list has been sorted but I didn't know in which order.
If there is a new rule it should be documented in README.scrapyard.

> Tom, a conflict will happen anyway when pulling u-boot-mips/master.

why? The branch is rebased to current master so it would be a
fast-forward merge.

> When you fix the merge conflict, could you move "incaip" to the top of
> the list of README.scrapyard?
>

I can send a follow-up patch which fixes that and also add the commit
id of the removal commit.

-- 
- Daniel

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2014-04-20 11:28 Daniel Schwierzeck
@ 2014-04-21  8:37 ` Masahiro Yamada
  2014-04-21  9:10   ` Daniel Schwierzeck
  2014-04-23 15:15 ` Tom Rini
  1 sibling, 1 reply; 75+ messages in thread
From: Masahiro Yamada @ 2014-04-21  8:37 UTC (permalink / raw)
  To: u-boot

Hi Tom,


On Sun, 20 Apr 2014 13:28:53 +0200
Daniel Schwierzeck <daniel.schwierzeck@gmail.com> wrote:

> The following changes since commit b149c4c399b111cec1ff7505ca9fabbeeb4fe394:
> 
>   ARM:tegra20: Remove aes debug prints (2014-04-18 16:14:17 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to ed638b6af2e9089bc998500db7e9c655c02c2493:
> 
>   MAKEALL: remove hard-coded MIPS boards (2014-04-20 13:16:43 +0200)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (3):
>       MIPS: always keep all sections in u-boot ELF binary.
>       MIPS: drop incaip board



>  Active  mips        mips64         -           -               qemu-mips           qemu_mips64el                        qemu-mips64:SYS_LITTLE_ENDIAN                                                                                                     -
>  Active  nds32       n1213          ag101       AndesTech       adp-ag101           adp-ag101                            -                                                                                                                                 Andes <uboot@andestech.com>
> diff --git a/doc/README.scrapyard b/doc/README.scrapyard
> index 7d67033..32c85ad 100644
> --- a/doc/README.scrapyard
> +++ b/doc/README.scrapyard
> @@ -114,3 +114,4 @@ PCIPPC2          powerpc     MPC740/MPC750  7c9e89b     2013-02-07  Wolfgang Den
>  PCIPPC6          powerpc     MPC740/MPC750  -           -           Wolfgang Denk <wd@denx.de>
>  omap2420h4       arm         omap24xx       -           2013-06-04  Richard Woodruff <r-woodruff2@ti.com>
>  eNET             x86         x86            7e8c53d     2013-02-14  Graeme Russ <graeme.russ@gmail.com>
> +incaip           mips        mips32         -           2014-04-17  Wolfgang Denk <wd@denx.de>


Commit bef67f1f32 sorted the list in reverse chronological order
but the patch "MIPS: drop incaip board" broke the rule so soon.  :-(

Tom, a conflict will happen anyway when pulling u-boot-mips/master.
When you fix the merge conflict, could you move "incaip" to the top of
the list of README.scrapyard?



Best Regard
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2014-04-20 11:28 Daniel Schwierzeck
  2014-04-21  8:37 ` Masahiro Yamada
  2014-04-23 15:15 ` Tom Rini
  0 siblings, 2 replies; 75+ messages in thread
From: Daniel Schwierzeck @ 2014-04-20 11:28 UTC (permalink / raw)
  To: u-boot

The following changes since commit b149c4c399b111cec1ff7505ca9fabbeeb4fe394:

  ARM:tegra20: Remove aes debug prints (2014-04-18 16:14:17 -0400)

are available in the git repository at:

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

for you to fetch changes up to ed638b6af2e9089bc998500db7e9c655c02c2493:

  MAKEALL: remove hard-coded MIPS boards (2014-04-20 13:16:43 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (3):
      MIPS: always keep all sections in u-boot ELF binary.
      MIPS: drop incaip board
      MAKEALL: remove hard-coded MIPS boards

Masahiro Yamada (2):
      mips: xburst: remove remainders of dead board
      cosmetic: README: add some entries to Directory Hierarchy

Paul Burton (7):
      MIPS: stub interrupt_init function
      MIPS: move mips_io_port_base out of board.c
      MIPS: define __init_end in u-boot.lds
      board_f: call init_func_ram on MIPS
      board_f: call timer_init on MIPS
      MIPS: allow use of generic board
      MIPS: Malta: convert to generic board

 MAKEALL                                    |   44 +--
 README                                     |    6 +-
 arch/mips/config.mk                        |    5 +-
 arch/mips/cpu/mips32/incaip/Makefile       |    9 -
 arch/mips/cpu/mips32/incaip/asc_serial.c   |  300 ----------------
 arch/mips/cpu/mips32/incaip/asc_serial.h   |  177 ----------
 arch/mips/cpu/mips32/incaip/config.mk      |    8 -
 arch/mips/cpu/mips32/incaip/incaip_clock.c |  100 ------
 arch/mips/cpu/mips32/incaip/incaip_wdt.S   |   55 ---
 arch/mips/cpu/mips32/interrupts.c          |    5 +
 arch/mips/cpu/mips64/interrupts.c          |    5 +
 arch/mips/cpu/u-boot.lds                   |   57 ++--
 arch/mips/cpu/xburst/Makefile              |    9 -
 arch/mips/cpu/xburst/config.mk             |   16 -
 arch/mips/cpu/xburst/cpu.c                 |  136 --------
 arch/mips/cpu/xburst/jz4740.c              |  235 -------------
 arch/mips/cpu/xburst/jz_serial.c           |  118 -------
 arch/mips/cpu/xburst/start.S               |  179 ----------
 arch/mips/cpu/xburst/timer.c               |  149 --------
 arch/mips/include/asm/inca-ip.h            | 2430
----------------------------------------------------------------------------------------------------------------------------------
 arch/mips/include/asm/u-boot-mips.h        |    2 -
 arch/mips/include/asm/u-boot.h             |    9 +
 arch/mips/lib/Makefile                     |    4 +
 arch/mips/lib/board.c                      |    9 -
 arch/mips/lib/io.c                         |   12 +
 board/incaip/Makefile                      |    9 -
 board/incaip/README                        |   57 ----
 board/incaip/config.mk                     |   16 -
 board/incaip/flash.c                       |  655
-----------------------------------
 board/incaip/incaip.c                      |  110 ------
 board/incaip/lowlevel_init.S               |  287 ----------------
 boards.cfg                                 |    4 -
 common/board_f.c                           |    6 +-
 doc/README.scrapyard                       |    1 +
 drivers/net/Makefile                       |    1 -
 drivers/net/inca-ip_sw.c                   |  793
-------------------------------------------
 include/common.h                           |    3 -
 include/configs/incaip.h                   |  177 ----------
 include/configs/malta.h                    |    3 +
 include/netdev.h                           |    1 -
 40 files changed, 83 insertions(+), 6119 deletions(-)
 delete mode 100644 arch/mips/cpu/mips32/incaip/Makefile
 delete mode 100644 arch/mips/cpu/mips32/incaip/asc_serial.c
 delete mode 100644 arch/mips/cpu/mips32/incaip/asc_serial.h
 delete mode 100644 arch/mips/cpu/mips32/incaip/config.mk
 delete mode 100644 arch/mips/cpu/mips32/incaip/incaip_clock.c
 delete mode 100644 arch/mips/cpu/mips32/incaip/incaip_wdt.S
 delete mode 100644 arch/mips/cpu/xburst/Makefile
 delete mode 100644 arch/mips/cpu/xburst/config.mk
 delete mode 100644 arch/mips/cpu/xburst/cpu.c
 delete mode 100644 arch/mips/cpu/xburst/jz4740.c
 delete mode 100644 arch/mips/cpu/xburst/jz_serial.c
 delete mode 100644 arch/mips/cpu/xburst/start.S
 delete mode 100644 arch/mips/cpu/xburst/timer.c
 delete mode 100644 arch/mips/include/asm/inca-ip.h
 create mode 100644 arch/mips/lib/io.c
 delete mode 100644 board/incaip/Makefile
 delete mode 100644 board/incaip/README
 delete mode 100644 board/incaip/config.mk
 delete mode 100644 board/incaip/flash.c
 delete mode 100644 board/incaip/incaip.c
 delete mode 100644 board/incaip/lowlevel_init.S
 delete mode 100644 drivers/net/inca-ip_sw.c
 delete mode 100644 include/configs/incaip.h

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2014-03-04 22:49 Daniel Schwierzeck
@ 2014-03-05  0:03 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2014-03-05  0:03 UTC (permalink / raw)
  To: u-boot

On Tue, Mar 04, 2014 at 11:49:17PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> I've included a documentation fix which was posted today.
> 
> The following changes since commit eeb72e67619b98d2502fe634a3a5d9953de92ad0:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-arm (2014-02-26
> 16:49:58 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to b2099d16dc90fc94f050dfc9391c645c83d06cb8:
> 
>   malta: correct tcl script path in README.malta (2014-03-04 23:41:54 +0100)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (1):
>       MIPS: fix types u64 and __u64 to unsigned long long
> 
> James Hogan (1):
>       malta: correct tcl script path in README.malta
> 
>  arch/mips/include/asm/types.h | 23 +++--------------------
>  doc/README.malta              |  2 +-
>  2 files changed, 4 insertions(+), 21 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140304/b052e5ff/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2014-03-04 22:49 Daniel Schwierzeck
  2014-03-05  0:03 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2014-03-04 22:49 UTC (permalink / raw)
  To: u-boot

Hi Tom,

I've included a documentation fix which was posted today.

The following changes since commit eeb72e67619b98d2502fe634a3a5d9953de92ad0:

  Merge branch 'master' of git://git.denx.de/u-boot-arm (2014-02-26
16:49:58 -0500)

are available in the git repository at:


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

for you to fetch changes up to b2099d16dc90fc94f050dfc9391c645c83d06cb8:

  malta: correct tcl script path in README.malta (2014-03-04 23:41:54 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (1):
      MIPS: fix types u64 and __u64 to unsigned long long

James Hogan (1):
      malta: correct tcl script path in README.malta

 arch/mips/include/asm/types.h | 23 +++--------------------
 doc/README.malta              |  2 +-
 2 files changed, 4 insertions(+), 21 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2013-11-26 23:56 Daniel Schwierzeck
@ 2013-12-02 16:12 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2013-12-02 16:12 UTC (permalink / raw)
  To: u-boot

On Wed, Nov 27, 2013 at 12:56:23AM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull some additional fixes for MIPS malta board, thanks.
> 
> The following changes since commit d19ad726bcd5d9106f7ba9c750462fcc369f1020:
> 
>   Prepare v2014.01-rc1 (2013-11-25 16:49:32 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 67d4752d1dae768c7ff381272880d4aceeb62085:
> 
>   malta: set CONFIG_SYS_BOOTM_LEN to 64MB (2013-11-26 21:49:42 +0100)
> 
> ----------------------------------------------------------------
> Paul Burton (4):
>       mips: don't hardcode Malta env baudrate
>       malta: correct UART baudrate
>       malta: enable PIIX4 SERIRQ
>       malta: set CONFIG_SYS_BOOTM_LEN to 64MB
> 
>  arch/mips/include/asm/malta.h |  7 +++++++
>  arch/mips/lib/bootm.c         |  6 ++++--
>  board/imgtec/malta/malta.c    | 12 ++++++++++++
>  include/configs/malta.h       |  3 ++-
>  4 files changed, 25 insertions(+), 3 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20131202/255e8314/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2013-11-26 23:56 Daniel Schwierzeck
  2013-12-02 16:12 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2013-11-26 23:56 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull some additional fixes for MIPS malta board, thanks.

The following changes since commit d19ad726bcd5d9106f7ba9c750462fcc369f1020:

  Prepare v2014.01-rc1 (2013-11-25 16:49:32 -0500)

are available in the git repository at:

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

for you to fetch changes up to 67d4752d1dae768c7ff381272880d4aceeb62085:

  malta: set CONFIG_SYS_BOOTM_LEN to 64MB (2013-11-26 21:49:42 +0100)

----------------------------------------------------------------
Paul Burton (4):
      mips: don't hardcode Malta env baudrate
      malta: correct UART baudrate
      malta: enable PIIX4 SERIRQ
      malta: set CONFIG_SYS_BOOTM_LEN to 64MB

 arch/mips/include/asm/malta.h |  7 +++++++
 arch/mips/lib/bootm.c         |  6 ++++--
 board/imgtec/malta/malta.c    | 12 ++++++++++++
 include/configs/malta.h       |  3 ++-
 4 files changed, 25 insertions(+), 3 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2013-11-15 23:03 Daniel Schwierzeck
@ 2013-11-17 19:17 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2013-11-17 19:17 UTC (permalink / raw)
  To: u-boot

On Sat, Nov 16, 2013 at 12:03:02AM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull a fix for Malta board for qemu-1.6 and newer.
> 
> The following changes since commit 63c4f17b2f8017d22241522a48c765073b8791b0:
> 
>   cm_t35: use scf0403 driver (2013-11-12 10:12:07 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 10473d0490a08cc1bc7748e710dc562a64206c30:
> 
>   malta: use unmapped flash base address (2013-11-15 11:16:59 +0100)
> 
> ----------------------------------------------------------------
> Gabor Juhos (1):
>       malta: use unmapped flash base address
> 
>  arch/mips/include/asm/malta.h | 2 +-
>  include/configs/malta.h       | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20131117/67f26ee0/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2013-11-15 23:03 Daniel Schwierzeck
  2013-11-17 19:17 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2013-11-15 23:03 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull a fix for Malta board for qemu-1.6 and newer.

The following changes since commit 63c4f17b2f8017d22241522a48c765073b8791b0:

  cm_t35: use scf0403 driver (2013-11-12 10:12:07 +0100)

are available in the git repository at:

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

for you to fetch changes up to 10473d0490a08cc1bc7748e710dc562a64206c30:

  malta: use unmapped flash base address (2013-11-15 11:16:59 +0100)

----------------------------------------------------------------
Gabor Juhos (1):
      malta: use unmapped flash base address

 arch/mips/include/asm/malta.h | 2 +-
 include/configs/malta.h       | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
- Daniel

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2013-11-09 20:53 Daniel Schwierzeck
  2013-11-11 17:30 ` Tom Rini
@ 2013-11-11 19:13 ` Tom Rini
  1 sibling, 0 replies; 75+ messages in thread
From: Tom Rini @ 2013-11-11 19:13 UTC (permalink / raw)
  To: u-boot

On Sat, Nov 09, 2013 at 09:53:23PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> The following changes since commit 15c5cdf5aa6b292145e5e3e220ec1f42b11eff6f:
> 
>   Merge branch 'master' of git://www.denx.de/git/u-boot-usb
> (2013-11-08 15:25:29 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to ab41305d3b7c1afa29c0b7fafce854c24445423a:
> 
>   malta: define CONFIG_MEMSIZE_IN_BYTES (2013-11-09 17:21:02 +0100)
> 
> ----------------------------------------------------------------
> Gabor Juhos (1):
>       malta: define CONFIG_MEMSIZE_IN_BYTES
> 
> Paul Burton (18):
>       mips32: detect L1 cache sizes if they're not defined
>       pcnet: code style cleanup
>       pcnet: s/le16_to_cpu/cpu_to_le16/ in pcnet_send
>       pcnet: add cache flushing & invalidation
>       pcnet: enable the NOUFLO feature
>       pci.h: allow inclusion in assembly source
>       qemu-malta: rename to just "malta"
>       malta: setup super I/O UARTs
>       malta: support for coreFPGA6 boards
>       malta: display "U-boot" on the LCD screen
>       malta: enable CONFIG_PCNET_79C973, PCNET_HAS_PROM, CONFIG_CMD_DHCP
>       malta: remove cache size definitions
>       malta: disable L2 caches
>       malta: enable RTC support
>       malta: store environment in flash
>       malta: setup PIIX4 interrupt route
>       malta: add script & instructions to flash U-boot
>       malta: add myself to maintainers
> 
>  arch/mips/cpu/mips32/cache.S                |  90
> +++++++++++++++++++++++++++++++++++++-------
>  arch/mips/cpu/mips32/cpu.c                  |  73
> +++++++++++++++++++++++++++++++++---
>  arch/mips/cpu/mips32/start.S                |   2 +-
>  arch/mips/include/asm/malta.h               |  50 ++++++++++++++++++++++---
>  arch/mips/include/asm/mipsregs.h            |   6 +++
>  arch/mips/lib/bootm.c                       |  12 +++---
>  board/{qemu-malta => imgtec/malta}/Makefile |   3 +-
>  board/imgtec/malta/flash-malta-boot.tcl     |  40 ++++++++++++++++++++
>  board/imgtec/malta/lowlevel_init.S          | 238
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  board/imgtec/malta/malta.c                  | 208
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  board/imgtec/malta/superio.c                |  63
> +++++++++++++++++++++++++++++++
>  board/imgtec/malta/superio.h                |  15 ++++++++
>  board/qemu-malta/lowlevel_init.S            |  69
> ----------------------------------
>  board/qemu-malta/qemu-malta.c               |  47 -----------------------
>  boards.cfg                                  |   4 +-
>  doc/README.malta                            |  16 ++++++++
>  drivers/net/pcnet.c                         | 279
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------------
>  drivers/pci/Makefile                        |   1 +
>  drivers/pci/pci_msc01.c                     | 125
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  drivers/rtc/mc146818.c                      |   2 +-
>  include/configs/{qemu-malta.h => malta.h}   |  45 +++++++++++++---------
>  include/msc01.h                             | 135
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  include/pci.h                               |   6 ++-
>  include/pci_ids.h                           |   3 ++
>  include/pci_msc01.h                         |  17 +++++++++
>  25 files changed, 1254 insertions(+), 295 deletions(-)
>  rename board/{qemu-malta => imgtec/malta}/Makefile (81%)
>  create mode 100644 board/imgtec/malta/flash-malta-boot.tcl
>  create mode 100644 board/imgtec/malta/lowlevel_init.S
>  create mode 100644 board/imgtec/malta/malta.c
>  create mode 100644 board/imgtec/malta/superio.c
>  create mode 100644 board/imgtec/malta/superio.h
>  delete mode 100644 board/qemu-malta/lowlevel_init.S
>  delete mode 100644 board/qemu-malta/qemu-malta.c
>  create mode 100644 doc/README.malta
>  create mode 100644 drivers/pci/pci_msc01.c
>  rename include/configs/{qemu-malta.h => malta.h} (72%)
>  create mode 100644 include/msc01.h
>  create mode 100644 include/pci_msc01.h

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20131111/2bff3b9c/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2013-11-11 19:00   ` Daniel Schwierzeck
@ 2013-11-11 19:11     ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2013-11-11 19:11 UTC (permalink / raw)
  To: u-boot

On Mon, Nov 11, 2013 at 08:00:01PM +0100, Daniel Schwierzeck wrote:
> 2013/11/11 Tom Rini <trini@ti.com>:
> > On Sat, Nov 09, 2013 at 09:53:23PM +0100, Daniel Schwierzeck wrote:
> >
> >> Hi Tom,
> >>
> >> The following changes since commit 15c5cdf5aa6b292145e5e3e220ec1f42b11eff6f:
> >>
> >>   Merge branch 'master' of git://www.denx.de/git/u-boot-usb
> >> (2013-11-08 15:25:29 -0500)
> >>
> >> are available in the git repository at:
> >>
> >>
> >>   git://git.denx.de/u-boot-mips.git master
> > [snip]
> >> Paul Burton (18):
> >>       mips32: detect L1 cache sizes if they're not defined
> >>       pcnet: code style cleanup
> >>       pcnet: s/le16_to_cpu/cpu_to_le16/ in pcnet_send
> >>       pcnet: add cache flushing & invalidation
> >
> > So, adding cache flushing and invalidation breaks the PN62 because
> > mpc824x doesn't have cache flushing support.  I'm inclined to take this
> > PR now and then remove PN62 support if it's not fixed.
> 
> hm, I thought qemu-malta was the sole user of pcnet.
> 
> To fix pn62, we could add a stub implementation like it is done in
> arch/powerpc/cpu/mpc83xx/cache.c.

After talking with Wolfgang on IRC, he's just going to delete the
platform (and more mpc824x) as mpc824x is just dead.  I'll be pushing
the MIPS PR shortly.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20131111/3e1e873a/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2013-11-11 17:30 ` Tom Rini
@ 2013-11-11 19:00   ` Daniel Schwierzeck
  2013-11-11 19:11     ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2013-11-11 19:00 UTC (permalink / raw)
  To: u-boot

2013/11/11 Tom Rini <trini@ti.com>:
> On Sat, Nov 09, 2013 at 09:53:23PM +0100, Daniel Schwierzeck wrote:
>
>> Hi Tom,
>>
>> The following changes since commit 15c5cdf5aa6b292145e5e3e220ec1f42b11eff6f:
>>
>>   Merge branch 'master' of git://www.denx.de/git/u-boot-usb
>> (2013-11-08 15:25:29 -0500)
>>
>> are available in the git repository at:
>>
>>
>>   git://git.denx.de/u-boot-mips.git master
> [snip]
>> Paul Burton (18):
>>       mips32: detect L1 cache sizes if they're not defined
>>       pcnet: code style cleanup
>>       pcnet: s/le16_to_cpu/cpu_to_le16/ in pcnet_send
>>       pcnet: add cache flushing & invalidation
>
> So, adding cache flushing and invalidation breaks the PN62 because
> mpc824x doesn't have cache flushing support.  I'm inclined to take this
> PR now and then remove PN62 support if it's not fixed.
>
> --
> Tom

hm, I thought qemu-malta was the sole user of pcnet.

To fix pn62, we could add a stub implementation like it is done in
arch/powerpc/cpu/mpc83xx/cache.c.

-- 
- Daniel

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  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:13 ` Tom Rini
  1 sibling, 1 reply; 75+ messages in thread
From: Tom Rini @ 2013-11-11 17:30 UTC (permalink / raw)
  To: u-boot

On Sat, Nov 09, 2013 at 09:53:23PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> The following changes since commit 15c5cdf5aa6b292145e5e3e220ec1f42b11eff6f:
> 
>   Merge branch 'master' of git://www.denx.de/git/u-boot-usb
> (2013-11-08 15:25:29 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-mips.git master
[snip]
> Paul Burton (18):
>       mips32: detect L1 cache sizes if they're not defined
>       pcnet: code style cleanup
>       pcnet: s/le16_to_cpu/cpu_to_le16/ in pcnet_send
>       pcnet: add cache flushing & invalidation

So, adding cache flushing and invalidation breaks the PN62 because
mpc824x doesn't have cache flushing support.  I'm inclined to take this
PR now and then remove PN62 support if it's not fixed.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20131111/2f19ac1b/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2013-11-09 20:53 Daniel Schwierzeck
  2013-11-11 17:30 ` Tom Rini
  2013-11-11 19:13 ` Tom Rini
  0 siblings, 2 replies; 75+ messages in thread
From: Daniel Schwierzeck @ 2013-11-09 20:53 UTC (permalink / raw)
  To: u-boot

Hi Tom,

The following changes since commit 15c5cdf5aa6b292145e5e3e220ec1f42b11eff6f:

  Merge branch 'master' of git://www.denx.de/git/u-boot-usb
(2013-11-08 15:25:29 -0500)

are available in the git repository at:


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

for you to fetch changes up to ab41305d3b7c1afa29c0b7fafce854c24445423a:

  malta: define CONFIG_MEMSIZE_IN_BYTES (2013-11-09 17:21:02 +0100)

----------------------------------------------------------------
Gabor Juhos (1):
      malta: define CONFIG_MEMSIZE_IN_BYTES

Paul Burton (18):
      mips32: detect L1 cache sizes if they're not defined
      pcnet: code style cleanup
      pcnet: s/le16_to_cpu/cpu_to_le16/ in pcnet_send
      pcnet: add cache flushing & invalidation
      pcnet: enable the NOUFLO feature
      pci.h: allow inclusion in assembly source
      qemu-malta: rename to just "malta"
      malta: setup super I/O UARTs
      malta: support for coreFPGA6 boards
      malta: display "U-boot" on the LCD screen
      malta: enable CONFIG_PCNET_79C973, PCNET_HAS_PROM, CONFIG_CMD_DHCP
      malta: remove cache size definitions
      malta: disable L2 caches
      malta: enable RTC support
      malta: store environment in flash
      malta: setup PIIX4 interrupt route
      malta: add script & instructions to flash U-boot
      malta: add myself to maintainers

 arch/mips/cpu/mips32/cache.S                |  90
+++++++++++++++++++++++++++++++++++++-------
 arch/mips/cpu/mips32/cpu.c                  |  73
+++++++++++++++++++++++++++++++++---
 arch/mips/cpu/mips32/start.S                |   2 +-
 arch/mips/include/asm/malta.h               |  50 ++++++++++++++++++++++---
 arch/mips/include/asm/mipsregs.h            |   6 +++
 arch/mips/lib/bootm.c                       |  12 +++---
 board/{qemu-malta => imgtec/malta}/Makefile |   3 +-
 board/imgtec/malta/flash-malta-boot.tcl     |  40 ++++++++++++++++++++
 board/imgtec/malta/lowlevel_init.S          | 238
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 board/imgtec/malta/malta.c                  | 208
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 board/imgtec/malta/superio.c                |  63
+++++++++++++++++++++++++++++++
 board/imgtec/malta/superio.h                |  15 ++++++++
 board/qemu-malta/lowlevel_init.S            |  69
----------------------------------
 board/qemu-malta/qemu-malta.c               |  47 -----------------------
 boards.cfg                                  |   4 +-
 doc/README.malta                            |  16 ++++++++
 drivers/net/pcnet.c                         | 279
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------------
 drivers/pci/Makefile                        |   1 +
 drivers/pci/pci_msc01.c                     | 125
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/rtc/mc146818.c                      |   2 +-
 include/configs/{qemu-malta.h => malta.h}   |  45 +++++++++++++---------
 include/msc01.h                             | 135
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 include/pci.h                               |   6 ++-
 include/pci_ids.h                           |   3 ++
 include/pci_msc01.h                         |  17 +++++++++
 25 files changed, 1254 insertions(+), 295 deletions(-)
 rename board/{qemu-malta => imgtec/malta}/Makefile (81%)
 create mode 100644 board/imgtec/malta/flash-malta-boot.tcl
 create mode 100644 board/imgtec/malta/lowlevel_init.S
 create mode 100644 board/imgtec/malta/malta.c
 create mode 100644 board/imgtec/malta/superio.c
 create mode 100644 board/imgtec/malta/superio.h
 delete mode 100644 board/qemu-malta/lowlevel_init.S
 delete mode 100644 board/qemu-malta/qemu-malta.c
 create mode 100644 doc/README.malta
 create mode 100644 drivers/pci/pci_msc01.c
 rename include/configs/{qemu-malta.h => malta.h} (72%)
 create mode 100644 include/msc01.h
 create mode 100644 include/pci_msc01.h


-- 
- Daniel

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2013-08-13 10:42 Daniel Schwierzeck
@ 2013-08-13 13:13 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2013-08-13 13:13 UTC (permalink / raw)
  To: u-boot

On Tue, Aug 13, 2013 at 12:42:36PM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> The following changes since commit d62a89bd5b5033649a90fa5bfe0f5b32013ca8f8:
> 
>   mpc5200: Misc updates to a3m071 config header (2013-08-12 21:11:24 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 4b17645d5d60a9aa8ef0810d4fdf962bce407c8a:
> 
>   MIPS: bootm: drop obsolete Qemu specific bootm implementation
> (2013-08-13 11:58:48 +0200)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (8):
>       MIPS: bootm: fix checkpatch.pl warnings
>       MIPS: bootm: optimize kernel entry call
>       MIPS: bootm: add support for LMB
>       MIPS: bootm: refactor initialisation of kernel cmdline
>       MIPS: bootm: refactor initialisation of kernel environment
>       MIPS: bootm: add support for generic relocation of init ramdisks
>       MIPS: bootm: add YAMON style Linux preparation/jump code for Qemu Malta
>       MIPS: bootm: drop obsolete Qemu specific bootm implementation
> 
>  arch/mips/include/asm/config.h  |   3 ++
>  arch/mips/lib/Makefile          |   4 ---
>  arch/mips/lib/bootm.c           | 241
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------
>  arch/mips/lib/bootm_qemu_mips.c |  62 --------------------------------------
>  4 files changed, 160 insertions(+), 150 deletions(-)
>  delete mode 100644 arch/mips/lib/bootm_qemu_mips.c

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130813/0e7ec800/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2013-08-13 10:42 Daniel Schwierzeck
  2013-08-13 13:13 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2013-08-13 10:42 UTC (permalink / raw)
  To: u-boot

Hi Tom,

The following changes since commit d62a89bd5b5033649a90fa5bfe0f5b32013ca8f8:

  mpc5200: Misc updates to a3m071 config header (2013-08-12 21:11:24 +0200)

are available in the git repository at:

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

for you to fetch changes up to 4b17645d5d60a9aa8ef0810d4fdf962bce407c8a:

  MIPS: bootm: drop obsolete Qemu specific bootm implementation
(2013-08-13 11:58:48 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (8):
      MIPS: bootm: fix checkpatch.pl warnings
      MIPS: bootm: optimize kernel entry call
      MIPS: bootm: add support for LMB
      MIPS: bootm: refactor initialisation of kernel cmdline
      MIPS: bootm: refactor initialisation of kernel environment
      MIPS: bootm: add support for generic relocation of init ramdisks
      MIPS: bootm: add YAMON style Linux preparation/jump code for Qemu Malta
      MIPS: bootm: drop obsolete Qemu specific bootm implementation

 arch/mips/include/asm/config.h  |   3 ++
 arch/mips/lib/Makefile          |   4 ---
 arch/mips/lib/bootm.c           | 241
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------
 arch/mips/lib/bootm_qemu_mips.c |  62 --------------------------------------
 4 files changed, 160 insertions(+), 150 deletions(-)
 delete mode 100644 arch/mips/lib/bootm_qemu_mips.c

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2013-07-23 22:42 Daniel Schwierzeck
@ 2013-07-25 13:06 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2013-07-25 13:06 UTC (permalink / raw)
  To: u-boot

On Wed, Jul 24, 2013 at 12:42:14AM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> The following changes since commit 62c175fbb8a0f9a926c88294ea9f7e88eb898f6c:
> 
>   Prepare v2013.07 (2013-07-23 07:58:13 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to ef422fdc0e1684f4809e28ecbedaa922b7b50af5:
> 
>   MIPS: mips32/cache.S: use v1 register for indirect function calls
> (2013-07-24 00:20:07 +0200)
> 
> ----------------------------------------------------------------
> Gabor Juhos (24):
>       MIPS: mips64: fix typos in copyright text of start.S
>       net: pcnet: use pci_virt_to_mem to obtain buffer addresses
>       MIPS: import gt64120.h header from Linux
>       MIPS: start.S: emulate REVISION register for qemu-malta
>       MIPS: qemu-malta: add support for emulated MIPS Malta board
>       MIPS: qemu-malta: add reset support
>       MIPS: qemu-malta: enable flash support
>       MIPS: qemu-malta: setup GT64120 registers as done by YAMON
>       MIPS: qemu-malta: add PCI support
>       MIPS: qemu-malta: bring up ethernet
>       MIPS: mips32/time.c: fix checkpatch errors/warnings
>       MIPS: mips64/interrupt.c: remove superfluous include
>       MIPS: remove obsolete TODO items
>       MIPS: mips32/cache.S: remove superfluous register assignment
>       MIPS: mips32/start.S: use t8 register for dynamic relocation
>       MIPS: mips32/start.S: rework relocation info check
>       MIPS: xburst/start.S: save relocation address in s2 register
>       MIPS: xburst/start.S: save relocation offset in s1 register
>       MIPS: xburst/start.S: save gd in s0 register
>       MIPS: xburst/start.S: use t8 register for dynamic relocation
>       MIPS: xburst/start.S: rework relocation info check
>       MIPS: mips32/cache.S: save return address in t9 register
>       MIPS: mips32/cache.S: store cache line size in t8 register
>       MIPS: mips32/cache.S: use v1 register for indirect function calls

Applied to u-boot/master.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130725/a0ec1615/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2013-07-23 22:42 Daniel Schwierzeck
  2013-07-25 13:06 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2013-07-23 22:42 UTC (permalink / raw)
  To: u-boot

Hi Tom,

The following changes since commit 62c175fbb8a0f9a926c88294ea9f7e88eb898f6c:

  Prepare v2013.07 (2013-07-23 07:58:13 -0400)

are available in the git repository at:

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

for you to fetch changes up to ef422fdc0e1684f4809e28ecbedaa922b7b50af5:

  MIPS: mips32/cache.S: use v1 register for indirect function calls
(2013-07-24 00:20:07 +0200)

----------------------------------------------------------------
Gabor Juhos (24):
      MIPS: mips64: fix typos in copyright text of start.S
      net: pcnet: use pci_virt_to_mem to obtain buffer addresses
      MIPS: import gt64120.h header from Linux
      MIPS: start.S: emulate REVISION register for qemu-malta
      MIPS: qemu-malta: add support for emulated MIPS Malta board
      MIPS: qemu-malta: add reset support
      MIPS: qemu-malta: enable flash support
      MIPS: qemu-malta: setup GT64120 registers as done by YAMON
      MIPS: qemu-malta: add PCI support
      MIPS: qemu-malta: bring up ethernet
      MIPS: mips32/time.c: fix checkpatch errors/warnings
      MIPS: mips64/interrupt.c: remove superfluous include
      MIPS: remove obsolete TODO items
      MIPS: mips32/cache.S: remove superfluous register assignment
      MIPS: mips32/start.S: use t8 register for dynamic relocation
      MIPS: mips32/start.S: rework relocation info check
      MIPS: xburst/start.S: save relocation address in s2 register
      MIPS: xburst/start.S: save relocation offset in s1 register
      MIPS: xburst/start.S: save gd in s0 register
      MIPS: xburst/start.S: use t8 register for dynamic relocation
      MIPS: xburst/start.S: rework relocation info check
      MIPS: mips32/cache.S: save return address in t9 register
      MIPS: mips32/cache.S: store cache line size in t8 register
      MIPS: mips32/cache.S: use v1 register for indirect function calls

 arch/mips/cpu/mips32/cache.S      |  17 ++--
 arch/mips/cpu/mips32/start.S      |  32 +++++---
 arch/mips/cpu/mips32/time.c       |   5 +-
 arch/mips/cpu/mips64/interrupts.c |   1 -
 arch/mips/cpu/mips64/start.S      |   6 +-
 arch/mips/cpu/xburst/start.S      |  41 +++++-----
 arch/mips/include/asm/malta.h     |  23 ++++++
 board/qemu-malta/Makefile         |  45 +++++++++++
 board/qemu-malta/lowlevel_init.S  |  71 +++++++++++++++++
 board/qemu-malta/qemu-malta.c     |  49 ++++++++++++
 boards.cfg                        |   2 +
 doc/README.mips                   |   4 -
 drivers/net/pcnet.c               |   2 +-
 drivers/pci/Makefile              |   1 +
 drivers/pci/pci_gt64120.c         | 178
+++++++++++++++++++++++++++++++++++++++++
 include/configs/qemu-malta.h      | 116 +++++++++++++++++++++++++++
 include/gt64120.h                 | 550
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 include/pci_gt64120.h             |  19 +++++
 18 files changed, 1110 insertions(+), 52 deletions(-)
 create mode 100644 arch/mips/include/asm/malta.h
 create mode 100644 board/qemu-malta/Makefile
 create mode 100644 board/qemu-malta/lowlevel_init.S
 create mode 100644 board/qemu-malta/qemu-malta.c
 create mode 100644 drivers/pci/pci_gt64120.c
 create mode 100644 include/configs/qemu-malta.h
 create mode 100644 include/gt64120.h
 create mode 100644 include/pci_gt64120.h

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2013-01-31  0:21 Daniel Schwierzeck
@ 2013-01-31  0:30 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2013-01-31  0:30 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 31, 2013 at 01:21:39AM +0100, Daniel Schwierzeck wrote:

> The following changes since commit 54b08efcf2f4ff532ce99c53f341a59c193331a5:
> 
>   README.mips: update known issues and TODOs (2013-01-16 10:52:08 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to e93b98e216831d56b3fb0150f9723b1a15fb42a2:
> 
>   MIPS: qi_lb60: remove custom u-boot.lds script (2013-01-31 00:27:58 +0100)
> 
> ----------------------------------------------------------------
> Gabor Juhos (18):
>       MIPS: use inline directive for __in*s functions
>       MIPS: convert IO port accessor functions to 'static inline'
>       MIPS: start{, 64}.S: fill branch delay slots with NOP instructions
>       MIPS: start.S: fix boundary check in relocate_code
>       MIPS: start.S: set sp register directly
>       MIPS: start.S: save reused arguments earlier in relocate_code
>       MIPS: start.S: simplify relocation offset calculation
>       MIPS: start.S: don't save flush_cache parameters in advance
>       MIPS: simplify relocated _G_O_T_ address calculation
>       MIPS: xburst: simplify relocation offset calculation
>       MIPS: remove OUTPUT_FORMAT from linker scripts
>       MIPS: add unified u-boot.lds file
>       MIPS: qemu-mips: use the unified u-boot.lds script
>       MIPS: pb1x00: remove custom u-boot.lds script
>       MIPS: vct: remove custom u-boot.lds script
>       MIPS: incaip: remove custom u-boot.lds script
>       MIPS: dbau1x00: remove custom u-boot.lds script
>       MIPS: qi_lb60: remove custom u-boot.lds script
> 
>  arch/mips/cpu/mips32/config.mk                   |  6 ++++++
>  arch/mips/cpu/mips32/start.S                     | 41
> +++++++++++++----------------------------
>  arch/mips/cpu/mips64/start.S                     | 40
> ++++++++++++----------------------------
>  {board/micronas/vct => arch/mips/cpu}/u-boot.lds | 45
> ++++++++++++++++++++++++++++++---------------
>  arch/mips/cpu/xburst/config.mk                   |  6 ++++++
>  arch/mips/cpu/xburst/start.S                     | 19 +++++--------------
>  arch/mips/include/asm/io.h                       |  8 ++++----
>  board/dbau1x00/u-boot.lds                        | 69
> ---------------------------------------------------------------------
>  board/incaip/u-boot.lds                          | 69
> ---------------------------------------------------------------------
>  board/pb1x00/u-boot.lds                          | 69
> ---------------------------------------------------------------------
>  board/qemu-mips/u-boot.lds                       | 78
> ------------------------------------------------------------------------------
>  board/qi/qi_lb60/u-boot.lds                      | 63
> ---------------------------------------------------------------
>  12 files changed, 76 insertions(+), 437 deletions(-)
>  rename {board/micronas/vct => arch/mips/cpu}/u-boot.lds (73%)
>  delete mode 100644 board/dbau1x00/u-boot.lds
>  delete mode 100644 board/incaip/u-boot.lds
>  delete mode 100644 board/pb1x00/u-boot.lds
>  delete mode 100644 board/qemu-mips/u-boot.lds
>  delete mode 100644 board/qi/qi_lb60/u-boot.lds

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130130/54e27fff/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2013-01-31  0:21 Daniel Schwierzeck
  2013-01-31  0:30 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2013-01-31  0:21 UTC (permalink / raw)
  To: u-boot

The following changes since commit 54b08efcf2f4ff532ce99c53f341a59c193331a5:

  README.mips: update known issues and TODOs (2013-01-16 10:52:08 +0100)

are available in the git repository at:

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

for you to fetch changes up to e93b98e216831d56b3fb0150f9723b1a15fb42a2:

  MIPS: qi_lb60: remove custom u-boot.lds script (2013-01-31 00:27:58 +0100)

----------------------------------------------------------------
Gabor Juhos (18):
      MIPS: use inline directive for __in*s functions
      MIPS: convert IO port accessor functions to 'static inline'
      MIPS: start{, 64}.S: fill branch delay slots with NOP instructions
      MIPS: start.S: fix boundary check in relocate_code
      MIPS: start.S: set sp register directly
      MIPS: start.S: save reused arguments earlier in relocate_code
      MIPS: start.S: simplify relocation offset calculation
      MIPS: start.S: don't save flush_cache parameters in advance
      MIPS: simplify relocated _G_O_T_ address calculation
      MIPS: xburst: simplify relocation offset calculation
      MIPS: remove OUTPUT_FORMAT from linker scripts
      MIPS: add unified u-boot.lds file
      MIPS: qemu-mips: use the unified u-boot.lds script
      MIPS: pb1x00: remove custom u-boot.lds script
      MIPS: vct: remove custom u-boot.lds script
      MIPS: incaip: remove custom u-boot.lds script
      MIPS: dbau1x00: remove custom u-boot.lds script
      MIPS: qi_lb60: remove custom u-boot.lds script

 arch/mips/cpu/mips32/config.mk                   |  6 ++++++
 arch/mips/cpu/mips32/start.S                     | 41
+++++++++++++----------------------------
 arch/mips/cpu/mips64/start.S                     | 40
++++++++++++----------------------------
 {board/micronas/vct => arch/mips/cpu}/u-boot.lds | 45
++++++++++++++++++++++++++++++---------------
 arch/mips/cpu/xburst/config.mk                   |  6 ++++++
 arch/mips/cpu/xburst/start.S                     | 19 +++++--------------
 arch/mips/include/asm/io.h                       |  8 ++++----
 board/dbau1x00/u-boot.lds                        | 69
---------------------------------------------------------------------
 board/incaip/u-boot.lds                          | 69
---------------------------------------------------------------------
 board/pb1x00/u-boot.lds                          | 69
---------------------------------------------------------------------
 board/qemu-mips/u-boot.lds                       | 78
------------------------------------------------------------------------------
 board/qi/qi_lb60/u-boot.lds                      | 63
---------------------------------------------------------------
 12 files changed, 76 insertions(+), 437 deletions(-)
 rename {board/micronas/vct => arch/mips/cpu}/u-boot.lds (73%)
 delete mode 100644 board/dbau1x00/u-boot.lds
 delete mode 100644 board/incaip/u-boot.lds
 delete mode 100644 board/pb1x00/u-boot.lds
 delete mode 100644 board/qemu-mips/u-boot.lds
 delete mode 100644 board/qi/qi_lb60/u-boot.lds

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2013-01-16 10:11 Daniel Schwierzeck
@ 2013-01-21 21:08 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2013-01-21 21:08 UTC (permalink / raw)
  To: u-boot

On Wed, Jan 16, 2013 at 11:11:42AM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> The following changes since commit 3a9d879f6f64585b819af728b53be0a05037fe0d:
> 
>   Prepare v2013.01 (2013-01-15 14:47:42 -0700)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 54b08efcf2f4ff532ce99c53f341a59c193331a5:
> 
>   README.mips: update known issues and TODOs (2013-01-16 10:52:08 +0100)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (3):
>       MIPS: qemu-mips: update and fix example usage in README
>       README.qemu-mips: move README file from board to doc directory
>       README.mips: update known issues and TODOs
> 
> Gabor Juhos (6):
>       MIPS: bootm.c: use debug macro to print debug message
>       MIPS: bootm.c: separate linux jump code
>       MIPS: bootm.c: separate environment initialization
>       MIPS: bootm.c: add support for 'prep' and 'go' subcommands
>       MIPS: qemu-mips: fix a typo in README
>       MIPS: qemu-mips: add '-M mips' switch to the example usage command
> 
>  arch/mips/lib/bootm.c                          | 51
> +++++++++++++++++++++++++++++++++++----------------
>  doc/README.mips                                | 11 ++++++-----
>  board/qemu-mips/README => doc/README.qemu-mips | 30
> ++++++++++++++++++++++--------
>  3 files changed, 63 insertions(+), 29 deletions(-)
>  rename board/qemu-mips/README => doc/README.qemu-mips (88%)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130121/f63d3c02/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2013-01-16 10:11 Daniel Schwierzeck
  2013-01-21 21:08 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2013-01-16 10:11 UTC (permalink / raw)
  To: u-boot

Hi Tom,

The following changes since commit 3a9d879f6f64585b819af728b53be0a05037fe0d:

  Prepare v2013.01 (2013-01-15 14:47:42 -0700)

are available in the git repository at:

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

for you to fetch changes up to 54b08efcf2f4ff532ce99c53f341a59c193331a5:

  README.mips: update known issues and TODOs (2013-01-16 10:52:08 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (3):
      MIPS: qemu-mips: update and fix example usage in README
      README.qemu-mips: move README file from board to doc directory
      README.mips: update known issues and TODOs

Gabor Juhos (6):
      MIPS: bootm.c: use debug macro to print debug message
      MIPS: bootm.c: separate linux jump code
      MIPS: bootm.c: separate environment initialization
      MIPS: bootm.c: add support for 'prep' and 'go' subcommands
      MIPS: qemu-mips: fix a typo in README
      MIPS: qemu-mips: add '-M mips' switch to the example usage command

 arch/mips/lib/bootm.c                          | 51
+++++++++++++++++++++++++++++++++++----------------
 doc/README.mips                                | 11 ++++++-----
 board/qemu-mips/README => doc/README.qemu-mips | 30
++++++++++++++++++++++--------
 3 files changed, 63 insertions(+), 29 deletions(-)
 rename board/qemu-mips/README => doc/README.qemu-mips (88%)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2012-12-12 13:00 Daniel Schwierzeck
@ 2012-12-12 13:52 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2012-12-12 13:52 UTC (permalink / raw)
  To: u-boot

On Wed, Dec 12, 2012 at 02:00:33PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull two bugfixes for MIPS.
> 
> 
> The following changes since commit ea40a05422bdc87a7af5dc349e8adce59f982e72:
> 
>   MIPS: constify address pointer in test_bit() (2012-12-08 21:48:19 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to f88e09de8d4ce7307c6aaf3a3adff53e85b4b5b3:
> 
>   mips: serial: Fix busted manual relocation (2012-12-12 13:20:24 +0100)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (1):
>       MIPS: constify mips_io_port_base
> 
> Joe Hershberger (1):
>       mips: serial: Fix busted manual relocation
> 
>  arch/mips/lib/board.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121212/5ce10fda/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2012-12-12 13:00 Daniel Schwierzeck
  2012-12-12 13:52 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2012-12-12 13:00 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull two bugfixes for MIPS.


The following changes since commit ea40a05422bdc87a7af5dc349e8adce59f982e72:

  MIPS: constify address pointer in test_bit() (2012-12-08 21:48:19 +0100)

are available in the git repository at:

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

for you to fetch changes up to f88e09de8d4ce7307c6aaf3a3adff53e85b4b5b3:

  mips: serial: Fix busted manual relocation (2012-12-12 13:20:24 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (1):
      MIPS: constify mips_io_port_base

Joe Hershberger (1):
      mips: serial: Fix busted manual relocation

 arch/mips/lib/board.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2012-12-08 20:57 Daniel Schwierzeck
@ 2012-12-10 15:07 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2012-12-10 15:07 UTC (permalink / raw)
  To: u-boot

On Sat, Dec 08, 2012 at 09:57:28PM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull two bugfixes for MIPS
> 
> 
> The following changes since commit fd4d564b3c80b111f18c93adb14233a6a7ddb0e9:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-x86 (2012-12-07
> 08:47:59 -0700)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to ea40a05422bdc87a7af5dc349e8adce59f982e72:
> 
>   MIPS: constify address pointer in test_bit() (2012-12-08 21:48:19 +0100)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (1):
>       MIPS: constify address pointer in test_bit()
> 
> Zhi-zhou Zhang (1):
>       MIPS: fix a latent bug on initialize $gp
> 
>  arch/mips/cpu/mips64/start.S   | 7 ++++++-
>  arch/mips/include/asm/bitops.h | 2 +-
>  2 files changed, 7 insertions(+), 2 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121210/b56af23d/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2012-12-08 20:57 Daniel Schwierzeck
  2012-12-10 15:07 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2012-12-08 20:57 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull two bugfixes for MIPS


The following changes since commit fd4d564b3c80b111f18c93adb14233a6a7ddb0e9:

  Merge branch 'master' of git://git.denx.de/u-boot-x86 (2012-12-07
08:47:59 -0700)

are available in the git repository at:


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

for you to fetch changes up to ea40a05422bdc87a7af5dc349e8adce59f982e72:

  MIPS: constify address pointer in test_bit() (2012-12-08 21:48:19 +0100)

----------------------------------------------------------------
Daniel Schwierzeck (1):
      MIPS: constify address pointer in test_bit()

Zhi-zhou Zhang (1):
      MIPS: fix a latent bug on initialize $gp

 arch/mips/cpu/mips64/start.S   | 7 ++++++-
 arch/mips/include/asm/bitops.h | 2 +-
 2 files changed, 7 insertions(+), 2 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2012-11-27 23:19 Daniel Schwierzeck
@ 2012-11-28 13:04 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2012-11-28 13:04 UTC (permalink / raw)
  To: u-boot

On Wed, Nov 28, 2012 at 12:19:39AM +0100, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> please pull a fix for MIPS timers.
> 
> Thanks,
> Daniel
> 
> 
> The following changes since commit 178d0cc1a4c73c3341afbeb2a93b172de8c96bd1:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-video (2012-11-19
> 09:28:04 -0700)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 8ab36d2e5490ea7bd5a39fd65210533a6c478e28:
> 
>   MIPS: do not initialize timestamp variable before relocate_code
> (2012-11-25 21:50:43 +0100)
> 
> ----------------------------------------------------------------
> Zhi-zhou Zhang (1):
>       MIPS: do not initialize timestamp variable before relocate_code
> 
>  arch/mips/cpu/mips32/time.c | 1 -
>  arch/mips/cpu/mips64/time.c | 1 -
>  2 files changed, 2 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121128/b749169f/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2012-11-27 23:19 Daniel Schwierzeck
  2012-11-28 13:04 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2012-11-27 23:19 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull a fix for MIPS timers.

Thanks,
Daniel


The following changes since commit 178d0cc1a4c73c3341afbeb2a93b172de8c96bd1:

  Merge branch 'master' of git://git.denx.de/u-boot-video (2012-11-19
09:28:04 -0700)

are available in the git repository at:


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

for you to fetch changes up to 8ab36d2e5490ea7bd5a39fd65210533a6c478e28:

  MIPS: do not initialize timestamp variable before relocate_code
(2012-11-25 21:50:43 +0100)

----------------------------------------------------------------
Zhi-zhou Zhang (1):
      MIPS: do not initialize timestamp variable before relocate_code

 arch/mips/cpu/mips32/time.c | 1 -
 arch/mips/cpu/mips64/time.c | 1 -
 2 files changed, 2 deletions(-)

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2012-10-16 22:01 Daniel Schwierzeck
@ 2012-10-17 21:10 ` Tom Rini
  0 siblings, 0 replies; 75+ messages in thread
From: Tom Rini @ 2012-10-17 21:10 UTC (permalink / raw)
  To: u-boot

On Wed, Oct 17, 2012 at 12:01:47AM +0200, Daniel Schwierzeck wrote:

> Hi Tom,
> 
> The following changes since commit bd23b22badadcdc414a900828253961fc5ec6c39:
> 
>   Merge branch 'agust at denx.de-next' of
> git://git.denx.de/u-boot-staging (2012-10-15 13:37:22 -0700)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to 6b2eba1b7cd661fc6b2b0e0d4d039d1c299e2e07:
> 
>   MIPS: qemu_mips.h: cleanup coding style and checkpatch.pl issues
> (2012-10-16 15:02:08 +0200)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (1):
>       MIPS: qemu_mips.h: cleanup coding style and checkpatch.pl issues
> 
> 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/cpu/mips32/cache.S        |  10 ++---
>  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/cpu.c          |  12 +++---
>  arch/mips/cpu/xburst/start.S        |   4 +-
>  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 +++
>  board/qemu-mips/config.mk           |  10 -----
>  board/qemu-mips/u-boot.lds          |   8 ++++
>  boards.cfg                          |   2 +
>  examples/standalone/mips64.lds      |  59 +++++++++++++++++++++++++++
>  include/configs/qemu-mips.h         |  55 +++++++++++++------------
>  include/configs/qemu-mips64.h       | 175
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  22 files changed, 1155 insertions(+), 98 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
>  delete mode 100644 board/qemu-mips/config.mk
>  create mode 100644 examples/standalone/mips64.lds
>  create mode 100644 include/configs/qemu-mips64.h

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20121017/3ae38fdd/attachment.pgp>

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2012-10-16 22:01 Daniel Schwierzeck
  2012-10-17 21:10 ` Tom Rini
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2012-10-16 22:01 UTC (permalink / raw)
  To: u-boot

Hi Tom,

The following changes since commit bd23b22badadcdc414a900828253961fc5ec6c39:

  Merge branch 'agust at denx.de-next' of
git://git.denx.de/u-boot-staging (2012-10-15 13:37:22 -0700)

are available in the git repository at:


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

for you to fetch changes up to 6b2eba1b7cd661fc6b2b0e0d4d039d1c299e2e07:

  MIPS: qemu_mips.h: cleanup coding style and checkpatch.pl issues
(2012-10-16 15:02:08 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (1):
      MIPS: qemu_mips.h: cleanup coding style and checkpatch.pl issues

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/cpu/mips32/cache.S        |  10 ++---
 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/cpu.c          |  12 +++---
 arch/mips/cpu/xburst/start.S        |   4 +-
 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 +++
 board/qemu-mips/config.mk           |  10 -----
 board/qemu-mips/u-boot.lds          |   8 ++++
 boards.cfg                          |   2 +
 examples/standalone/mips64.lds      |  59 +++++++++++++++++++++++++++
 include/configs/qemu-mips.h         |  55 +++++++++++++------------
 include/configs/qemu-mips64.h       | 175
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 22 files changed, 1155 insertions(+), 98 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
 delete mode 100644 board/qemu-mips/config.mk
 create mode 100644 examples/standalone/mips64.lds
 create mode 100644 include/configs/qemu-mips64.h

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

* [U-Boot] [GIT PULL] u-boot-mips/master
  2012-06-03 22:04 Daniel Schwierzeck
@ 2012-06-07 21:39 ` Wolfgang Denk
  0 siblings, 0 replies; 75+ messages in thread
From: Wolfgang Denk @ 2012-06-07 21:39 UTC (permalink / raw)
  To: u-boot

Dear Daniel Schwierzeck,

In message <1338761093-27598-1-git-send-email-daniel.schwierzeck@googlemail.com> you wrote:
> Dear Wolfgang,
> 
> please pull some checkpatch.pl cleanups for MIPS.
> 
> The following changes since commit 4398d55991eb3c2484a2a8e991d701e5d7a64874:
> 
>   net: sh-eth: Add support Gigabit of SH7734 (2012-05-23 17:53:09 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mips.git master
> 
> for you to fetch changes up to e034ea3b77baf90ab8dde2c1beeb22704b01fb2d:
> 
>   MIPS: board.c: move extern declarations to u-boot-mips.h (2012-06-03 23:46:04 +0200)
> 
> ----------------------------------------------------------------
> Daniel Schwierzeck (3):
>       MIPS: bootm.c: make checkpatch.pl clean
>       MIPS: bootm_qemu_mips.c: make checkpatch.pl clean
>       MIPS: board.c: move extern declarations to u-boot-mips.h
> 
>  arch/mips/include/asm/u-boot-mips.h |   11 ++++
>  arch/mips/lib/board.c               |    7 ---
>  arch/mips/lib/bootm.c               |  102 +++++++++++++++++------------------
>  arch/mips/lib/bootm_qemu_mips.c     |   26 ++++-----
>  include/common.h                    |    3 ++
>  5 files changed, 79 insertions(+), 70 deletions(-)
>  create mode 100644 arch/mips/include/asm/u-boot-mips.h

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
What kind of love is that?  Not to be loved; never to have shown love.
	-- Commissioner Nancy Hedford, "Metamorphosis",
	   stardate 3219.8

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

* [U-Boot] [GIT PULL] u-boot-mips/master
@ 2012-06-03 22:04 Daniel Schwierzeck
  2012-06-07 21:39 ` Wolfgang Denk
  0 siblings, 1 reply; 75+ messages in thread
From: Daniel Schwierzeck @ 2012-06-03 22:04 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

please pull some checkpatch.pl cleanups for MIPS.

The following changes since commit 4398d55991eb3c2484a2a8e991d701e5d7a64874:

  net: sh-eth: Add support Gigabit of SH7734 (2012-05-23 17:53:09 -0500)

are available in the git repository at:

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

for you to fetch changes up to e034ea3b77baf90ab8dde2c1beeb22704b01fb2d:

  MIPS: board.c: move extern declarations to u-boot-mips.h (2012-06-03 23:46:04 +0200)

----------------------------------------------------------------
Daniel Schwierzeck (3):
      MIPS: bootm.c: make checkpatch.pl clean
      MIPS: bootm_qemu_mips.c: make checkpatch.pl clean
      MIPS: board.c: move extern declarations to u-boot-mips.h

 arch/mips/include/asm/u-boot-mips.h |   11 ++++
 arch/mips/lib/board.c               |    7 ---
 arch/mips/lib/bootm.c               |  102 +++++++++++++++++------------------
 arch/mips/lib/bootm_qemu_mips.c     |   26 ++++-----
 include/common.h                    |    3 ++
 5 files changed, 79 insertions(+), 70 deletions(-)
 create mode 100644 arch/mips/include/asm/u-boot-mips.h

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

end of thread, other threads:[~2018-09-24 15:01 UTC | newest]

Thread overview: 75+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-16 20:45 [U-Boot] [GIT PULL] u-boot-mips/master Daniel Schwierzeck
2016-01-17  3:00 ` 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
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
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

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.