Linux SOC development
 help / color / mirror / Atom feed
From: Bjorn Andersson <andersson@kernel.org>
To: arm@kernel.org, soc@kernel.org
Cc: linux-arm-msm@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Arnd Bergmann <arnd@arndb.de>,
	Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>,
	Mukesh Ojha <mukesh.ojha@oss.qualcomm.com>,
	Maulik Shah <maulik.shah@oss.qualcomm.com>,
	Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>,
	Shawn Guo <shengchao.guo@oss.qualcomm.com>,
	Sumit Garg <sumit.garg@oss.qualcomm.com>,
	Viken Dadhaniya <viken.dadhaniya@oss.qualcomm.com>
Subject: [GIT PULL] More Qualcomm driver updates for v7.3
Date: Fri,  7 Aug 2026 10:41:49 -0500	[thread overview]
Message-ID: <20260807154149.603041-1-andersson@kernel.org> (raw)


The following changes since commit 43584144a46bccbe90482cd8eede9596d8fc47dc:

  soc: qcom: llcc: Skip ECC interrupt setup on Shikra, pre-configured by DSF (2026-07-17 17:22:44 -0500)

are available in the Git repository at:

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

for you to fetch changes up to 94d3305d990b055e1561e3b78275344b1f40c86e:

  media: qcom: Switch to generic PAS TZ APIs (2026-08-04 10:26:42 -0500)

----------------------------------------------------------------
More Qualcomm driver updates for v7.3

Add SMEM parsing for DDR configuration data and use its highest bank
address bit to select the appropriate UBWC configuration.

Enable generic PAS trusted-zone APIs for the Iris and Venus media drivers.

Fix SCM probe retry state, reserved-memory cleanup, and an early IRQ-handler
NULL dereference. Enable QSEECOM EFI variable access on the Asus Zenbook A16.

Correct GENI firmware-size validation using the hardware CFG RAM depth and
correct the PMIC GLINK Thunderbolt extradata layout.

Document the Nord AOSS side channel and the IMEM minidump SRAM property.
Clean up Qualcomm statistics macros and the WCNSS binding schema.

----------------------------------------------------------------
Konrad Dybcio (5):
      soc: qcom: pmic_glink_altmode: Define the TBT extradata properly
      firmware: qcom: scm: Allow QSEECOM on Asus Zenbook A16 (UX3607OA)
      soc: qcom: smem: Use 'unsigned int' instead of 'unsigned'
      soc: qcom: smem: Expose DDR data from SMEM
      soc: qcom: ubwc: Get HBB from SMEM

Krzysztof Kozlowski (1):
      dt-bindings: soc: qcom,wcnss: Drop redundant $ref of firmware-name property

Maulik Shah (2):
      soc: qcom: qcom_stats: Remove unused macro definitions
      soc: qcom: qcom_stats: Replace CLIENT_VOTES_OFFSET macro with sizeof()

Mukesh Ojha (4):
      firmware: qcom: scm: Fix NULL dereference in IRQ handler before __scm is published
      firmware: qcom: scm: Fix reserved memory cleanup on probe failure
      firmware: qcom: scm: Fix tzmem state on probe retry
      dt-bindings: sram: qcom,imem: Add minidump-sram pattern property

Shawn Guo (1):
      dt-bindings: soc: qcom,aoss-qmp: Document Nord AOSS side channel

Sumit Garg (1):
      media: qcom: Switch to generic PAS TZ APIs

Viken Dadhaniya (1):
      soc: qcom: geni-se: Use HW PROG_RAM_DEPTH to validate firmware size

 .../bindings/soc/qcom/qcom,aoss-qmp.yaml           |   1 +
 .../devicetree/bindings/soc/qcom/qcom,wcnss.yaml   |   4 +-
 .../devicetree/bindings/sram/qcom,imem.yaml        |  16 +
 drivers/firmware/qcom/qcom_scm-smc.c               |   2 +-
 drivers/firmware/qcom/qcom_scm.c                   |  43 ++-
 drivers/firmware/qcom/qcom_scm.h                   |   2 +-
 drivers/firmware/qcom/qcom_tzmem.c                 |  13 +-
 drivers/media/platform/qcom/iris/Kconfig           |  27 +-
 drivers/media/platform/qcom/iris/iris_firmware.c   |   9 +-
 drivers/media/platform/qcom/venus/Kconfig          |   1 +
 drivers/media/platform/qcom/venus/firmware.c       |  11 +-
 drivers/soc/qcom/Makefile                          |   3 +-
 drivers/soc/qcom/pmic_glink_altmode.c              |   3 +-
 drivers/soc/qcom/qcom-geni-se.c                    |  24 +-
 drivers/soc/qcom/qcom_stats.c                      |   9 +-
 drivers/soc/qcom/smem.c                            |  81 ++--
 drivers/soc/qcom/smem.h                            |  12 +
 drivers/soc/qcom/smem_dramc.c                      | 430 +++++++++++++++++++++
 drivers/soc/qcom/ubwc_config.c                     |  40 +-
 include/linux/soc/qcom/geni-se.h                   |   4 +
 include/linux/soc/qcom/smem.h                      |   2 +
 21 files changed, 635 insertions(+), 102 deletions(-)
 create mode 100644 drivers/soc/qcom/smem.h
 create mode 100644 drivers/soc/qcom/smem_dramc.c

                 reply	other threads:[~2026-08-07 15:41 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20260807154149.603041-1-andersson@kernel.org \
    --to=andersson@kernel.org \
    --cc=arm@kernel.org \
    --cc=arnd@arndb.de \
    --cc=konrad.dybcio@oss.qualcomm.com \
    --cc=krzysztof.kozlowski@oss.qualcomm.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=maulik.shah@oss.qualcomm.com \
    --cc=mukesh.ojha@oss.qualcomm.com \
    --cc=shengchao.guo@oss.qualcomm.com \
    --cc=soc@kernel.org \
    --cc=sumit.garg@oss.qualcomm.com \
    --cc=viken.dadhaniya@oss.qualcomm.com \
    /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