All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: arm@kernel.org, soc@kernel.org
Cc: linux-arm-msm@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Andy Gross <agross@kernel.org>, Arnd Bergmann <arnd@arndb.de>,
	Olof Johansson <olof@lixom.net>,
	Kevin Hilman <khilman@baylibre.com>,
	Stephen Boyd <swboyd@chromium.org>,
	Lukas Bulwahn <lukas.bulwahn@gmail.com>,
	Qinglang Miao <miaoqinglang@huawei.com>
Subject: [GIT PULL] More Qualcomm driver updates for 5.13
Date: Fri,  9 Apr 2021 11:20:01 -0500	[thread overview]
Message-ID: <20210409162001.775851-1-bjorn.andersson@linaro.org> (raw)

The following changes since commit ac6ad7c2a862d682bb584a4bc904d89fa7721af8:

  bus: qcom: Put child node before return (2021-03-29 22:01:27 -0500)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-drivers-for-5.13-2

for you to fetch changes up to 0648c55e3a21ccd816e99b6600d6199fbf39d23a:

  soc: qcom: mdt_loader: Detect truncated read of segments (2021-04-08 10:28:59 -0500)

----------------------------------------------------------------
More Qualcomm driver updates for 5.13

This improves the Qualcomm SCM driver logic related to detecting the
calling convention, in particular on SC7180, and fixes a few small
issues in the same.

It introduces additonal sanity checks of the size of loaded segments in
the MDT loader and adds a missing error in the return path of
pdr_register_listener().

It makes it possible to specify the OEM specific firmware path in the
wcn36xx control (and WiFi) driver.

Lastly it adds a missing path specifier in the MAINTAINERS' entry and
fixes a bunch of kerneldoc issues in various drivers.

----------------------------------------------------------------
Bjorn Andersson (5):
      dt-bindings: soc: qcom: wcnss: Add firmware-name property
      soc: qcom: wcnss_ctrl: Introduce local variable "dev"
      soc: qcom: wcnss_ctrl: Allow reading firmware-name from DT
      soc: qcom: mdt_loader: Validate that p_filesz < p_memsz
      soc: qcom: mdt_loader: Detect truncated read of segments

Lukas Bulwahn (2):
      MAINTAINERS: add another entry for ARM/QUALCOMM SUPPORT
      soc: qcom: address kernel-doc warnings

Qinglang Miao (1):
      soc: qcom: pdr: Fix error return code in pdr_register_listener

Stephen Boyd (5):
      firmware: qcom_scm: Make __qcom_scm_is_call_available() return bool
      firmware: qcom_scm: Reduce locking section for __get_convention()
      firmware: qcom_scm: Workaround lack of "is available" call on SC7180
      firmware: qcom_scm: Suppress sysfs bind attributes
      firmware: qcom_scm: Fix kernel-doc function names to match

 .../devicetree/bindings/soc/qcom/qcom,wcnss.txt    |  7 ++
 MAINTAINERS                                        |  1 +
 drivers/firmware/qcom_scm-legacy.c                 |  4 +-
 drivers/firmware/qcom_scm-smc.c                    | 12 +--
 drivers/firmware/qcom_scm.c                        | 89 ++++++++++++----------
 drivers/firmware/qcom_scm.h                        |  7 +-
 drivers/soc/qcom/mdt_loader.c                      | 17 +++++
 drivers/soc/qcom/pdr_interface.c                   |  2 +-
 drivers/soc/qcom/wcnss_ctrl.c                      | 15 ++--
 include/linux/soc/qcom/apr.h                       |  2 +-
 include/linux/soc/qcom/irq.h                       |  2 +-
 include/linux/soc/qcom/llcc-qcom.h                 |  6 +-
 include/linux/soc/qcom/qmi.h                       |  4 +-
 13 files changed, 107 insertions(+), 61 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: arm@kernel.org, soc@kernel.org
Cc: linux-arm-msm@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Andy Gross <agross@kernel.org>, Arnd Bergmann <arnd@arndb.de>,
	Olof Johansson <olof@lixom.net>,
	Kevin Hilman <khilman@baylibre.com>,
	Stephen Boyd <swboyd@chromium.org>,
	Lukas Bulwahn <lukas.bulwahn@gmail.com>,
	Qinglang Miao <miaoqinglang@huawei.com>
