linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Thierry Reding <thierry.reding@gmail.com>
To: arm@kernel.org, soc@kernel.org
Cc: linux-tegra@vger.kernel.org,
	Thierry Reding <thierry.reding@gmail.com>,
	linux-arm-kernel@lists.infradead.org,
	Jon Hunter <jonathanh@nvidia.com>
Subject: [GIT PULL 09/10] cpuidle: tegra: Changes for v5.7-rc1
Date: Fri, 13 Mar 2020 17:58:47 +0100	[thread overview]
Message-ID: <20200313165848.2915133-9-thierry.reding@gmail.com> (raw)
In-Reply-To: <20200313165848.2915133-1-thierry.reding@gmail.com>

Hi ARM SoC maintainers,

The following changes since commit bb6d3fb354c5ee8d6bde2d576eb7220ea09862b9:

  Linux 5.6-rc1 (2020-02-09 16:08:48 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.7-cpuidle

for you to fetch changes up to 382ac8e22b90e6334d373da03c17b319458b258e:

  cpuidle: tegra: Disable CC6 state if LP2 unavailable (2020-03-13 11:32:01 +0100)

This set of changes was acked by Daniel Lezcano and the preference is to
take this through the ARM SoC tree because it has a dependency on one of
the other branches (tegra-for-5.7-arm-core) that also goes through the
ARM SoC tree.

Thanks,
Thierry

----------------------------------------------------------------
cpuidle: tegra: Changes for v5.7-rc1

These changes unify CPU idle support for Tegra20, Tegra30 and Tegra114.

----------------------------------------------------------------
Dmitry Osipenko (15):
      ARM: tegra: Compile sleep-tegra20/30.S unconditionally
      ARM: tegra: Add tegra_pm_park_secondary_cpu()
      ARM: tegra: Remove pen-locking from cpuidle-tegra20
      ARM: tegra: Change tegra_set_cpu_in_lp2() type to void
      ARM: tegra: Propagate error from tegra_idle_lp2_last()
      ARM: tegra: Expose PM functions required for new cpuidle driver
      ARM: tegra: Rename some of the newly exposed PM functions
      ARM: tegra: Make outer_disable() open-coded
      ARM: tegra: cpuidle: Handle case where secondary CPU hangs on entering LP2
      ARM: tegra: cpuidle: Make abort_flag atomic
      ARM: tegra: cpuidle: Remove unnecessary memory barrier
      cpuidle: Refactor and move out NVIDIA Tegra20 driver into drivers/cpuidle
      cpuidle: tegra: Squash Tegra30 driver into the common driver
      cpuidle: tegra: Squash Tegra114 driver into the common driver
      cpuidle: tegra: Disable CC6 state if LP2 unavailable

Thierry Reding (1):
      Merge branch 'for-5.7/arm/core' into for-5.7/cpuidle

 arch/arm/mach-tegra/Makefile                     |  19 +-
 arch/arm/mach-tegra/cpuidle-tegra114.c           |  89 -----
 arch/arm/mach-tegra/cpuidle-tegra20.c            | 212 ------------
 arch/arm/mach-tegra/cpuidle-tegra30.c            | 132 --------
 arch/arm/mach-tegra/cpuidle.c                    |  50 ---
 arch/arm/mach-tegra/cpuidle.h                    |  21 --
 arch/arm/mach-tegra/irq.c                        |   3 +-
 arch/arm/mach-tegra/pm.c                         |  54 ++--
 arch/arm/mach-tegra/pm.h                         |   4 -
 arch/arm/mach-tegra/reset-handler.S              |  11 -
 arch/arm/mach-tegra/reset.h                      |   9 +-
 arch/arm/mach-tegra/sleep-tegra20.S              | 170 ----------
 arch/arm/mach-tegra/sleep-tegra30.S              |   6 +-
 arch/arm/mach-tegra/sleep.h                      |  15 -
 arch/arm/mach-tegra/tegra.c                      |   7 +-
 drivers/cpuidle/Kconfig.arm                      |   8 +
 drivers/cpuidle/Makefile                         |   1 +
 drivers/cpuidle/cpuidle-tegra.c                  | 392 +++++++++++++++++++++++
 include/soc/tegra/cpuidle.h                      |   2 +-
 {arch/arm/mach-tegra => include/soc/tegra}/irq.h |   8 +-
 include/soc/tegra/pm.h                           |  31 ++
 21 files changed, 483 insertions(+), 761 deletions(-)
 delete mode 100644 arch/arm/mach-tegra/cpuidle-tegra114.c
 delete mode 100644 arch/arm/mach-tegra/cpuidle-tegra20.c
 delete mode 100644 arch/arm/mach-tegra/cpuidle-tegra30.c
 delete mode 100644 arch/arm/mach-tegra/cpuidle.c
 delete mode 100644 arch/arm/mach-tegra/cpuidle.h
 create mode 100644 drivers/cpuidle/cpuidle-tegra.c
 rename {arch/arm/mach-tegra => include/soc/tegra}/irq.h (59%)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2020-03-13 17:01 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-13 16:58 [GIT PULL 01/10] dt-bindings: Changes for v5.7-rc1 Thierry Reding
2020-03-13 16:58 ` [GIT PULL 02/10] firmware: tegra: " Thierry Reding
2020-03-13 16:58 ` [GIT PULL 03/10] soc/tegra: " Thierry Reding
2020-03-13 16:58 ` [GIT PULL 04/10] memory: tegra: " Thierry Reding
2020-03-13 16:58 ` [GIT PULL 05/10] ARM: tegra: Core changes " Thierry Reding
2020-03-13 16:58 ` [GIT PULL 06/10] ARM: tegra: Device tree " Thierry Reding
2020-03-13 16:58 ` [GIT PULL 07/10] ARM: tegra: Default configuration " Thierry Reding
2020-03-13 16:58 ` [GIT PULL 08/10] arm64: tegra: Device tree " Thierry Reding
2020-03-13 16:58 ` Thierry Reding [this message]
2020-03-13 16:58 ` [GIT PULL 10/10] phy: tegra: Changes " Thierry Reding
2020-03-16 13:48   ` Thierry Reding
2020-03-19 14:41     ` Thierry Reding

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=20200313165848.2915133-9-thierry.reding@gmail.com \
    --to=thierry.reding@gmail.com \
    --cc=arm@kernel.org \
    --cc=jonathanh@nvidia.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=soc@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).