mbox series

ARM SoC fixes for v5.12, part 2

Message ID CAK8P3a3h0QDvv-0yTVOMjx-8vUUcAFTQ6di71b2DwCELHNpPLw@mail.gmail.com (mailing list archive)
State Mainlined, archived
Commit b9a9786a13ea158ee3b23614217f2e3158178421
Headers show
Series ARM SoC fixes for v5.12, part 2 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git tags/arm-fixes-5.12-3

Message

Arnd Bergmann April 18, 2021, 7:23 p.m. UTC
The following changes since commit e49d033bddf5b565044e2abe4241353959bc9120:

  Linux 5.12-rc6 (2021-04-04 14:15:36 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
tags/arm-fixes-5.12-3

for you to fetch changes up to b9a9786a13ea158ee3b23614217f2e3158178421:

  Merge tag 'omap-for-v5.12/fixes-rc6-signed' of
git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into
arm/fixes (2021-04-08 17:56:09 +0200)

----------------------------------------------------------------
ARM SoC fixes for v5.12, part 2

Another smaller set of fixes for three of the Arm platforms:

TI OMAP:

    Fix swapped mmc device order also for omap3 that got changed with the
    recent PROBE_PREFER_ASYNCHRONOUS changes. While eventually the aliases
    should be board specific, all the mmc device instances are all there in
    the SoC, and we do probe them by default so that PM runtime can idle the
    devices if left enabled from the bootloader.

Qualcomm Snapdragon:

    This bypasses the, recently introduced, interconnect handling in the
    GENI (serial engine) driver when running off ACPI, as this causes the
    GENI probe to fail and the Lenovo Yoga C630 to boot without keyboard
    and touchpad.

Allwinner:

    One 32kHz clock fix for the beelink gs1, a CD polarity fix for the SoPine,
    some MAINTAINERS maintainance, and a clk / reset switch to our headers.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>

----------------------------------------------------------------
Andre Przywara (1):
      arm64: dts: allwinner: Fix SD card CD GPIO for SOPine systems

Arnd Bergmann (3):
      Merge tag 'sunxi-fixes-for-5.12-1' of
git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux into
arm/fixes
      Merge tag 'qcom-drivers-fixes-for-5.12' of
git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into
arm/fixes
      Merge tag 'omap-for-v5.12/fixes-rc6-signed' of
git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into
arm/fixes

Chen-Yu Tsai (1):
      arm64: dts: allwinner: h6: Switch to macros for RSB clock/reset indices

Jernej Skrabec (1):
      arm64: dts: allwinner: h6: beelink-gs1: Remove ext. 32 kHz osc reference

Maxime Ripard (2):
      MAINTAINERS: Add our new mailing-list
      MAINTAINERS: Match on allwinner keyword

Shawn Guo (1):
      soc: qcom: geni: shield geni_icc_get() for ACPI boot

Tony Lindgren (3):
      ARM: OMAP2+: Fix warning for omap_init_time_of()
      ARM: dts: Fix swapped mmc order for omap3
      ARM: OMAP2+: Fix uninitialized sr_inst

 MAINTAINERS                                             | 2 ++
 arch/arm/boot/dts/omap3.dtsi                            | 3 +++
 arch/arm/mach-omap2/board-generic.c                     | 2 +-
 arch/arm/mach-omap2/sr_device.c                         | 2 +-
 arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-lts.dts | 4 ++++
 arch/arm64/boot/dts/allwinner/sun50i-a64-sopine.dtsi    | 2 +-
 arch/arm64/boot/dts/allwinner/sun50i-h6-beelink-gs1.dts | 4 ----
 arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi            | 4 ++--
 drivers/soc/qcom/qcom-geni-se.c                         | 3 +++
 9 files changed, 17 insertions(+), 9 deletions(-)

Comments

Arnd Bergmann April 18, 2021, 7:24 p.m. UTC | #1
I forgot to add the '[GIT PULL]' in the subject line, replying to myself
here to ensure it hits the right email folder.

On Sun, Apr 18, 2021 at 9:23 PM Arnd Bergmann <arnd@kernel.org> wrote:
>
> The following changes since commit e49d033bddf5b565044e2abe4241353959bc9120:
>
>   Linux 5.12-rc6 (2021-04-04 14:15:36 -0700)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
> tags/arm-fixes-5.12-3
>
> for you to fetch changes up to b9a9786a13ea158ee3b23614217f2e3158178421:
>
>   Merge tag 'omap-for-v5.12/fixes-rc6-signed' of
> git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into
> arm/fixes (2021-04-08 17:56:09 +0200)
>
> ----------------------------------------------------------------
> ARM SoC fixes for v5.12, part 2
>
> Another smaller set of fixes for three of the Arm platforms:
>
> TI OMAP:
>
>     Fix swapped mmc device order also for omap3 that got changed with the
>     recent PROBE_PREFER_ASYNCHRONOUS changes. While eventually the aliases
>     should be board specific, all the mmc device instances are all there in
>     the SoC, and we do probe them by default so that PM runtime can idle the
>     devices if left enabled from the bootloader.
>
> Qualcomm Snapdragon:
>
>     This bypasses the, recently introduced, interconnect handling in the
>     GENI (serial engine) driver when running off ACPI, as this causes the
>     GENI probe to fail and the Lenovo Yoga C630 to boot without keyboard
>     and touchpad.
>
> Allwinner:
>
>     One 32kHz clock fix for the beelink gs1, a CD polarity fix for the SoPine,
>     some MAINTAINERS maintainance, and a clk / reset switch to our headers.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>
Linus Torvalds April 18, 2021, 8:36 p.m. UTC | #2
On Sun, Apr 18, 2021 at 12:24 PM Arnd Bergmann <arnd@kernel.org> wrote:
>
> I forgot to add the '[GIT PULL]' in the subject line, replying to myself
> here to ensure it hits the right email folder.

Well, the reply hit _my_ search criterion, but the pr-tracker-bot is a
bit more picky.

As a result, I don't think you'll get any automated reply from the bot.

So here's the manual one,

               Linus