From: Laserology OSS <development@laserology.net>
To: linux-input@vger.kernel.org
Cc: dmitry.torokhov@gmail.com, miroslav.bendik@gmail.com,
Evan Lawrence <development@laserology.net>
Subject: [PATCH v4] Input: synaptics - add transparent pass-through mode for TrackPoint
Date: Sun, 9 Aug 2026 23:46:31 +0000 (UTC) [thread overview]
Message-ID: <20260809234611.25655-1-development@laserology.net> (raw)
From: Evan Lawrence <development@laserology.net>
This reworks an earlier implementation by Miroslav Bendík from 2022
that was never merged. It keeps the same hardware-mode approach but
commits the mode flag only after a successful mode command, moves the
reconnect handling into a generic psmouse hook instead of protocol-
specific checks in psmouse-interrupt, and documents the interface.
Signed-off-by: Evan Lawrence <development@laserology.net>
---
Changes in v2 (addressing review feedback):
- Only consult the parent serio in psmouse_receive_byte() when it is a
genuine psmouse pass-through port; a psmouse attached to a ps2mult
child port has a parent whose drvdata is not a struct psmouse, so the
unconditional cast could read a bogus function pointer.
- Guard the guest state reset in synaptics_set_transparent_mode() on the
pass-through port actually being bound to a psmouse, and commit the
protocol handler/pktsize update with RX paused to avoid a torn update.
- Exit transparent mode on the hardware as well as in software when the
pass-through guest port is removed while the mode is active.
- Re-run the full initialization (query, identity check, mode setup)
before re-entering transparent mode during reconnect, so the device is
in a known configuration after a reset.
- Use psmouse_set_state(PSMOUSE_ACTIVATED) to drop stale guest data
instead of the bare pktcnt = 0 assignment, which could leave the
psmouse state machine (flags, state) out of sync with the packet
counter.
- Move the dev-attr creation ahead of the pass-through port registration
so that an attribute creation failure cannot leak a registered child
port whose callbacks reference freed synaptics_data.
Changes in v3 (addressing review feedback):
- Scope the serio_pause_rx guard in synaptics_set_transparent_mode() to
the protocol-handler commit only; calling psmouse_set_state() inside
it re-enables interrupts via serio_continue_rx() while the parent lock
is held, which can deadlock.
- In synaptics_pt_stop(), exit hardware transparent mode before updating
the software protocol handler, so guest data is never misparsed as
host touchpad packets.
Changes in v4 (addressing review feedback):
- Drop the pt_psmouse field and the child-state reset in
synaptics_set_transparent_mode(): storing drvdata as a psmouse pointer
without verifying the driver type creates a type-confusion risk.
The PS/2 psmouse handler already resynchronizes after stale bytes,
so dropping the explicit reset is safe.
- Remove the pass-through serio unregistration from
synaptics_disconnect(): calling serio_unregister_port() from inside
the parent disconnect callback deadlocks on serio_mutex, and the
child port is already destroyed by serio_disconnect_port() before
the parent disconnect runs, making the call a use-after-free.
- Guard the two-command write sequence in synaptics_pt_write() with a
per-device mutex and hold it across both the transparent fast-path
and the hardware mode-switch commands in
synaptics_set_transparent_mode(), so a concurrent pt_write cannot
inject a byte onto the PS/2 bus mid-command and corrupt the
passthrough transaction.
- Add defensive id.type == SERIO_PS_PSTHRU checks before the
psmouse_from_serio() casts in synaptics_pass_pt_packet() and
synaptics_pt_activate().
- Issue SETSCALE21/SETSCALE11 commands after the initial reset in
__synaptics_init() so that a touchpad left in transparent mode from
a previous session can still be detected and initialized after a
warm reboot.
- Skip the BAT (0xAA) detection in psmouse_receive_byte() while
transparent mode is active, via a pt_bypass_bat flag on struct
psmouse. Every byte on the parent serio belongs to the
pass-through guest; a TrackPoint can legitimately send 0xAA 0x00
as motion data, and consuming the 0xAA byte would silently drop it
before it reaches the guest handler.
- Clear pt_bypass_bat in synaptics_pt_stop() when the guest port is
removed so that BAT detection resumes for the touchpad itself.
---
.../ABI/testing/sysfs-driver-synaptics | 28 ++
MAINTAINERS | 1 +
drivers/input/mouse/psmouse-base.c | 20 +-
drivers/input/mouse/psmouse.h | 15 +
drivers/input/mouse/synaptics.c | 294 +++++++++++++++++-
drivers/input/mouse/synaptics.h | 6 +
6 files changed, 345 insertions(+), 19 deletions(-)
create mode 100644 Documentation/ABI/testing/sysfs-driver-synaptics
diff --git a/Documentation/ABI/testing/sysfs-driver-synaptics b/Documentation/ABI/testing/sysfs-driver-synaptics
new file mode 100644
index 000000000000..bec715677e3e
--- /dev/null
+++ b/Documentation/ABI/testing/sysfs-driver-synaptics
@@ -0,0 +1,28 @@
+What: /sys/bus/serio/devices/serioX/transparent_mode
+Date: August 2026
+Contact: linux-input@vger.kernel.org
+Description:
+ Controls the transparent pass-through mode of Synaptics
+ touchpads that feature a pass-through (PS/2 guest) port, such as
+ those used for a TrackPoint.
+
+ In normal operation the touchpad serves as the PS/2 host for
+ the pass-through guest: it scans the guest during its own scan
+ cycle and encapsulates the guest's data into its own packets,
+ which limits the guest to the touchpad's low poll rate. When
+ transparent mode is enabled the touchpad stops generating its
+ own packets and simply relays the raw byte stream of the
+ pass-through guest, letting the guest run at its high poll rate
+ while the touchpad is effectively disabled.
+
+ Write 1 to enable the mode, or 0 to disable it. Reading the
+ attribute returns the current state ("0" or "1").
+
+ Note that both devices cannot be serviced at full rate at the
+ same time on this hardware; enabling the mode disables the
+ touchpad until it is disabled again. The attribute is present
+ only on devices that report the pass-through capability.
+
+Users: Userspace that arbitrates between full-rate TrackPoint and
+ full-rate touchpad operation. No consumer exists yet; the
+ interface is provided so that one can be developed.
diff --git a/MAINTAINERS b/MAINTAINERS
index 8014b9f8253e..312c13690c91 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -12817,6 +12817,7 @@ L: linux-input@vger.kernel.org
S: Maintained
Q: http://patchwork.kernel.org/project/linux-input/list/
T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
+F: Documentation/ABI/testing/sysfs-driver-synaptics
F: Documentation/devicetree/bindings/input/
F: Documentation/devicetree/bindings/serio/
F: Documentation/input/
diff --git a/drivers/input/mouse/psmouse-base.c b/drivers/input/mouse/psmouse-base.c
index 6ab5f1d96eae..85854484625c 100644
--- a/drivers/input/mouse/psmouse-base.c
+++ b/drivers/input/mouse/psmouse-base.c
@@ -378,15 +378,31 @@ static void psmouse_receive_byte(struct ps2dev *ps2dev, u8 data)
psmouse->packet[psmouse->pktcnt++] = data;
/* Check if this is a new device announcement (0xAA 0x00) */
- if (unlikely(psmouse->packet[0] == PSMOUSE_RET_BAT && psmouse->pktcnt <= 2)) {
+ if (unlikely(!psmouse->pt_bypass_bat &&
+ psmouse->packet[0] == PSMOUSE_RET_BAT && psmouse->pktcnt <= 2)) {
if (psmouse->pktcnt == 1) {
psmouse->last = jiffies;
return;
}
if (psmouse->packet[1] == PSMOUSE_RET_ID) {
+ struct serio *serio = ps2dev->serio;
+ struct psmouse *parent_psmouse = NULL;
+
__psmouse_set_state(psmouse, PSMOUSE_IGNORE);
- serio_reconnect(ps2dev->serio);
+ /*
+ * Some devices need parent to be reconnected instead.
+ * Only consult the parent if this is a genuine psmouse
+ * pass-through port; other serio children may have a
+ * parent whose drvdata is not a struct psmouse.
+ */
+ if (serio->parent && serio->id.type == SERIO_PS_PSTHRU)
+ parent_psmouse = psmouse_from_serio(serio->parent);
+ if (parent_psmouse && parent_psmouse->pt_reconnect_parent &&
+ parent_psmouse->pt_reconnect_parent(parent_psmouse))
+ serio_reconnect(serio->parent);
+ else
+ serio_reconnect(serio);
return;
}
diff --git a/drivers/input/mouse/psmouse.h b/drivers/input/mouse/psmouse.h
index 90ed8cd15d85..9391002fedc9 100644
--- a/drivers/input/mouse/psmouse.h
+++ b/drivers/input/mouse/psmouse.h
@@ -128,6 +128,21 @@ struct psmouse {
void (*pt_activate)(struct psmouse *psmouse);
void (*pt_deactivate)(struct psmouse *psmouse);
+
+ /*
+ * Called on the parent device when a pass-through guest reports a new
+ * device announcement (0xAA 0x00). Return true if the parent, and not
+ * the guest, should be reconnected.
+ */
+ bool (*pt_reconnect_parent)(struct psmouse *psmouse);
+
+ /*
+ * When true the parent is in transparent mode and the standard
+ * BAT (0xAA) detection in psmouse_receive_byte must be skipped:
+ * every byte arriving on the parent serio belongs to the
+ * pass-through guest and is not a device announcement.
+ */
+ bool pt_bypass_bat;
};
struct psmouse *psmouse_from_serio(struct serio *serio);
diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c
index c70502e24031..a5c44bcb75fe 100644
--- a/drivers/input/mouse/synaptics.c
+++ b/drivers/input/mouse/synaptics.c
@@ -636,12 +636,90 @@ static void synaptics_set_rate(struct psmouse *psmouse, unsigned int rate)
/*****************************************************************************
* Synaptics pass-through PS/2 port support
****************************************************************************/
+static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse);
+
+static psmouse_ret_t transparent_process_byte(struct psmouse *psmouse)
+{
+ struct synaptics_data *priv = psmouse->private;
+ struct serio *pt_port = READ_ONCE(priv->pt_port);
+
+ if (!pt_port)
+ return PSMOUSE_BAD_DATA;
+
+ serio_interrupt(pt_port, psmouse->packet[psmouse->pktcnt - 1], 0);
+ return PSMOUSE_FULL_PACKET;
+}
+
+static void synaptics_update_protocol_handler(struct psmouse *psmouse)
+{
+ struct synaptics_data *priv = psmouse->private;
+ struct serio *pt_port = READ_ONCE(priv->pt_port);
+ bool absolute_mode = priv->absolute_mode;
+ bool transparent_mode = READ_ONCE(priv->transparent_mode);
+
+ if (transparent_mode && pt_port) {
+ psmouse->protocol_handler = transparent_process_byte;
+ } else {
+ if (absolute_mode) {
+ psmouse->protocol_handler = synaptics_process_byte;
+ psmouse->pktsize = 6;
+ } else {
+ /* Relative mode follows standard PS/2 mouse protocol */
+ psmouse->protocol_handler = psmouse_process_byte;
+ psmouse->pktsize = 3;
+ }
+ }
+}
+
+static int synaptics_enter_transparent_mode(struct psmouse *psmouse)
+{
+ struct synaptics_data *priv = psmouse->private;
+ int error;
+
+ error = synaptics_mode_cmd(psmouse, priv->mode | SYN_BIT_TRANSPARENT_MODE);
+ if (error)
+ return error;
+
+ priv->mode |= SYN_BIT_TRANSPARENT_MODE;
+
+ return 0;
+}
+
+static int synaptics_exit_transparent_mode(struct psmouse *psmouse)
+{
+ struct synaptics_data *priv = psmouse->private;
+ int error;
+
+ /* Send scaling 2:1, 1:1 to exit transparent mode */
+ error = ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE21);
+ if (error)
+ return error;
+ error = ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
+ if (error)
+ return error;
+
+ /* Re-enter the regular operating mode of the touchpad */
+ error = synaptics_mode_cmd(psmouse, priv->mode & ~SYN_BIT_TRANSPARENT_MODE);
+ if (error)
+ return error;
+
+ priv->mode &= ~SYN_BIT_TRANSPARENT_MODE;
+
+ return 0;
+}
+
static int synaptics_pt_write(struct serio *serio, u8 c)
{
struct psmouse *parent = psmouse_from_serio(serio->parent);
+ struct synaptics_data *priv = parent->private;
u8 rate_param = SYN_PS_CLIENT_CMD; /* indicates that we want pass-through port */
int error;
+ guard(mutex)(&priv->pt_mutex);
+
+ if (READ_ONCE(priv->transparent_mode))
+ return parent->ps2dev.serio->write(parent->ps2dev.serio, c);
+
error = ps2_sliced_command(&parent->ps2dev, c);
if (error)
return error;
@@ -661,6 +739,8 @@ static int synaptics_pt_start(struct serio *serio)
guard(serio_pause_rx)(parent->ps2dev.serio);
priv->pt_port = serio;
+ synaptics_update_protocol_handler(parent);
+
return 0;
}
@@ -668,9 +748,30 @@ static void synaptics_pt_stop(struct serio *serio)
{
struct psmouse *parent = psmouse_from_serio(serio->parent);
struct synaptics_data *priv = parent->private;
+ bool exit_mode = READ_ONCE(priv->transparent_mode);
- guard(serio_pause_rx)(parent->ps2dev.serio);
- priv->pt_port = NULL;
+ /*
+ * The guest is going away. Hold the pass-through mutex across
+ * the hardware exit and the software state update so a
+ * concurrent synaptics_pt_write() cannot observe the old
+ * transparent_mode after the hardware has already been
+ * switched back to normal operation.
+ */
+ guard(mutex)(&priv->pt_mutex);
+
+ if (exit_mode) {
+ if (synaptics_exit_transparent_mode(parent))
+ psmouse_warn(parent,
+ "failed to exit transparent mode after pass-through port removal\n");
+ }
+
+ {
+ guard(serio_pause_rx)(parent->ps2dev.serio);
+ priv->pt_port = NULL;
+ WRITE_ONCE(priv->transparent_mode, false);
+ parent->pt_bypass_bat = false;
+ synaptics_update_protocol_handler(parent);
+ }
}
static int synaptics_pt_open(struct serio *serio)
@@ -693,6 +794,18 @@ static void synaptics_pt_close(struct serio *serio)
priv->pt_port_open = false;
}
+/*
+ * When the touchpad is in transparent mode resetting the guest alone is not
+ * enough, the host needs to be reconnected so that transparent mode is
+ * re-established.
+ */
+static bool synaptics_pt_reconnect_parent(struct psmouse *psmouse)
+{
+ struct synaptics_data *priv = psmouse->private;
+
+ return READ_ONCE(priv->transparent_mode);
+}
+
static int synaptics_is_pt_packet(u8 *buf)
{
return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
@@ -708,7 +821,7 @@ static void synaptics_pass_pt_packet(struct synaptics_data *priv, u8 *packet)
serio_interrupt(ptport, packet[1], 0);
- if (priv->pt_port_open) {
+ if (priv->pt_port_open && ptport->id.type == SERIO_PS_PSTHRU) {
struct psmouse *child = psmouse_from_serio(ptport);
if (child->state == PSMOUSE_ACTIVATED) {
@@ -723,7 +836,14 @@ static void synaptics_pass_pt_packet(struct synaptics_data *priv, u8 *packet)
static void synaptics_pt_activate(struct psmouse *psmouse)
{
struct synaptics_data *priv = psmouse->private;
- struct psmouse *child = psmouse_from_serio(priv->pt_port);
+ struct psmouse *child = NULL;
+
+ if (priv->pt_port && priv->pt_port->id.type == SERIO_PS_PSTHRU)
+ child = psmouse_from_serio(priv->pt_port);
+
+ /* no mode change needed when transparent mode is active */
+ if (READ_ONCE(priv->transparent_mode))
+ return;
/* adjust the touchpad to child's choice of protocol */
if (child) {
@@ -760,6 +880,7 @@ static void synaptics_pt_create(struct psmouse *psmouse)
serio->parent = psmouse->ps2dev.serio;
psmouse->pt_activate = synaptics_pt_activate;
+ psmouse->pt_reconnect_parent = synaptics_pt_reconnect_parent;
psmouse_info(psmouse, "serio: %s port at %s\n",
serio->name, psmouse->phys);
@@ -1437,6 +1558,78 @@ PSMOUSE_DEFINE_ATTR(disable_gesture, S_IWUSR | S_IRUGO, NULL,
synaptics_show_disable_gesture,
synaptics_set_disable_gesture);
+static ssize_t synaptics_show_transparent_mode(struct psmouse *psmouse,
+ void *data, char *buf)
+{
+ struct synaptics_data *priv = psmouse->private;
+
+ return sysfs_emit(buf, "%c\n",
+ READ_ONCE(priv->transparent_mode) ? '1' : '0');
+}
+
+static ssize_t synaptics_set_transparent_mode(struct psmouse *psmouse,
+ void *data, const char *buf,
+ size_t len)
+{
+ struct synaptics_data *priv = psmouse->private;
+ unsigned int value;
+ int err;
+
+ err = kstrtouint(buf, 10, &value);
+ if (err)
+ return err;
+
+ if (value > 1)
+ return -EINVAL;
+
+ if (value == READ_ONCE(priv->transparent_mode))
+ return len;
+
+ /* Transparent mode only makes sense while the guest is attached */
+ if (value && !READ_ONCE(priv->pt_port))
+ return -ENODEV;
+
+ /*
+ * Switch the hardware first and only commit the new mode and protocol
+ * handler once it succeeded, so a failing command cannot leave the
+ * driver with bookkeeping that does not match the device. The touchpad
+ * is deactivated for the duration of this write (see
+ * psmouse_attr_set_helper), so no live data can be misparsed in
+ * between. Hold the pass-through mutex so that a concurrent
+ * synaptics_pt_write() cannot inject a byte onto the bus in the
+ * middle of the mode-switch command sequence.
+ */
+ guard(mutex)(&priv->pt_mutex);
+
+ if (value) {
+ err = synaptics_enter_transparent_mode(psmouse);
+ if (err)
+ return err;
+ } else {
+ err = synaptics_exit_transparent_mode(psmouse);
+ if (err)
+ return err;
+ }
+
+ /*
+ * Commit the software state with RX paused so the interrupt handler
+ * never observes a torn (protocol_handler, pktsize) pair while the
+ * pass-through guest keeps streaming.
+ */
+ {
+ guard(serio_pause_rx)(psmouse->ps2dev.serio);
+ WRITE_ONCE(priv->transparent_mode, value);
+ synaptics_update_protocol_handler(psmouse);
+ psmouse->pt_bypass_bat = value;
+ }
+
+ return len;
+}
+
+PSMOUSE_DEFINE_ATTR(transparent_mode, 0644, NULL,
+ synaptics_show_transparent_mode,
+ synaptics_set_transparent_mode);
+
static void synaptics_disconnect(struct psmouse *psmouse)
{
struct synaptics_data *priv = psmouse->private;
@@ -1447,10 +1640,20 @@ static void synaptics_disconnect(struct psmouse *psmouse)
*/
psmouse_smbus_cleanup(psmouse);
+ if (READ_ONCE(priv->transparent_mode)) {
+ guard(mutex)(&priv->pt_mutex);
+ synaptics_exit_transparent_mode(psmouse);
+ WRITE_ONCE(priv->transparent_mode, false);
+ psmouse->pt_bypass_bat = false;
+ }
+
if (!priv->absolute_mode &&
SYN_ID_DISGEST_SUPPORTED(priv->info.identity))
device_remove_file(&psmouse->ps2dev.serio->dev,
&psmouse_attr_disable_gesture.dattr);
+ if (SYN_CAP_PASS_THROUGH(priv->info.capabilities))
+ device_remove_file(&psmouse->ps2dev.serio->dev,
+ &psmouse_attr_transparent_mode.dattr);
synaptics_reset(psmouse);
kfree(priv);
@@ -1477,8 +1680,35 @@ static int synaptics_reconnect(struct psmouse *psmouse)
*/
ssleep(1);
}
- ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETID);
- error = synaptics_detect(psmouse, 0);
+ if (READ_ONCE(priv->transparent_mode) && READ_ONCE(priv->pt_port)) {
+ /*
+ * psmouse_reset() above put the touchpad back into its
+ * power-on state, so run the full initialization before
+ * re-entering transparent mode. Otherwise the device
+ * would come back missing the configuration set up by
+ * synaptics_set_mode() (e.g. Advanced Gesture Mode) and
+ * would stay uninitialized once transparent mode is
+ * disabled again.
+ */
+ error = synaptics_query_hardware(psmouse, &info);
+ if (!error &&
+ (info.identity != priv->info.identity ||
+ info.model_id != priv->info.model_id ||
+ info.capabilities != priv->info.capabilities ||
+ info.ext_cap != priv->info.ext_cap))
+ error = -ENXIO;
+ if (!error)
+ error = synaptics_set_mode(psmouse);
+ if (!error)
+ error = synaptics_enter_transparent_mode(psmouse);
+ if (!error) {
+ serio_reconnect(priv->pt_port);
+ return 0;
+ }
+ } else {
+ ps2_command(&psmouse->ps2dev, param, PSMOUSE_CMD_GETID);
+ error = synaptics_detect(psmouse, 0);
+ }
} while (error && ++retry < 3);
if (error)
@@ -1602,6 +1832,8 @@ static int synaptics_init_ps2(struct psmouse *psmouse,
if (!priv)
return -ENOMEM;
+ mutex_init(&priv->pt_mutex);
+
priv->info = *info;
priv->absolute_mode = absolute_mode;
if (SYN_ID_DISGEST_SUPPORTED(info->identity))
@@ -1647,14 +1879,7 @@ static int synaptics_init_ps2(struct psmouse *psmouse,
psmouse->model = ((info->model_id & 0x00ff0000) >> 8) |
(info->model_id & 0x000000ff);
- if (absolute_mode) {
- psmouse->protocol_handler = synaptics_process_byte;
- psmouse->pktsize = 6;
- } else {
- /* Relative mode follows standard PS/2 mouse protocol */
- psmouse->protocol_handler = psmouse_process_byte;
- psmouse->pktsize = 3;
- }
+ synaptics_update_protocol_handler(psmouse);
psmouse->set_rate = synaptics_set_rate;
psmouse->disconnect = synaptics_disconnect;
@@ -1664,9 +1889,6 @@ static int synaptics_init_ps2(struct psmouse *psmouse,
/* Synaptics can usually stay in sync without extra help */
psmouse->resync_time = 0;
- if (SYN_CAP_PASS_THROUGH(info->capabilities))
- synaptics_pt_create(psmouse);
-
/*
* Toshiba's KBC seems to have trouble handling data from
* Synaptics at full rate. Switch to a lower rate (roughly
@@ -1690,9 +1912,35 @@ static int synaptics_init_ps2(struct psmouse *psmouse,
}
}
+ if (SYN_CAP_PASS_THROUGH(info->capabilities)) {
+ err = device_create_file(&psmouse->ps2dev.serio->dev,
+ &psmouse_attr_transparent_mode.dattr);
+ if (err) {
+ psmouse_err(psmouse,
+ "Failed to create transparent_mode attribute (%d)",
+ err);
+ goto init_fail;
+ }
+ }
+
+ /*
+ * Register the pass-through port only once all initialization steps
+ * that can fail have succeeded, so that a failure in one of the steps
+ * above cannot leak a registered child port whose callbacks would
+ * dereference the freed synaptics_data.
+ */
+ if (SYN_CAP_PASS_THROUGH(info->capabilities))
+ synaptics_pt_create(psmouse);
+
return 0;
init_fail:
+ if (!priv->absolute_mode && SYN_ID_DISGEST_SUPPORTED(priv->info.identity))
+ device_remove_file(&psmouse->ps2dev.serio->dev,
+ &psmouse_attr_disable_gesture.dattr);
+ if (SYN_CAP_PASS_THROUGH(priv->info.capabilities))
+ device_remove_file(&psmouse->ps2dev.serio->dev,
+ &psmouse_attr_transparent_mode.dattr);
kfree(priv);
return err;
}
@@ -1704,6 +1952,18 @@ static int __synaptics_init(struct psmouse *psmouse, bool absolute_mode)
psmouse_reset(psmouse);
+ /*
+ * After a warm reboot the touchpad may still be in transparent
+ * mode, silently relaying the pass-through guest's byte stream
+ * and responding to neither the reset above nor the Synaptics
+ * probe queries. These commands attempt to exit transparent
+ * mode on a best-effort basis; failures are ignored because
+ * the device may not be in transparent mode at all, in which
+ * case the commands may not be acknowledged.
+ */
+ ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE21);
+ ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11);
+
error = synaptics_query_hardware(psmouse, &info);
if (error) {
psmouse_err(psmouse, "Unable to query device: %d\n", error);
diff --git a/drivers/input/mouse/synaptics.h b/drivers/input/mouse/synaptics.h
index 3853165b6b3a..dc2031851cfd 100644
--- a/drivers/input/mouse/synaptics.h
+++ b/drivers/input/mouse/synaptics.h
@@ -6,6 +6,8 @@
#ifndef _SYNAPTICS_H
#define _SYNAPTICS_H
+#include <linux/mutex.h>
+
/* synaptics queries */
#define SYN_QUE_IDENTIFY 0x00
#define SYN_QUE_MODES 0x01
@@ -24,6 +26,7 @@
/* synaptics modes */
#define SYN_BIT_ABSOLUTE_MODE BIT(7)
#define SYN_BIT_HIGH_RATE BIT(6)
+#define SYN_BIT_TRANSPARENT_MODE BIT(5)
#define SYN_BIT_SLEEP_MODE BIT(3)
#define SYN_BIT_DISABLE_GESTURE BIT(2)
#define SYN_BIT_FOUR_BYTE_CLIENT BIT(1)
@@ -186,10 +189,13 @@ struct synaptics_data {
bool absolute_mode; /* run in Absolute mode */
bool disable_gesture; /* disable gestures */
+ bool transparent_mode; /* pass packets directly from guest */
struct serio *pt_port; /* Pass-through serio port */
bool pt_port_open;
+ struct mutex pt_mutex; /* Serializes pt_write commands */
+
/*
* Last received Advanced Gesture Mode (AGM) packet. An AGM packet
* contains position data for a second contact, at half resolution.
--
2.55.0
next reply other threads:[~2026-08-09 23:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-09 23:46 Laserology OSS [this message]
2026-08-10 0:10 ` [PATCH v4] Input: synaptics - add transparent pass-through mode for TrackPoint sashiko-bot
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=20260809234611.25655-1-development@laserology.net \
--to=development@laserology.net \
--cc=dmitry.torokhov@gmail.com \
--cc=linux-input@vger.kernel.org \
--cc=miroslav.bendik@gmail.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 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.