All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marek Vasut <marek.vasut@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PULL] u-boot-sh/master
Date: Thu, 12 Apr 2018 05:28:35 +0200	[thread overview]
Message-ID: <e51f0023-d18b-b087-fbc8-8e660daa0c50@gmail.com> (raw)

The following changes since commit
d79dfd4519c3f357a2523acfeb26eca6f59eae4d:





  spl: ram: Add TPL Kconfig symbols (2018-04-11 13:22:06 -0400)





are available in the Git repository at:

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

for you to fetch changes up to 97ed677831e45b789fc19bd807273ff34486efb8:

  ARM: rmobile: Set maximum kernel size to 64 MiB on Gen3 (2018-04-11
23:19:52 +0200)

----------------------------------------------------------------
Marek Vasut (36):
      ARM: rmobile: Split U-Boot and SPL sources on Porter
      ARM: rmobile: Do not init caches in TPL before DRAM
      ARM: rmobile: Add TPL support on R8A7791 M2 Porter
      ARM: rmobile: Add JTAG recovery support for M2 Porter
      ARM: rmobile: Enable HUSH on M2 Porter
      mmc: uniphier: Split out SoC specific bits from the driver
      mmc: renesas-sdhi: Add Renesas SDHI Kconfig entry
      ARM: rmobile: Switch to CONFIG_RENESAS_SDHI
      mmc: uniphier: Factor out FIFO accessors
      mmc: uniphier: Drop useless check
      mmc: uniphier: Add support for 16bit variant
      mmc: uniphier: Allow passing quirks to the probe function
      mmc: renesas-sdhi: Handle 16bit IP
      mmc: matsushita-common: Use mmc_of_parse()
      mmc: matsushita-common: Add Renesas RCar quirks
      mmc: matsushita-common: Handle Renesas div-by-1
      mmc: matsushita-common: Handle DMA completion flag differences
      mmc: matsushita-common: Handle bus width 0
      mmc: matsushita-common: Always check controller version
      mmc: matsushita-common: Properly handle pin voltage configuration
      mmc: matsushita-common: Export register access functions
      mmc: renesas-sdhi: Add Renesas SDR104/HS200 tuning support
      ARM: rmobile: Enable HS200 mode on RCar Gen3
      mmc: matsushita-common: Special case only select registers in 16bit
      mmc: matsushita-common: Correctly set mode in 16bit
      mmc: matsushita-common: Wait for command completion
      mmc: matsushita-common: Add missing else
      mmc: renesas-sdhi: Wait after reconfiguring pins
      mtd: rpc: Add Renesas RPC Hyperflash driver
      mtd: spi: Add Renesas RPC SPI-flash driver
      spi: sh_qspi: Replace data types with short ones
      spi: sh_qspi: Drop SPBDCR wait
      spi: sh_qspi: Replace ad hoc waiting with wait_for_bit
      spi: sh_qspi: Make use of the 32byte FIFO
      ARM: rmobile: Fix the memory map on Gen3
      ARM: rmobile: Set maximum kernel size to 64 MiB on Gen3

 arch/arm/mach-rmobile/Kconfig.32             |   1 +
 arch/arm/mach-rmobile/cpu_info.c             |   3 -
 arch/arm/mach-rmobile/include/mach/boot0.h   |  24 ++++
 arch/arm/mach-rmobile/include/mach/rmobile.h |   1 -
 arch/arm/mach-rmobile/lowlevel_init_ca15.S   |   2 +
 arch/arm/mach-rmobile/memmap-gen3.c          |  92 ++--------------
 board/renesas/porter/Makefile                |   4 +
 board/renesas/porter/porter.c                |  22 ----
 board/renesas/porter/porter_spl.c            | 495
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 configs/porter_defconfig                     |  23 +++-
 configs/r8a7795_salvator-x_defconfig         |   6 +-
 configs/r8a7795_ulcb_defconfig               |   6 +-
 configs/r8a77965_salvator-x_defconfig        |   2 +-
 configs/r8a7796_salvator-x_defconfig         |   6 +-
 configs/r8a7796_ulcb_defconfig               |   6 +-
 configs/r8a77970_eagle_defconfig             |   6 +-
 configs/r8a77995_draak_defconfig             |   6 +-
 drivers/mmc/Kconfig                          |  15 ++-
 drivers/mmc/Makefile                         |   3 +-
 drivers/mmc/matsushita-common.c              | 787
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/mmc/matsushita-common.h              | 151
++++++++++++++++++++++++++
 drivers/mmc/renesas-sdhi.c                   | 368
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/mmc/uniphier-sd.c                    | 850
++--------------------------------------------------------------------------------------------------------------------------------------------
 drivers/mtd/Kconfig                          |   7 ++
 drivers/mtd/Makefile                         |   1 +
 drivers/mtd/renesas_rpc_hf.c                 | 398
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/spi/Kconfig                          |   8 ++
 drivers/spi/Makefile                         |   1 +
 drivers/spi/renesas_rpc_spi.c                | 465
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/spi/sh_qspi.c                        | 119 ++++++++++----------
 include/configs/porter.h                     |   6 +
 include/configs/rcar-gen3-common.h           |   1 +
 32 files changed, 2867 insertions(+), 1018 deletions(-)
 create mode 100644 arch/arm/mach-rmobile/include/mach/boot0.h
 create mode 100644 board/renesas/porter/porter_spl.c
 create mode 100644 drivers/mmc/matsushita-common.c
 create mode 100644 drivers/mmc/matsushita-common.h
 create mode 100644 drivers/mmc/renesas-sdhi.c
 create mode 100644 drivers/mtd/renesas_rpc_hf.c
 create mode 100644 drivers/spi/renesas_rpc_spi.c

             reply	other threads:[~2018-04-12  3:28 UTC|newest]

