<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body><p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Hi everyone,</p>
<br /><p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">I would like some advice on how to support a new finger print reader device from synaptics that is currently not supported in fprint added to the list. </p>
<br /><p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Do let me know what information is required. </p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">This is what I have been able to dig up until now. </p>
<br /><p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">🕙 02:17:19 ➜ lsusb</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Bus 001 Device 003: ID 04f2:b690 Chicony Electronics Co., Ltd HP HD Camera</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"><strong>Bus 001 Device 002: ID 06cb:00c4 Synaptics, Inc. (I believe this is the device) </strong></p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Bus 001 Device 004: ID 8087:0029 Intel Corp. AX200 Bluetooth</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub</p>
<br /><p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">I believe the device is a synaptics device - haven't been able to dig in more but looks like there are very similar prod vendor id's that are already supported in the codebase. Do I need anything else other than libfprint - I run gnome 3.38.3 but still can't find the finger print options in my user management - I tried fingerprint-gui as well but no luck there. </p>
<br /><p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">I attempted to build it in myself by adding the new prod id in the code base - not sure where to go from here - I figured since it is the same vendor they may have the same interface and commands - but I think I need some direction from here - not too familar with the meson build system and how to go from here. </p>
<br /><br /><p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"><u>Below is a diff showing the changes I have attempted </u></p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">🕙 00:43:05 ➜ git diff</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">diff --git a/data/autosuspend.hwdb b/data/autosuspend.hwdb</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">index 7a78068..9d498bb 100644</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">--- a/data/autosuspend.hwdb</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">+++ b/data/autosuspend.hwdb</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">@@ -105,6 +105,7 @@ usb:v06CBp00DF*</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> usb:v06CBp00F9*</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> usb:v06CBp00FC*</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> usb:v06CBp00C2*</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"><strong>+usb:v06CBp00C4*</strong></p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> usb:v06CBp00C9*</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> usb:v06CBp00E7*</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> ID_AUTOSUSPEND=1</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">diff --git a/libfprint/drivers/synaptics/synaptics.c b/libfprint/drivers/synaptics/synaptics.c</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">index b4711fa..d541bc7 100644</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">--- a/libfprint/drivers/synaptics/synaptics.c</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">+++ b/libfprint/drivers/synaptics/synaptics.c</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">@@ -37,6 +37,7 @@ static const FpIdEntry id_table[] = {</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> { .vid = SYNAPTICS_VENDOR_ID, .pid = 0xF9, },</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> { .vid = SYNAPTICS_VENDOR_ID, .pid = 0xFC, },</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> { .vid = SYNAPTICS_VENDOR_ID, .pid = 0xC2, },</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"><strong>+ { .vid = SYNAPTICS_VENDOR_ID, .pid = 0xC4, },</strong></p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> { .vid = SYNAPTICS_VENDOR_ID, .pid = 0xC9, },</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> { .vid = SYNAPTICS_VENDOR_ID, .pid = 0xE7, },</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;"> { .vid = 0, .pid = 0, .driver_data = 0 }, /* terminating entry */</p>
<br /><p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Any guidance or next steps would be quite helpful. I am willing to help with coding testing etc. </p>
<br /><p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Thanks,</p>
<p style="margin-top:0;margin-bottom:0;margin-left:0;margin-right:0;">Frino </p>
<br /><br /></body>
</html>