From: Marek Vasut <marek.vasut@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PULL] u-boot-sh/rmobile-mx
Date: Wed, 13 Dec 2017 08:45:42 +0100 [thread overview]
Message-ID: <1253f23c-75d9-94da-2f84-ee2624299242@gmail.com> (raw)
The following changes since commit 335f7b1290ce24a729a9689a1db834c743226ca8:
Merge git://git.denx.de/u-boot-mpc85xx (2017-12-08 12:02:01 -0500)
are available in the Git repository at:
git://git.denx.de/u-boot-sh.git rmobile-mx
for you to fetch changes up to 7387d4c23465d1a997c594e9603326f1a50db78d:
ARM: rmobile: Add R8A77995 D3 Draak board (2017-12-09 13:36:27 +0100)
----------------------------------------------------------------
Marek Vasut (16):
clk: rmobile: Fix typo in R8A7796 RPC clock table entry
ARM: rmobile: Add R8A77970 SoC
ARM: rmobile: Add R8A77995 SoC
clk: rmobile: Add R8A77970 V3M clock tables
clk: rmobile: Add R8A77995 D3 clock tables
pinctrl: rmobile: Add R8A77970 V3M PFC tables
pinctrl: rmobile: Add R8A77995 D3 PFC tables
gpio: rmobile: Add R8A77970 V3M compatible
gpio: rmobile: Add R8A77995 D3 compatible
gpio: rmobile: Add generic Gen3 compatible
mmc: uniphier-sd: Add R8A77970 V3M compatible
mmc: uniphier-sd: Add R8A77995 D3 compatible
net: ravb: Add R8A77970 V3M compatible
net: ravb: Add R8A77995 D3 compatible
ARM: rmobile: Add R8A77970 V3M Eagle board
ARM: rmobile: Add R8A77995 D3 Draak board
arch/arm/dts/Makefile | 4 +-
arch/arm/dts/r8a77970-eagle.dts | 87 +++++
arch/arm/dts/r8a77970.dtsi | 392 ++++++++++++++++++++++
arch/arm/dts/r8a77995-draak.dts | 124 +++++++
arch/arm/dts/r8a77995.dtsi | 410
+++++++++++++++++++++++
arch/arm/mach-rmobile/Kconfig.64 | 18 +
arch/arm/mach-rmobile/cpu_info.c | 2 +
arch/arm/mach-rmobile/include/mach/rmobile.h | 2 +
arch/arm/mach-rmobile/memmap-gen3.c | 46 +++
board/renesas/draak/Kconfig | 15 +
board/renesas/draak/MAINTAINERS | 6 +
board/renesas/draak/Makefile | 9 +
board/renesas/draak/draak.c | 133 ++++++++
board/renesas/eagle/Kconfig | 15 +
board/renesas/eagle/MAINTAINERS | 6 +
board/renesas/eagle/Makefile | 9 +
board/renesas/eagle/eagle.c | 110 ++++++
configs/r8a77970_eagle_defconfig | 56 ++++
configs/r8a77995_draak_defconfig | 61 ++++
drivers/clk/renesas/Kconfig | 5 +-
drivers/clk/renesas/clk-rcar-gen3.c | 289 +++++++++++++++-
drivers/gpio/gpio-rcar.c | 3 +
drivers/mmc/uniphier-sd.c | 2 +
drivers/net/ravb.c | 2 +
drivers/pinctrl/renesas/Kconfig | 22 ++
drivers/pinctrl/renesas/Makefile | 2 +
drivers/pinctrl/renesas/pfc-r8a77970.c | 2585
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/pinctrl/renesas/pfc-r8a77995.c | 1813
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/pinctrl/renesas/pfc.c | 22 ++
drivers/pinctrl/renesas/sh_pfc.h | 13 +
include/configs/draak.h | 47 +++
include/configs/eagle.h | 29 ++
include/configs/rcar-gen3-common.h | 4 +
include/dt-bindings/clock/r8a77970-cpg-mssr.h | 48 +++
include/dt-bindings/clock/r8a77995-cpg-mssr.h | 57 ++++
include/dt-bindings/power/r8a77970-sysc.h | 32 ++
include/dt-bindings/power/r8a77995-sysc.h | 23 ++
37 files changed, 6494 insertions(+), 9 deletions(-)
create mode 100644 arch/arm/dts/r8a77970-eagle.dts
create mode 100644 arch/arm/dts/r8a77970.dtsi
create mode 100644 arch/arm/dts/r8a77995-draak.dts
create mode 100644 arch/arm/dts/r8a77995.dtsi
create mode 100644 board/renesas/draak/Kconfig
create mode 100644 board/renesas/draak/MAINTAINERS
create mode 100644 board/renesas/draak/Makefile
create mode 100644 board/renesas/draak/draak.c
create mode 100644 board/renesas/eagle/Kconfig
create mode 100644 board/renesas/eagle/MAINTAINERS
create mode 100644 board/renesas/eagle/Makefile
create mode 100644 board/renesas/eagle/eagle.c
create mode 100644 configs/r8a77970_eagle_defconfig
create mode 100644 configs/r8a77995_draak_defconfig
create mode 100644 drivers/pinctrl/renesas/pfc-r8a77970.c
create mode 100644 drivers/pinctrl/renesas/pfc-r8a77995.c
create mode 100644 include/configs/draak.h
create mode 100644 include/configs/eagle.h
create mode 100644 include/dt-bindings/clock/r8a77970-cpg-mssr.h
create mode 100644 include/dt-bindings/clock/r8a77995-cpg-mssr.h
create mode 100644 include/dt-bindings/power/r8a77970-sysc.h
create mode 100644 include/dt-bindings/power/r8a77995-sysc.h
next reply other threads:[~2017-12-13 7:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-13 7:45 Marek Vasut [this message]
2017-12-14 20:45 ` [U-Boot] [PULL] u-boot-sh/rmobile-mx Tom Rini
-- strict thread matches above, loose matches on Subject: below --
2018-01-27 19:40 Marek Vasut
2018-01-28 2:54 ` Tom Rini
2017-11-30 12:50 Marek Vasut
2017-11-30 18:45 ` 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=1253f23c-75d9-94da-2f84-ee2624299242@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox