All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sudeep Holla <sudeep.holla@arm.com>
To: SoC Team <soc@kernel.org>, ARM SoC Team <arm@kernel.org>,
	ALKML <linux-arm-kernel@lists.infradead.org>
Cc: Sudeep Holla <sudeep.holla@arm.com>,
	Arnd Bergmann <arnd@arndb.de>, Kevin Hilman <khilman@kernel.org>,
	Olof Johansson <olof@lixom.net>
Subject: [GIT PULL] firmware: arm_scmi: Updates for v5.11
Date: Tue, 24 Nov 2020 12:24:12 +0000	[thread overview]
Message-ID: <20201124122412.22386-1-sudeep.holla@arm.com> (raw)

Hi ARM SoC Team,

Please pull ! The tag is based on v5.10-rc2 to avoid conflicts with
the fixes that got merged in -rc2.

Note the hwmon is acked by Guenter to take the changes together.
Also note that the SCMI regulator driver itself is getting queued by
Mark Brown separately and hence I have sent him pull request with
'scmi-voltage-5.11' tag which I have also merged here.

Regards,
Sudeep

-->8

The following changes since commit 3cea11cd5e3b00d91caf0b4730194039b45c5891:

  Linux 5.10-rc2 (2020-11-01 14:43:51 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux.git tags/scmi-updates-5.11

for you to fetch changes up to f83eb664cdb45169338b9633f22eaafc23764f05:

  Merge tag 'scmi-voltage-5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux into for-next/scmi (2020-11-23 16:37:27 +0000)

----------------------------------------------------------------
ARM SCMI updates for v5.11

Two main additions this time:
1. Support for SCMI v3.0 sensor extensions
2. Support for voltage domain management protocol added newly to SCMI v3.0

----------------------------------------------------------------
Cristian Marussi (10):
      firmware: arm_scmi: Rework scmi_sensors_protocol_init
      firmware: arm_scmi: Add SCMI v3.0 sensors descriptors extensions
      dt-bindings: arm: Add support for SCMI Regulators
      firmware: arm_scmi: Add voltage domain management protocol support
      firmware: arm_scmi: Add support to enumerated SCMI voltage domain device
      hwmon: (scmi) Update hwmon internal scale data type
      firmware: arm_scmi: Add SCMI v3.0 sensors timestamped reads
      firmware: arm_scmi: Add SCMI v3.0 sensor configuration support
      firmware: arm_scmi: Add SCMI v3.0 sensor notifications
      firmware: arm_scmi: Remove residual _le structs naming

Qinglang Miao (1):
      firmware: arm_scmi: Fix missing destroy_workqueue()

Sudeep Holla (2):
      firmware: arm_scmi: Add full list of sensor type enumeration
      Merge tag 'scmi-voltage-5.11' of git://git.kernel.org/.../sudeep.holla/linux into for-next/scmi

 Documentation/devicetree/bindings/arm/arm,scmi.txt |  43 ++
 drivers/firmware/arm_scmi/Makefile                 |   2 +-
 drivers/firmware/arm_scmi/common.h                 |   1 +
 drivers/firmware/arm_scmi/driver.c                 |   3 +
 drivers/firmware/arm_scmi/notify.c                 |  10 +-
 drivers/firmware/arm_scmi/sensors.c                | 720 +++++++++++++++++++--
 drivers/firmware/arm_scmi/voltage.c                | 380 +++++++++++
 drivers/hwmon/scmi-hwmon.c                         |   2 +-
 include/linux/scmi_protocol.h                      | 352 +++++++++-
 9 files changed, 1450 insertions(+), 63 deletions(-)
 create mode 100644 drivers/firmware/arm_scmi/voltage.c

WARNING: multiple messages have this Message-ID (diff)
From: Sudeep Holla <sudeep.holla@arm.com>
To: SoC Team <soc@kernel.org>, ARM SoC Team <arm@kernel.org>,
	ALKML <linux-arm-kernel@lists.infradead.org>
Cc: Olof Johansson <olof@lixom.net>,
	Kevin Hilman <khilman@kernel.org>, Arnd Bergmann <arnd@arndb.de>,
	Sudeep Holla <sudeep.holla@arm.com>
Subject: [GIT PULL] firmware: arm_scmi: Updates for v5.11
Date: Tue, 24 Nov 2020 12:24:12 +0000	[thread overview]
Message-ID: <20201124122412.22386-1-sudeep.holla@arm.com> (raw)
Message-ID: <20201124122412.CzKMdkoFYrH32PaUVub3HQzmRRjeemFScpWdgQVoHLI@z> (raw)

Hi ARM SoC Team,

Please pull ! The tag is based on v5.10-rc2 to avoid conflicts with
the fixes that got merged in -rc2.

Note the hwmon is acked by Guenter to take the changes together.
Also note that the SCMI regulator driver itself is getting queued by
Mark Brown separately and hence I have sent him pull request with
'scmi-voltage-5.11' tag which I have also merged here.

Regards,
Sudeep

-->8

The following changes since commit 3cea11cd5e3b00d91caf0b4730194039b45c5891:

  Linux 5.10-rc2 (2020-11-01 14:43:51 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux.git tags/scmi-updates-5.11

for you to fetch changes up to f83eb664cdb45169338b9633f22eaafc23764f05:

  Merge tag 'scmi-voltage-5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux into for-next/scmi (2020-11-23 16:37:27 +0000)

----------------------------------------------------------------
ARM SCMI updates for v5.11

Two main additions this time:
1. Support for SCMI v3.0 sensor extensions
2. Support for voltage domain management protocol added newly to SCMI v3.0

----------------------------------------------------------------
Cristian Marussi (10):
      firmware: arm_scmi: Rework scmi_sensors_protocol_init
      firmware: arm_scmi: Add SCMI v3.0 sensors descriptors extensions
      dt-bindings: arm: Add support for SCMI Regulators
      firmware: arm_scmi: Add voltage domain management protocol support
      firmware: arm_scmi: Add support to enumerated SCMI voltage domain device
      hwmon: (scmi) Update hwmon internal scale data type
      firmware: arm_scmi: Add SCMI v3.0 sensors timestamped reads
      firmware: arm_scmi: Add SCMI v3.0 sensor configuration support
      firmware: arm_scmi: Add SCMI v3.0 sensor notifications
      firmware: arm_scmi: Remove residual _le structs naming

Qinglang Miao (1):
      firmware: arm_scmi: Fix missing destroy_workqueue()

Sudeep Holla (2):
      firmware: arm_scmi: Add full list of sensor type enumeration
      Merge tag 'scmi-voltage-5.11' of git://git.kernel.org/.../sudeep.holla/linux into for-next/scmi

 Documentation/devicetree/bindings/arm/arm,scmi.txt |  43 ++
 drivers/firmware/arm_scmi/Makefile                 |   2 +-
 drivers/firmware/arm_scmi/common.h                 |   1 +
 drivers/firmware/arm_scmi/driver.c                 |   3 +
 drivers/firmware/arm_scmi/notify.c                 |  10 +-
 drivers/firmware/arm_scmi/sensors.c                | 720 +++++++++++++++++++--
 drivers/firmware/arm_scmi/voltage.c                | 380 +++++++++++
 drivers/hwmon/scmi-hwmon.c                         |   2 +-
 include/linux/scmi_protocol.h                      | 352 +++++++++-
 9 files changed, 1450 insertions(+), 63 deletions(-)
 create mode 100644 drivers/firmware/arm_scmi/voltage.c

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

             reply	other threads:[~2020-11-24 12:24 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-24 12:24 Sudeep Holla [this message]
2020-11-24 12:24 ` [GIT PULL] firmware: arm_scmi: Updates for v5.11 Sudeep Holla
2020-11-26 20:54 ` Arnd Bergmann
2020-11-26 20:54   ` Arnd Bergmann
2020-11-27 10:00   ` Sudeep Holla
2020-11-27 10:00     ` Sudeep Holla
2020-11-27 20:09     ` Arnd Bergmann
2020-11-27 20:09       ` Arnd Bergmann
2020-11-28  8:34       ` Sudeep Holla
2020-11-28  8:34         ` Sudeep Holla
2020-11-27 20:10 ` 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=20201124122412.22386-1-sudeep.holla@arm.com \
    --to=sudeep.holla@arm.com \
    --cc=arm@kernel.org \
    --cc=arnd@arndb.de \
    --cc=khilman@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=olof@lixom.net \
    --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.