All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [GIT PULL] u-boot-mips/master
Date: Wed, 21 Sep 2016 17:49:14 +0200	[thread overview]
Message-ID: <de15a604-076e-fc12-1786-8767bc8d1cee@gmail.com> (raw)

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>

             reply	other threads:[~2016-09-21 15:49 UTC|newest]

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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=de15a604-076e-fc12-1786-8767bc8d1cee@gmail.com \
    --to=daniel.schwierzeck@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.