From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7A7EA384CD5 for ; Wed, 29 Jul 2026 03:02:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785294157; cv=none; b=faa0WnZmWYC736kj+96rlDLMmDS++aXHQcdI+g389G0KsqhYwMt7NyWDYSRFcxeCRnhd5KsD/ks9pUaBYKavO5XJQYL3CEaTrLCA7eYB6YJTPu7iDfYTBhv5NLnuC5ENz1xzIs/RyVaKYn1jvSH9E4au+rnuVtW9HfQisA16/Tg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785294157; c=relaxed/simple; bh=LjArAHDAfKcGBudT7k0fLrEAp4rSwvJyFtNDmYy1IFo=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Z2Y2B1PvRkFXt+OWWUF77ThPvTLZXzXDvqUdQF2hNU9sjxVgPYjskFh9lu/cul/p7q9ciYeVDyLqDtyOVRMY/jxgcwnnd80RQJndbohUSz+LYl2krq2cPZ86YbIJGcRzNjQsb952t8jwoRd7pWwp+3SJcj2+OJZHgNE61XfKBTw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=CUD63q+o; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="CUD63q+o" Received: by smtp.kernel.org (Postfix) with ESMTPSA id ADBE01F000E9; Wed, 29 Jul 2026 03:02:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1785294156; bh=RtjbWXfJ+TZ59ELKqtgQz/ptW2lJFYTjB2NBWRei+Sk=; h=From:To:Cc:Subject:Date; b=CUD63q+oUQjiWtKGFA/cnTxjTR2eLF7bMxlw0A1ytITm5XXhCDLDNLAleFm3VIxih 52mvMCQCnwdlFoY9JUPFZmyzde4Pu2OH5tq4F6U4GOSYwsbJOaHPhavWNZs7nwdHwp +Pi7wDYQTmxEdIyo8jPQbvKqWoi34293VUlIM2ysQmfh7STzMbSPg1rqQQ1U+TRNxX gh4/NZbFfPsNKoijPX1gNbCyNQKdN63t4R6uMyJ6Sw3zA3HTbRiimIDnYjZ5QGVo8v UBmX2ZXTd45uDgMFGRjc3D1nErnHa/rrA5tDO/MUUZShSNRmYNM1Il6KZT0d+MLVho yPO04s3c/zCjw== From: Dinh Nguyen To: gregkh@linuxfoundation.org Cc: dinguyen@kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] SoCFPGA firmware updates for v7.3 Date: Tue, 28 Jul 2026 22:02:34 -0500 Message-ID: <20260729030234.1357865-1-dinguyen@kernel.org> X-Mailer: git-send-email 2.42.0.411.g813d9a9188 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The following changes since commit dc59e4fea9d83f03bad6bddf3fa2e52491777482: Linux 7.2-rc1 (2026-06-28 12:01:31 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git tags/svc_updates_for_v7.3 for you to fetch changes up to 758331ab5f9355352ccac3d7a83d3586bec19f9e: hwmon: add Altera SoC FPGA hardware monitoring driver (2026-07-28 22:00:15 -0500) ---------------------------------------------------------------- SoCFPGA firmware updates for v7.3 - Document stratix10-rsu for QSPI size and erase size - Add method to retrieve device info table using RSU - Add support for hardware monitoring using service driver ---------------------------------------------------------------- Mahesh Rao (1): firmware: stratix10-rsu: Add synchronous fallback for async SVC operations Tze Yee Ng (4): Documentation: ABI: add stratix10-rsu QSPI size and erase_size sysfs firmware: stratix10-rsu: Add flash device info retrieval via SMC firmware: stratix10-svc: add async HWMON read commands and register socfpga-hwmon device hwmon: add Altera SoC FPGA hardware monitoring driver .../testing/sysfs-devices-platform-stratix10-rsu | 58 +++ Documentation/hwmon/index.rst | 1 + Documentation/hwmon/socfpga-hwmon.rst | 34 ++ MAINTAINERS | 8 + drivers/firmware/stratix10-rsu.c | 421 ++++++++++++++- drivers/firmware/stratix10-svc.c | 140 ++++- drivers/hwmon/Kconfig | 10 + drivers/hwmon/Makefile | 1 + drivers/hwmon/socfpga-hwmon.c | 579 +++++++++++++++++++++ include/linux/firmware/intel/stratix10-smc.h | 63 ++- .../linux/firmware/intel/stratix10-svc-client.h | 12 +- 11 files changed, 1291 insertions(+), 36 deletions(-) create mode 100644 Documentation/hwmon/socfpga-hwmon.rst create mode 100644 drivers/hwmon/socfpga-hwmon.c