Thread overview: 118+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-12  3:28 Marek Vasut [this message]
2018-04-12  3:55 ` [U-Boot] [PULL] u-boot-sh/master Masahiro Yamada
2018-04-13 16:57 ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2019-11-22 12:39 Marek Vasut
2019-11-22 22:15 ` Tom Rini
2019-10-05 16:20 Marek Vasut
2019-10-06  0:09 ` Tom Rini
2019-09-15 20:41 Marek Vasut
2019-09-16 11:21 ` Tom Rini
2019-09-07 17:31 Marek Vasut
2019-09-09  1:13 ` Tom Rini
2019-08-29 12:07 Marek Vasut
2019-08-31 13:28 ` Tom Rini
2019-08-31 13:37   ` Marek Vasut
2019-09-02 14:13 ` Tom Rini
2019-08-10 21:35 Marek Vasut
2019-08-11  1:13 ` Tom Rini
2019-07-30 12:07 Marek Vasut
2019-07-31 12:33 ` Tom Rini
2019-06-14 10:44 Marek Vasut
2019-06-17 15:19 ` Tom Rini
2019-05-26 23:14 Marek Vasut
2019-05-27 18:35 ` Tom Rini
2019-05-15 22:52 Marek Vasut
2019-05-17 11:15 ` Tom Rini
2019-05-11 23:54 Marek Vasut
2019-05-14 14:07 ` Tom Rini
2019-05-07 13:29 Marek Vasut
2019-05-07 18:13 ` Tom Rini
2019-05-05 19:18 Marek Vasut
2019-05-07  2:43 ` Tom Rini
2019-04-10 14:47 Marek Vasut
2019-04-11 22:15 ` Tom Rini
2019-04-02  1:16 Marek Vasut
2019-04-02 18:05 ` Tom Rini
2019-03-26 17:43 Marek Vasut
2019-03-29  1:24 ` Tom Rini
2019-03-10 13:26 Marek Vasut
2019-03-11 19:40 ` Tom Rini
2019-03-04 21:33 Marek Vasut
2019-03-05  2:48 ` Tom Rini
2019-02-28 21:23 Marek Vasut
2019-03-01 12:59 ` Tom Rini
2019-02-16 17:12 Marek Vasut
2019-02-18 14:29 ` Tom Rini
2019-02-08 10:19 Marek Vasut
2019-02-09  0:17 ` Tom Rini
2019-02-09 10:04   ` Marek Vasut
2019-02-09 12:46     ` Tom Rini
2019-02-09 13:36       ` Marek Vasut
2019-02-09 23:11         ` Marek Vasut
2019-02-11  1:05           ` Tom Rini
2018-12-10  4:53 Marek Vasut
2018-12-10 15:18 ` Tom Rini
2018-12-04 13:51 Marek Vasut
2018-12-05  3:12 ` Tom Rini
2018-12-03 19:08 Marek Vasut
2018-12-04  4:48 ` Tom Rini
2018-11-04  9:15 Marek Vasut
2018-11-05 12:23 ` Tom Rini
2018-10-19 10:29 Marek Vasut
2018-10-19 16:56 ` Tom Rini
2018-10-09 22:24 Marek Vasut
2018-10-11 14:10 ` Tom Rini
2018-10-05 21:27 Marek Vasut
2018-10-06 12:57 ` Tom Rini
2018-09-16  1:12 Marek Vasut
2018-09-17 12:03 ` Tom Rini
2018-08-30 14:11 Marek Vasut
2018-08-30 21:33 ` Tom Rini
2018-08-17 10:10 Marek Vasut
2018-08-17 13:56 ` Tom Rini
2018-07-26  7:35 Marek Vasut
2018-07-26 19:53 ` Tom Rini
2018-06-20  4:40 Marek Vasut
2018-06-21 18:21 ` Tom Rini
2018-06-17  0:02 Marek Vasut
2018-06-18 16:59 ` Tom Rini
2018-06-19  1:27   ` Marek Vasut
2018-06-13  4:05 Marek Vasut
2018-06-14 11:19 ` Tom Rini
2018-06-14 11:35   ` Marek Vasut
2018-06-14 13:07     ` Tom Rini
2018-06-14 20:58       ` Marek Vasut
2018-06-14 21:42         ` Tom Rini
2018-06-15  4:09           ` Marek Vasut
2018-06-15 11:46             ` Tom Rini
2018-06-18 14:24           ` Bin Meng
2018-06-01 23:07 Marek Vasut
2018-06-02 21:12 ` Tom Rini
2018-05-20 10:08 Marek Vasut
2018-05-21  1:59 ` Tom Rini
2018-05-02 23:49 Marek Vasut
2018-05-04 13:05 ` Tom Rini
2018-04-26 23:11 Marek Vasut
2018-04-27 11:20 ` Tom Rini
2018-04-22  3:29 Marek Vasut
2018-04-22 21:37 ` Tom Rini
2018-04-18 19:57 Marek Vasut
2018-04-19  3:14 ` Tom Rini
2018-04-20 13:46   ` Marek Vasut
2018-04-20 13:54     ` Tom Rini
2018-04-14 22:38 Marek Vasut
2018-04-15 17:52 ` Tom Rini
2018-04-14  9:20 Marek Vasut
2018-03-05 20:33 Marek Vasut
2018-03-06  1:28 ` Tom Rini
2018-03-01 17:34 Marek Vasut
2018-03-02  2:32 ` Tom Rini
2018-03-02  8:52   ` Marek Vasut
2018-02-23 16:58 Marek Vasut
2018-02-23 20:18 ` Tom Rini
2018-02-19  4:20 Marek Vasut
2018-02-20  4:00 ` Tom Rini
2018-02-17 21:02 Marek Vasut
2018-02-17 21:10 ` Tom Rini
2018-02-16 16:00 Marek Vasut
2018-02-17 20:52 ` Tom Rini

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=e51f0023-d18b-b087-fbc8-8e660daa0c50@gmail.com \
    --to=marek.vasut@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.