All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thierry Reding <thierry.reding@gmail.com>
To: arm@kernel.org, soc@kernel.org
Cc: Thierry Reding <thierry.reding@gmail.com>,
	Jon Hunter <jonathanh@nvidia.com>,
	linux-tegra@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 2/6] soc/tegra: Changes for v5.14-rc1
Date: Fri, 11 Jun 2021 18:44:33 +0200	[thread overview]
Message-ID: <20210611164437.3568059-2-thierry.reding@gmail.com> (raw)
In-Reply-To: <20210611164437.3568059-1-thierry.reding@gmail.com>

Hi ARM SoC maintainers,

The following changes since commit 380d2b2d5a0491e47dfa250b40e3d849a922871d:

  regulator: core: Add regulator_sync_voltage_rdev() (2021-06-01 12:13:30 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.14-soc

for you to fetch changes up to e2d0ee225e49a5553986f3138dd2803852a31fd5:

  soc/tegra: fuse: Fix Tegra234-only builds (2021-06-11 13:31:01 +0200)

Thanks,
Thierry

----------------------------------------------------------------
soc/tegra: Changes for v5.14-rc1

These changes implement the core power domain for the PMC, and fix a
couple of minor issues as well as add stubs to help some drivers be
compile tested more easily.

----------------------------------------------------------------
Dmitry Osipenko (7):
      soc/tegra: regulators: Bump voltages on system reboot
      soc/tegra: Add stub for soc_is_tegra()
      soc/tegra: Add devm_tegra_core_dev_init_opp_table()
      soc/tegra: fuse: Add stubs needed for compile-testing
      soc/tegra: pmc: Add core power domain
      soc/tegra: pmc: Add driver state syncing
      soc/tegra: regulators: Support core domain state syncing

Thierry Reding (2):
      Merge branch 'for-5.14/regulator' into for-5.14/soc
      soc/tegra: fuse: Fix Tegra234-only builds

Yang Yingliang (1):
      soc/tegra: fuse: Don't return -ENOMEM when allocate lookups failed

 drivers/soc/tegra/Kconfig              |   2 +
 drivers/soc/tegra/common.c             |  97 ++++++++++++++++++++++
 drivers/soc/tegra/fuse/fuse-tegra.c    |   6 +-
 drivers/soc/tegra/fuse/fuse-tegra30.c  |   3 +-
 drivers/soc/tegra/pmc.c                | 144 +++++++++++++++++++++++++++++++++
 drivers/soc/tegra/regulators-tegra20.c |  94 ++++++++++++++++++++-
 drivers/soc/tegra/regulators-tegra30.c |  93 ++++++++++++++++++++-
 include/soc/tegra/common.h             |  31 +++++++
 include/soc/tegra/fuse.h               |  20 ++++-
 include/soc/tegra/pmc.h                |   7 ++
 10 files changed, 485 insertions(+), 12 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Thierry Reding <thierry.reding@gmail.com>
To: arm@kernel.org, soc@kernel.org
Cc: Thierry Reding <thierry.reding@gmail.com>,
	Jon Hunter <jonathanh@nvidia.com>,
	linux-tegra@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 2/6] soc/tegra: Changes for v5.14-rc1
Date: Fri, 11 Jun 2021 18:44:33 +0200	[thread overview]
Message-ID: <20210611164437.3568059-2-thierry.reding@gmail.com> (raw)
Message-ID: <20210611164433.9d8bqMAGlVruh1N-1hO2ZdURtZrGLfIU8Fz8SFxKf7w@z> (raw)
In-Reply-To: <20210611164437.3568059-1-thierry.reding@gmail.com>

Hi ARM SoC maintainers,

The following changes since commit 380d2b2d5a0491e47dfa250b40e3d849a922871d:

  regulator: core: Add regulator_sync_voltage_rdev() (2021-06-01 12:13:30 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.14-soc

for you to fetch changes up to e2d0ee225e49a5553986f3138dd2803852a31fd5:

  soc/tegra: fuse: Fix Tegra234-only builds (2021-06-11 13:31:01 +0200)

Thanks,
Thierry

----------------------------------------------------------------
soc/tegra: Changes for v5.14-rc1

These changes implement the core power domain for the PMC, and fix a
couple of minor issues as well as add stubs to help some drivers be
compile tested more easily.

----------------------------------------------------------------
Dmitry Osipenko (7):
      soc/tegra: regulators: Bump voltages on system reboot
      soc/tegra: Add stub for soc_is_tegra()
      soc/tegra: Add devm_tegra_core_dev_init_opp_table()
      soc/tegra: fuse: Add stubs needed for compile-testing
      soc/tegra: pmc: Add core power domain
      soc/tegra: pmc: Add driver state syncing
      soc/tegra: regulators: Support core domain state syncing

Thierry Reding (2):
      Merge branch 'for-5.14/regulator' into for-5.14/soc
      soc/tegra: fuse: Fix Tegra234-only builds

Yang Yingliang (1):
      soc/tegra: fuse: Don't return -ENOMEM when allocate lookups failed

 drivers/soc/tegra/Kconfig              |   2 +
 drivers/soc/tegra/common.c             |  97 ++++++++++++++++++++++
 drivers/soc/tegra/fuse/fuse-tegra.c    |   6 +-
 drivers/soc/tegra/fuse/fuse-tegra30.c  |   3 +-
 drivers/soc/tegra/pmc.c                | 144 +++++++++++++++++++++++++++++++++
 drivers/soc/tegra/regulators-tegra20.c |  94 ++++++++++++++++++++-
 drivers/soc/tegra/regulators-tegra30.c |  93 ++++++++++++++++++++-
 include/soc/tegra/common.h             |  31 +++++++
 include/soc/tegra/fuse.h               |  20 ++++-
 include/soc/tegra/pmc.h                |   7 ++
 10 files changed, 485 insertions(+), 12 deletions(-)

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

  reply	other threads:[~2021-06-11 16:44 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-11 16:44 [GIT PULL 1/6] dt-bindings: Changes for v5.14-rc1 Thierry Reding
2021-06-11 16:44 ` Thierry Reding
2021-06-11 16:44 ` Thierry Reding [this message]
2021-06-11 16:44   ` [GIT PULL 2/6] soc/tegra: " Thierry Reding
2021-06-11 16:44 ` [GIT PULL 3/6] firmware: tegra: " Thierry Reding
2021-06-11 16:44   ` Thierry Reding
2021-06-11 16:44 ` [GIT PULL 4/6] ARM: tegra: Device tree changes " Thierry Reding
2021-06-11 16:44   ` Thierry Reding
2021-06-11 16:44 ` [GIT PULL 5/6] ARM: tegra: Default configuration " Thierry Reding
2021-06-11 16:44   ` Thierry Reding
2021-06-11 16:44 ` [GIT PULL 6/6] arm64: tegra: Device tree " Thierry Reding
2021-06-11 16:44   ` Thierry Reding
2021-06-15 16:00 ` [GIT PULL 1/6] dt-bindings: Changes " patchwork-bot+linux-soc

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=20210611164437.3568059-2-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 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.