Subject: [GIT PULL] More Qualcomm driver updates for 5.13
Date: Fri,  9 Apr 2021 11:20:01 -0500	[thread overview]
Message-ID: <20210409162001.775851-1-bjorn.andersson@linaro.org> (raw)
Message-ID: <20210409162001.xBaznASCiRtgsuQEX5-vbnUcl3rZ0lwl6HNwYLuXKcc@z> (raw)

The following changes since commit ac6ad7c2a862d682bb584a4bc904d89fa7721af8:

  bus: qcom: Put child node before return (2021-03-29 22:01:27 -0500)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-drivers-for-5.13-2

for you to fetch changes up to 0648c55e3a21ccd816e99b6600d6199fbf39d23a:

  soc: qcom: mdt_loader: Detect truncated read of segments (2021-04-08 10:28:59 -0500)

----------------------------------------------------------------
More Qualcomm driver updates for 5.13

This improves the Qualcomm SCM driver logic related to detecting the
calling convention, in particular on SC7180, and fixes a few small
issues in the same.

It introduces additonal sanity checks of the size of loaded segments in
the MDT loader and adds a missing error in the return path of
pdr_register_listener().

It makes it possible to specify the OEM specific firmware path in the
wcn36xx control (and WiFi) driver.

Lastly it adds a missing path specifier in the MAINTAINERS' entry and
fixes a bunch of kerneldoc issues in various drivers.

----------------------------------------------------------------
Bjorn Andersson (5):
      dt-bindings: soc: qcom: wcnss: Add firmware-name property
      soc: qcom: wcnss_ctrl: Introduce local variable "dev"
      soc: qcom: wcnss_ctrl: Allow reading firmware-name from DT
      soc: qcom: mdt_loader: Validate that p_filesz < p_memsz
      soc: qcom: mdt_loader: Detect truncated read of segments

Lukas Bulwahn (2):
      MAINTAINERS: add another entry for ARM/QUALCOMM SUPPORT
      soc: qcom: address kernel-doc warnings

Qinglang Miao (1):
      soc: qcom: pdr: Fix error return code in pdr_register_listener

Stephen Boyd (5):
      firmware: qcom_scm: Make __qcom_scm_is_call_available() return bool
      firmware: qcom_scm: Reduce locking section for __get_convention()
      firmware: qcom_scm: Workaround lack of "is available" call on SC7180
      firmware: qcom_scm: Suppress sysfs bind attributes
      firmware: qcom_scm: Fix kernel-doc function names to match

 .../devicetree/bindings/soc/qcom/qcom,wcnss.txt    |  7 ++
 MAINTAINERS                                        |  1 +
 drivers/firmware/qcom_scm-legacy.c                 |  4 +-
 drivers/firmware/qcom_scm-smc.c                    | 12 +--
 drivers/firmware/qcom_scm.c                        | 89 ++++++++++++----------
 drivers/firmware/qcom_scm.h                        |  7 +-
 drivers/soc/qcom/mdt_loader.c                      | 17 +++++
 drivers/soc/qcom/pdr_interface.c                   |  2 +-
 drivers/soc/qcom/wcnss_ctrl.c                      | 15 ++--
 include/linux/soc/qcom/apr.h                       |  2 +-
 include/linux/soc/qcom/irq.h                       |  2 +-
 include/linux/soc/qcom/llcc-qcom.h                 |  6 +-
 include/linux/soc/qcom/qmi.h                       |  4 +-
 13 files changed, 107 insertions(+), 61 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-04-09 16:20 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-09 16:20 Bjorn Andersson [this message]
2021-04-09 16:20 ` [GIT PULL] More Qualcomm driver updates for 5.13 Bjorn Andersson
2021-04-09 19:54 ` Arnd Bergmann
2021-04-09 19:54   ` Arnd Bergmann

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=20210409162001.775851-1-bjorn.andersson@linaro.org \
    --to=bjorn.andersson@linaro.org \
    --cc=agross@kernel.org \
    --cc=arm@kernel.org \
    --cc=arnd@arndb.de \
    --cc=khilman@baylibre.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=lukas.bulwahn@gmail.com \
    --cc=miaoqinglang@huawei.com \
    --cc=olof@lixom.net \
    --cc=soc@kernel.org \
    --cc=swboyd@chromium.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.