All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andre Przywara <andre.przywara@arm.com>
To: Tom Rini <trini@konsulko.com>
Cc: Simon Glass <sjg@chromium.org>,
	Jagan Teki <jagan@amarulasolutions.com>,
	Jernej Skrabec <jernej.skrabec@siol.net>,
	Samuel Holland <samuel@sholland.org>,
	Chen-Yu Tsai <wens@csie.org>, Icenowy Zheng <icenowy@aosc.io>,
	Arnaud Ferraris <arnaud.ferraris@gmail.com>,
	u-boot@lists.denx.de, linux-sunxi@googlegroups.com,
	linux-sunxi@lists.linux.dev
Subject: [GIT PULL] sunxi: First changes for v2021.07 merge window
Date: Fri, 16 Apr 2021 10:22:00 +0100	[thread overview]
Message-ID: <20210416092200.7752-1-andre.przywara@arm.com> (raw)


Hi Tom,

please pull this branch, containing the first part of the 2021.07 changes.

This adds support for devices with R40 dual rank DRAM, and asymmetric
A64 DRAM devices like the Pinephone/3GB.
Also we enable automatic gzipped kernel support, and allow scripted
DT overlay support. The rest of the patches are cleanups, but also
some sunxi-specific preparatory patches for USB3.0 and improved HDMI
support. The bulk of those changes will go through other trees, though.

Build-tested for all 156 sunxi boards, and boot tested on a A64, A20, R40,
H5, H6 and H616 board. USB, SD card, eMMC, HDMI and Ethernet all work
there (where applicable), with the exception of Ethernet on the H5. Since
this is already broken in v2021.04, I will send a separate fix.

Thanks,
Andre

==============

The following changes since commit 45b3cf88da24206a6cb847efe837fddc120af3e8:

  Merge https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq (2021-04-15 13:11:19 -0400)

are available in the Git repository at:

  https://source.denx.de/u-boot/custodians/u-boot-sunxi.git master

for you to fetch changes up to 599177ed5139dbab112d0c9603e18382d0c642ba:

  sunxi: video: select dw-hdmi in Kconfig, not Makefile (2021-04-16 01:12:59 +0100)

----------------------------------------------------------------
Arnaud Ferraris (1):
      sunxi: arm64: Add addresses for compressed kernel load

Icenowy Zheng (2):
      sunxi: support asymmetric dual rank DRAM on A64/R40
      sunxi: enable dual rank memory on R40

Jernej Skrabec (2):
      sunxi: add fdtoverlay_addr_r environment variable
      sunxi: video: select dw-hdmi in Kconfig, not Makefile

Samuel Holland (4):
      clk: sunxi: Add a dummy clock driver for the RTC
      clk: sunxi: h6: Add XHCI clocks
      sunxi: binman: Respect the default FIT configuration
      sunxi: binman: Do not hardcode U-Boot load address

 arch/arm/dts/sunxi-u-boot.dtsi                  |   4 +-
 arch/arm/include/asm/arch-sunxi/dram_sunxi_dw.h |  11 +-
 arch/arm/mach-sunxi/Kconfig                     |   1 +
 arch/arm/mach-sunxi/dram_sunxi_dw.c             | 149 +++++++++++++++++++-----
 drivers/clk/sunxi/Makefile                      |   2 +
 drivers/clk/sunxi/clk_h6.c                      |   2 +
 drivers/clk/sunxi/clk_sun6i_rtc.c               |  35 ++++++
 drivers/video/sunxi/Makefile                    |   2 +-
 include/configs/sunxi-common.h                  |  64 ++++++----
 9 files changed, 215 insertions(+), 55 deletions(-)
 create mode 100644 drivers/clk/sunxi/clk_sun6i_rtc.c

WARNING: multiple messages have this Message-ID (diff)
From: Andre Przywara <andre.przywara@arm.com>
To: u-boot@lists.denx.de
Subject: [GIT PULL] sunxi: First changes for v2021.07 merge window
Date: Fri, 16 Apr 2021 10:22:00 +0100	[thread overview]
Message-ID: <20210416092200.7752-1-andre.przywara@arm.com> (raw)


Hi Tom,

please pull this branch, containing the first part of the 2021.07 changes.

This adds support for devices with R40 dual rank DRAM, and asymmetric
A64 DRAM devices like the Pinephone/3GB.
Also we enable automatic gzipped kernel support, and allow scripted
DT overlay support. The rest of the patches are cleanups, but also
some sunxi-specific preparatory patches for USB3.0 and improved HDMI
support. The bulk of those changes will go through other trees, though.

Build-tested for all 156 sunxi boards, and boot tested on a A64, A20, R40,
H5, H6 and H616 board. USB, SD card, eMMC, HDMI and Ethernet all work
there (where applicable), with the exception of Ethernet on the H5. Since
this is already broken in v2021.04, I will send a separate fix.

Thanks,
Andre

==============

The following changes since commit 45b3cf88da24206a6cb847efe837fddc120af3e8:

  Merge https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq (2021-04-15 13:11:19 -0400)

are available in the Git repository at:

  https://source.denx.de/u-boot/custodians/u-boot-sunxi.git master

for you to fetch changes up to 599177ed5139dbab112d0c9603e18382d0c642ba:

  sunxi: video: select dw-hdmi in Kconfig, not Makefile (2021-04-16 01:12:59 +0100)

----------------------------------------------------------------
Arnaud Ferraris (1):
      sunxi: arm64: Add addresses for compressed kernel load

Icenowy Zheng (2):
      sunxi: support asymmetric dual rank DRAM on A64/R40
      sunxi: enable dual rank memory on R40

Jernej Skrabec (2):
      sunxi: add fdtoverlay_addr_r environment variable
      sunxi: video: select dw-hdmi in Kconfig, not Makefile

Samuel Holland (4):
      clk: sunxi: Add a dummy clock driver for the RTC
      clk: sunxi: h6: Add XHCI clocks
      sunxi: binman: Respect the default FIT configuration
      sunxi: binman: Do not hardcode U-Boot load address

 arch/arm/dts/sunxi-u-boot.dtsi                  |   4 +-
 arch/arm/include/asm/arch-sunxi/dram_sunxi_dw.h |  11 +-
 arch/arm/mach-sunxi/Kconfig                     |   1 +
 arch/arm/mach-sunxi/dram_sunxi_dw.c             | 149 +++++++++++++++++++-----
 drivers/clk/sunxi/Makefile                      |   2 +
 drivers/clk/sunxi/clk_h6.c                      |   2 +
 drivers/clk/sunxi/clk_sun6i_rtc.c               |  35 ++++++
 drivers/video/sunxi/Makefile                    |   2 +-
 include/configs/sunxi-common.h                  |  64 ++++++----
 9 files changed, 215 insertions(+), 55 deletions(-)
 create mode 100644 drivers/clk/sunxi/clk_sun6i_rtc.c

             reply	other threads:[~2021-04-16  9:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-16  9:22 Andre Przywara [this message]
2021-04-16  9:22 ` [GIT PULL] sunxi: First changes for v2021.07 merge window Andre Przywara
2021-04-18 12:45 ` Tom Rini
2021-04-18 12: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=20210416092200.7752-1-andre.przywara@arm.com \
    --to=andre.przywara@arm.com \
    --cc=arnaud.ferraris@gmail.com \
    --cc=icenowy@aosc.io \
    --cc=jagan@amarulasolutions.com \
    --cc=jernej.skrabec@siol.net \
    --cc=linux-sunxi@googlegroups.com \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=samuel@sholland.org \
    --cc=sjg@chromium.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=wens@csie.org \
    /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.