<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/git/stable/linux.git/drivers/misc/amd-sbi/tsi.c, branch master</title>
<subtitle>Linux kernel stable tree</subtitle>
<id>https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/atom?h=master</id>
<link rel='self' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/'/>
<updated>2026-07-17T13:50:48+00:00</updated>
<entry>
<title>misc: amd-sbi: Add SBTSI ioctl register transfer interface</title>
<updated>2026-07-17T13:50:48+00:00</updated>
<author>
<name>Prathima</name>
<email>Prathima.Lk@amd.com</email>
</author>
<published>2026-07-10T11:16:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=48ad55cda029dca47f4cd76b88f18fdfb1d309a8'/>
<id>urn:sha1:48ad55cda029dca47f4cd76b88f18fdfb1d309a8</id>
<content type='text'>
Implement IOCTL interface for SB-TSI driver to enable userspace access
to TSI register read/write operations through the AMD Advanced Platform
Management Link (APML) protocol.
Add an ioctl command (SBTSI_IOCTL_REG_XFER_CMD) that accepts a register
address, data byte, and direction flag.
The mutex is taken on the ioctl path here; the hwmon path is placed
under the same lock in the next patch, which completes serialization between
the hwmon and ioctl paths.

Reviewed-by: Akshay Gupta &lt;Akshay.Gupta@amd.com&gt;
Signed-off-by: Prathima &lt;Prathima.Lk@amd.com&gt;
Link: https://patch.msgid.link/20260710111642.850022-7-Akshay.Gupta@amd.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>misc: amd-sbi: Add support for SB-TSI over I3C</title>
<updated>2026-07-17T13:50:48+00:00</updated>
<author>
<name>Prathima</name>
<email>Prathima.Lk@amd.com</email>
</author>
<published>2026-07-10T11:16:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=f61a6fd4593bddc0f2109a1d3359fd2a88124d33'/>
<id>urn:sha1:f61a6fd4593bddc0f2109a1d3359fd2a88124d33</id>
<content type='text'>
AMD SB-TSI temperature sensors can be accessed over both
I2C and I3C buses depending on the platform configuration.
Extend the SB-TSI driver to support both I2C and I3C bus interfaces
by selecting the appropriate transport based on the probed bus type.
The driver maintains backward compatibility with existing I2C
deployments while enabling support for systems using the I3C bus.
Register both I2C and I3C drivers using module_i3c_i2c_driver() and
update the Kconfig dependency from I2C to I3C_OR_I2C.

Reviewed-by: Akshay Gupta &lt;Akshay.Gupta@amd.com&gt;
Signed-off-by: Prathima &lt;Prathima.Lk@amd.com&gt;
Link: https://patch.msgid.link/20260710111642.850022-6-Akshay.Gupta@amd.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>misc: amd-sbi: Consolidate Common SBTSI Probe Path</title>
<updated>2026-07-17T13:50:48+00:00</updated>
<author>
<name>Prathima</name>
<email>Prathima.Lk@amd.com</email>
</author>
<published>2026-07-10T11:16:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=ba27ea7abd35d260e3b489f985ec2b4113c0fd85'/>
<id>urn:sha1:ba27ea7abd35d260e3b489f985ec2b4113c0fd85</id>
<content type='text'>
Refactor shared probe procedures into sbtsi_probe_common() to ensure
that I2C and I3C probes focus solely on bus-specific allocation and
device configuration.
The utility function reads the configuration register via sbtsi_xfer(),
initializes ext_range_mode and read_order, assigns the driver data,
and registers the hwmon auxiliary device.
Routing register access through sbtsi_xfer() keeps the probe path
bus-agnostic, so no transfer logic has to be duplicated when SB-TSI over
I3C support is added in a later patch.

Reviewed-by: Akshay Gupta &lt;Akshay.Gupta@amd.com&gt;
Signed-off-by: Prathima &lt;Prathima.Lk@amd.com&gt;
Link: https://patch.msgid.link/20260710111642.850022-5-Akshay.Gupta@amd.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>hwmon/misc: amd-sbi: Move core sbtsi support from hwmon to misc</title>
<updated>2026-07-17T13:50:48+00:00</updated>
<author>
<name>Prathima</name>
<email>Prathima.Lk@amd.com</email>
</author>
<published>2026-07-10T11:16:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=319138ffcf83de6547651924030eb17c0d7977e5'/>
<id>urn:sha1:319138ffcf83de6547651924030eb17c0d7977e5</id>
<content type='text'>
Move SBTSI(Side-Band Temperature Sensor Interface) core functionality out
of the hwmon-only path and into drivers/misc/amd-sbi so it can be reused
by non-hwmon consumers.

I2C probe parsing is moved from drivers/hwmon/sbtsi_temp.c
into drivers/misc/amd-sbi/tsi.c under CONFIG_AMD_SBTSI. The core driver
stores struct sbtsi_data on the bus device and registers an auxiliary
device amd-sbtsi.temp-sensor.&lt;addr&gt; per target.
The current hwmon temp sensor will now require the CONFIG_AMD_SBTSI
configuration as a new dependency.

This split prepares the driver for additional interfaces while keeping
hwmon support in hwmon subsystem on top of common SBTSI core logic.

Add platform dependencies to clarify this driver is intended to run on
the BMC and not on the managed node.

Reviewed-by: Akshay Gupta &lt;Akshay.Gupta@amd.com&gt;
Signed-off-by: Prathima &lt;Prathima.Lk@amd.com&gt;
Acked-by: Guenter Roeck &lt;linux@roeck-us.net&gt;
Link: https://patch.msgid.link/20260710111642.850022-2-Akshay.Gupta@amd.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
