mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2026-04-18 22:40:41 +02:00
Add FocalTech FT9201 fingerprint sensor driver
Reverse-engineered USB protocol for FocalTech FT9201 (FT9338 chip, VID:PID 2808:9338). Area fingerprint sensor, 64x80 pixels, 8-bit grayscale, connected via USB SIU (Serial Interface Unit) bridge. Protocol uses "New SIU" compound register addresses: - 0x9180: chip status / OTP info - 0x9080: image capture (5120 bytes) - 0xFF00: sync / reset Read sequence: 3 vendor control OUTs + 1 bulk IN. First bulk read after USB reset returns garbage and must be discarded. Implements 16-state capture SSM with warmup, finger polling, sync, status check, and image read phases.
This commit is contained in:
parent
2c7842c905
commit
123c85eea3
4 changed files with 483 additions and 0 deletions
381
libfprint/drivers/focaltech_moh/focaltech_moh.c
Normal file
381
libfprint/drivers/focaltech_moh/focaltech_moh.c
Normal file
|
|
@ -0,0 +1,381 @@
|
|||
/*
|
||||
* FocalTech FT9201 Match-on-Host driver for libfprint
|
||||
*
|
||||
* Copyright (C) 2025 libfprint contributors
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
/*
|
||||
* FocalTech FT9201 (chip FT9338, VID:2808 PID:9338)
|
||||
*
|
||||
* Area fingerprint sensor with USB SIU (Serial Interface Unit) bridge.
|
||||
* 64×80 pixels, 8-bit grayscale, match-on-host.
|
||||
*
|
||||
* MCU has ROM firmware — no firmware upload needed. The SIU uses a
|
||||
* "New SIU" protocol with compound register addresses.
|
||||
*
|
||||
* Read sequence (3 control OUTs + 1 bulk IN):
|
||||
* 1. OUT req=0x34 wValue=0x00FF (prepare init)
|
||||
* 2. OUT req=0x34 wValue=0x0003 (prepare read mode)
|
||||
* 3. OUT req=0x6F wValue=size wIndex=compound_addr (configure)
|
||||
* 4. Bulk IN on EP3 (read data)
|
||||
*
|
||||
* Compound addresses:
|
||||
* 0x9180 — chip status / OTP info
|
||||
* 0x9080 — image capture (5120 bytes)
|
||||
* 0xFF00 — sync / reset (size=0, no bulk IN)
|
||||
*
|
||||
* Important: after USB reset or first enumeration, the first bulk IN
|
||||
* read returns garbage (all 0x02). A warmup read must be performed
|
||||
* and its result discarded.
|
||||
*/
|
||||
|
||||
#define FP_COMPONENT "focaltech_moh"
|
||||
|
||||
#include "drivers_api.h"
|
||||
#include "focaltech_moh.h"
|
||||
|
||||
G_DEFINE_TYPE (FpiDeviceFocaltechMoh, fpi_device_focaltech_moh,
|
||||
FP_TYPE_IMAGE_DEVICE)
|
||||
|
||||
static const FpIdEntry id_table[] = {
|
||||
{ .vid = FT9201_VID, .pid = FT9201_PID },
|
||||
{ .vid = 0, .pid = 0 },
|
||||
};
|
||||
|
||||
/* ─── Helper: send vendor control OUT ──────────────────────────── */
|
||||
|
||||
static void
|
||||
ft9201_ctrl_out (FpDevice *dev,
|
||||
FpiSsm *ssm,
|
||||
guint8 request,
|
||||
guint16 value,
|
||||
guint16 index)
|
||||
{
|
||||
FpiUsbTransfer *transfer = fpi_usb_transfer_new (dev);
|
||||
|
||||
transfer->ssm = ssm;
|
||||
fpi_usb_transfer_fill_control (transfer,
|
||||
G_USB_DEVICE_DIRECTION_HOST_TO_DEVICE,
|
||||
G_USB_DEVICE_REQUEST_TYPE_VENDOR,
|
||||
G_USB_DEVICE_RECIPIENT_DEVICE,
|
||||
request, value, index, 0);
|
||||
fpi_usb_transfer_submit (transfer, FT9201_CMD_TIMEOUT, NULL,
|
||||
fpi_ssm_usb_transfer_cb, NULL);
|
||||
}
|
||||
|
||||
/* ─── Capture state machine ────────────────────────────────────── */
|
||||
|
||||
static void
|
||||
capture_read_cb (FpiUsbTransfer *transfer,
|
||||
FpDevice *dev,
|
||||
gpointer user_data,
|
||||
GError *error)
|
||||
{
|
||||
if (error)
|
||||
{
|
||||
fpi_ssm_mark_failed (transfer->ssm, error);
|
||||
return;
|
||||
}
|
||||
|
||||
fpi_ssm_next_state (transfer->ssm);
|
||||
}
|
||||
|
||||
static void
|
||||
capture_ssm_handler (FpiSsm *ssm, FpDevice *dev)
|
||||
{
|
||||
FpiDeviceFocaltechMoh *self = FPI_DEVICE_FOCALTECH_MOH (dev);
|
||||
int state = fpi_ssm_get_cur_state (ssm);
|
||||
|
||||
switch (state)
|
||||
{
|
||||
/*
|
||||
* Warmup: first bulk read after reset returns garbage.
|
||||
* Skip if already done.
|
||||
*/
|
||||
case CAPTURE_WARMUP_PREP1:
|
||||
if (self->warmup_done)
|
||||
{
|
||||
fpi_ssm_jump_to_state (ssm, CAPTURE_SYNC_PREP1);
|
||||
return;
|
||||
}
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_PREPARE, FT9201_PREPARE_INIT, 0);
|
||||
break;
|
||||
|
||||
case CAPTURE_WARMUP_PREP2:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_PREPARE, FT9201_PREPARE_READ, 0);
|
||||
break;
|
||||
|
||||
case CAPTURE_WARMUP_CMD:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_NEW_SIU_RW, 0x0020, FT9201_REG_STATUS);
|
||||
break;
|
||||
|
||||
case CAPTURE_WARMUP_READ:
|
||||
{
|
||||
FpiUsbTransfer *transfer = fpi_usb_transfer_new (dev);
|
||||
|
||||
fpi_usb_transfer_fill_bulk (transfer, FT9201_EP_IN, 32);
|
||||
transfer->short_is_error = FALSE;
|
||||
transfer->ssm = ssm;
|
||||
fpi_usb_transfer_submit (transfer, FT9201_CMD_TIMEOUT, NULL,
|
||||
capture_read_cb, NULL);
|
||||
self->warmup_done = TRUE;
|
||||
}
|
||||
break;
|
||||
|
||||
/* Sync: poke 0xFF00 (no bulk read) */
|
||||
case CAPTURE_SYNC_PREP1:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_PREPARE, FT9201_PREPARE_INIT, 0);
|
||||
break;
|
||||
|
||||
case CAPTURE_SYNC_PREP2:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_PREPARE, FT9201_PREPARE_READ, 0);
|
||||
break;
|
||||
|
||||
case CAPTURE_SYNC_CMD:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_NEW_SIU_RW, 0, FT9201_REG_SYNC);
|
||||
break;
|
||||
|
||||
/* Status: read 4 bytes from 0x9180 */
|
||||
case CAPTURE_STATUS_PREP1:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_PREPARE, FT9201_PREPARE_INIT, 0);
|
||||
break;
|
||||
|
||||
case CAPTURE_STATUS_PREP2:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_PREPARE, FT9201_PREPARE_READ, 0);
|
||||
break;
|
||||
|
||||
case CAPTURE_STATUS_CMD:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_NEW_SIU_RW, 4, FT9201_REG_STATUS);
|
||||
break;
|
||||
|
||||
case CAPTURE_STATUS_READ:
|
||||
{
|
||||
FpiUsbTransfer *transfer = fpi_usb_transfer_new (dev);
|
||||
|
||||
fpi_usb_transfer_fill_bulk (transfer, FT9201_EP_IN, 32);
|
||||
transfer->short_is_error = FALSE;
|
||||
transfer->ssm = ssm;
|
||||
fpi_usb_transfer_submit (transfer, FT9201_CMD_TIMEOUT, NULL,
|
||||
capture_read_cb, NULL);
|
||||
}
|
||||
break;
|
||||
|
||||
/* Image capture: 5120 bytes from 0x9080 */
|
||||
case CAPTURE_IMG_PREP1:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_PREPARE, FT9201_PREPARE_INIT, 0);
|
||||
break;
|
||||
|
||||
case CAPTURE_IMG_PREP2:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_PREPARE, FT9201_PREPARE_READ, 0);
|
||||
break;
|
||||
|
||||
case CAPTURE_IMG_CMD:
|
||||
ft9201_ctrl_out (dev, ssm, FT9201_REQ_NEW_SIU_RW,
|
||||
FT9201_IMG_SIZE, FT9201_REG_CAPTURE);
|
||||
break;
|
||||
|
||||
case CAPTURE_IMG_READ:
|
||||
{
|
||||
FpiUsbTransfer *transfer = fpi_usb_transfer_new (dev);
|
||||
|
||||
fpi_usb_transfer_fill_bulk_full (transfer, FT9201_EP_IN,
|
||||
self->image_buf, FT9201_IMG_SIZE,
|
||||
NULL);
|
||||
transfer->short_is_error = FALSE;
|
||||
transfer->ssm = ssm;
|
||||
fpi_usb_transfer_submit (transfer, FT9201_CMD_TIMEOUT, NULL,
|
||||
capture_read_cb, NULL);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
capture_ssm_complete (FpiSsm *ssm, FpDevice *dev, GError *error)
|
||||
{
|
||||
FpImageDevice *img_dev = FP_IMAGE_DEVICE (dev);
|
||||
FpiDeviceFocaltechMoh *self = FPI_DEVICE_FOCALTECH_MOH (dev);
|
||||
FpImage *image;
|
||||
|
||||
self->capture_ssm = NULL;
|
||||
|
||||
if (self->deactivating)
|
||||
{
|
||||
g_clear_error (&error);
|
||||
fpi_image_device_deactivate_complete (img_dev, NULL);
|
||||
return;
|
||||
}
|
||||
|
||||
if (error)
|
||||
{
|
||||
fpi_image_device_session_error (img_dev, error);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Check if image has meaningful data.
|
||||
* Warmup/blank images have very few unique pixel values.
|
||||
* A real fingerprint has 100+ unique values. */
|
||||
{
|
||||
gboolean seen[256] = { FALSE, };
|
||||
int unique = 0;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < FT9201_IMG_SIZE; i++)
|
||||
{
|
||||
if (!seen[self->image_buf[i]])
|
||||
{
|
||||
seen[self->image_buf[i]] = TRUE;
|
||||
unique++;
|
||||
}
|
||||
}
|
||||
|
||||
if (unique < 50)
|
||||
{
|
||||
fp_dbg ("Skipping low-quality image (%d unique values)", unique);
|
||||
goto restart_capture;
|
||||
}
|
||||
}
|
||||
|
||||
/* Report finger on, submit image, report finger off */
|
||||
image = fp_image_new (FT9201_IMG_WIDTH, FT9201_IMG_HEIGHT);
|
||||
memcpy (image->data, self->image_buf, FT9201_IMG_SIZE);
|
||||
image->flags = FPI_IMAGE_V_FLIPPED;
|
||||
|
||||
fp_dbg ("Image captured (%d unique values), submitting",
|
||||
FT9201_IMG_SIZE);
|
||||
|
||||
fpi_image_device_report_finger_status (img_dev, TRUE);
|
||||
fpi_image_device_image_captured (img_dev, image);
|
||||
fpi_image_device_report_finger_status (img_dev, FALSE);
|
||||
|
||||
restart_capture:
|
||||
/* Restart capture loop with a short delay to avoid busy-polling */
|
||||
if (!self->deactivating)
|
||||
{
|
||||
self->capture_ssm = fpi_ssm_new (FP_DEVICE (dev), capture_ssm_handler,
|
||||
CAPTURE_NUM_STATES);
|
||||
fpi_ssm_start (self->capture_ssm, capture_ssm_complete);
|
||||
}
|
||||
}
|
||||
|
||||
/* ─── Device lifecycle ─────────────────────────────────────────── */
|
||||
|
||||
static void
|
||||
dev_open (FpImageDevice *dev)
|
||||
{
|
||||
FpiDeviceFocaltechMoh *self = FPI_DEVICE_FOCALTECH_MOH (dev);
|
||||
GError *error = NULL;
|
||||
|
||||
G_DEBUG_HERE ();
|
||||
|
||||
/* Reset USB device to clear any stuck bulk IN pipe state.
|
||||
* Without this, the first bulk read may timeout if the pipe
|
||||
* was left in a bad state from a previous session. */
|
||||
if (!g_usb_device_reset (fpi_device_get_usb_device (FP_DEVICE (dev)), &error))
|
||||
{
|
||||
fp_dbg ("USB reset failed (non-fatal): %s", error->message);
|
||||
g_clear_error (&error);
|
||||
}
|
||||
|
||||
if (!g_usb_device_claim_interface (fpi_device_get_usb_device (FP_DEVICE (dev)),
|
||||
0, 0, &error))
|
||||
{
|
||||
fpi_image_device_open_complete (dev, error);
|
||||
return;
|
||||
}
|
||||
|
||||
self->image_buf = g_malloc0 (FT9201_IMG_SIZE);
|
||||
self->warmup_done = FALSE;
|
||||
|
||||
fpi_image_device_open_complete (dev, NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
dev_close (FpImageDevice *dev)
|
||||
{
|
||||
FpiDeviceFocaltechMoh *self = FPI_DEVICE_FOCALTECH_MOH (dev);
|
||||
GError *error = NULL;
|
||||
|
||||
G_DEBUG_HERE ();
|
||||
|
||||
g_clear_pointer (&self->image_buf, g_free);
|
||||
|
||||
g_usb_device_release_interface (fpi_device_get_usb_device (FP_DEVICE (dev)),
|
||||
0, 0, &error);
|
||||
fpi_image_device_close_complete (dev, error);
|
||||
}
|
||||
|
||||
static void
|
||||
dev_activate (FpImageDevice *dev)
|
||||
{
|
||||
FpiDeviceFocaltechMoh *self = FPI_DEVICE_FOCALTECH_MOH (dev);
|
||||
|
||||
G_DEBUG_HERE ();
|
||||
|
||||
self->deactivating = FALSE;
|
||||
|
||||
self->capture_ssm = fpi_ssm_new (FP_DEVICE (dev), capture_ssm_handler,
|
||||
CAPTURE_NUM_STATES);
|
||||
fpi_ssm_start (self->capture_ssm, capture_ssm_complete);
|
||||
|
||||
fpi_image_device_activate_complete (dev, NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
dev_deactivate (FpImageDevice *dev)
|
||||
{
|
||||
FpiDeviceFocaltechMoh *self = FPI_DEVICE_FOCALTECH_MOH (dev);
|
||||
|
||||
G_DEBUG_HERE ();
|
||||
|
||||
if (!self->capture_ssm)
|
||||
fpi_image_device_deactivate_complete (dev, NULL);
|
||||
else
|
||||
self->deactivating = TRUE;
|
||||
}
|
||||
|
||||
/* ─── GType boilerplate ────────────────────────────────────────── */
|
||||
|
||||
static void
|
||||
fpi_device_focaltech_moh_init (FpiDeviceFocaltechMoh *self)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
fpi_device_focaltech_moh_class_init (FpiDeviceFocaltechMohClass *klass)
|
||||
{
|
||||
FpDeviceClass *dev_class = FP_DEVICE_CLASS (klass);
|
||||
FpImageDeviceClass *img_class = FP_IMAGE_DEVICE_CLASS (klass);
|
||||
|
||||
dev_class->id = "focaltech_moh";
|
||||
dev_class->full_name = "FocalTech FT9201 Fingerprint Sensor";
|
||||
dev_class->type = FP_DEVICE_TYPE_USB;
|
||||
dev_class->scan_type = FP_SCAN_TYPE_PRESS;
|
||||
dev_class->id_table = id_table;
|
||||
|
||||
img_class->img_open = dev_open;
|
||||
img_class->img_close = dev_close;
|
||||
img_class->activate = dev_activate;
|
||||
img_class->deactivate = dev_deactivate;
|
||||
|
||||
img_class->img_width = FT9201_IMG_WIDTH;
|
||||
img_class->img_height = FT9201_IMG_HEIGHT;
|
||||
img_class->bz3_threshold = 24;
|
||||
}
|
||||
98
libfprint/drivers/focaltech_moh/focaltech_moh.h
Normal file
98
libfprint/drivers/focaltech_moh/focaltech_moh.h
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
/*
|
||||
* FocalTech FT9201 Match-on-Host driver for libfprint
|
||||
*
|
||||
* Copyright (C) 2025 libfprint contributors
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "fpi-device.h"
|
||||
#include "fpi-ssm.h"
|
||||
#include "fpi-image-device.h"
|
||||
|
||||
G_DECLARE_FINAL_TYPE (FpiDeviceFocaltechMoh, fpi_device_focaltech_moh, FPI,
|
||||
DEVICE_FOCALTECH_MOH, FpImageDevice)
|
||||
|
||||
#define FT9201_VID 0x2808
|
||||
#define FT9201_PID 0x9338
|
||||
|
||||
#define FT9201_EP_IN 0x83 /* Bulk IN (EP3, 32B max packet) */
|
||||
|
||||
/* Image: 64 wide x 80 high, 8-bit grayscale */
|
||||
#define FT9201_IMG_WIDTH 64
|
||||
#define FT9201_IMG_HEIGHT 80
|
||||
#define FT9201_IMG_SIZE (FT9201_IMG_WIDTH * FT9201_IMG_HEIGHT) /* 5120 */
|
||||
|
||||
#define FT9201_CMD_TIMEOUT 5000
|
||||
#define FT9201_POLL_INTERVAL 30 /* ms between finger detection polls */
|
||||
|
||||
/* USB vendor request codes */
|
||||
#define FT9201_REQ_PREPARE 0x34
|
||||
#define FT9201_REQ_INT_STATUS 0x43
|
||||
#define FT9201_REQ_NEW_SIU_RW 0x6F
|
||||
|
||||
/* Prepare command wValue values */
|
||||
#define FT9201_PREPARE_INIT 0x00FF
|
||||
#define FT9201_PREPARE_READ 0x0003
|
||||
|
||||
/* New SIU compound register addresses (wIndex for req 0x6F) */
|
||||
#define FT9201_REG_STATUS 0x9180 /* Chip status / OTP info */
|
||||
#define FT9201_REG_CAPTURE 0x9080 /* Image capture */
|
||||
#define FT9201_REG_SYNC 0xFF00 /* Sync / reset (size=0, no bulk) */
|
||||
|
||||
/*
|
||||
* Capture state machine — one state per async USB transfer.
|
||||
*
|
||||
* The read sequence is: PREPARE_INIT → PREPARE_READ → NEW_SIU_RW → BULK_IN.
|
||||
* Each is a separate async transfer, so each gets its own SSM state.
|
||||
*/
|
||||
enum capture_states {
|
||||
/* Warmup: discard first bulk read after USB reset */
|
||||
CAPTURE_WARMUP_PREP1, /* OUT 0x34(0xFF) */
|
||||
CAPTURE_WARMUP_PREP2, /* OUT 0x34(3) */
|
||||
CAPTURE_WARMUP_CMD, /* OUT 0x6F(32, 0x9180) */
|
||||
CAPTURE_WARMUP_READ, /* BULK IN 32B (discard) */
|
||||
|
||||
/* Sync: poke 0xFF00 */
|
||||
CAPTURE_SYNC_PREP1, /* OUT 0x34(0xFF) */
|
||||
CAPTURE_SYNC_PREP2, /* OUT 0x34(3) */
|
||||
CAPTURE_SYNC_CMD, /* OUT 0x6F(0, 0xFF00) — no bulk */
|
||||
|
||||
/* Status: read 4 bytes from 0x9180 */
|
||||
CAPTURE_STATUS_PREP1, /* OUT 0x34(0xFF) */
|
||||
CAPTURE_STATUS_PREP2, /* OUT 0x34(3) */
|
||||
CAPTURE_STATUS_CMD, /* OUT 0x6F(4, 0x9180) */
|
||||
CAPTURE_STATUS_READ, /* BULK IN 32B (check status) */
|
||||
|
||||
/* Image: read 5120 bytes from 0x9080 */
|
||||
CAPTURE_IMG_PREP1, /* OUT 0x34(0xFF) */
|
||||
CAPTURE_IMG_PREP2, /* OUT 0x34(3) */
|
||||
CAPTURE_IMG_CMD, /* OUT 0x6F(0x1400, 0x9080) */
|
||||
CAPTURE_IMG_READ, /* BULK IN 5120B */
|
||||
|
||||
CAPTURE_NUM_STATES,
|
||||
};
|
||||
|
||||
struct _FpiDeviceFocaltechMoh
|
||||
{
|
||||
FpImageDevice parent;
|
||||
|
||||
gboolean deactivating;
|
||||
gboolean warmup_done;
|
||||
FpiSsm *capture_ssm;
|
||||
guint8 *image_buf;
|
||||
};
|
||||
|
|
@ -153,6 +153,8 @@ driver_sources = {
|
|||
[ 'drivers/realtek/realtek.c' ],
|
||||
'focaltech_moc' :
|
||||
[ 'drivers/focaltech_moc/focaltech_moc.c' ],
|
||||
'focaltech_moh' :
|
||||
[ 'drivers/focaltech_moh/focaltech_moh.c' ],
|
||||
}
|
||||
|
||||
helper_sources = {
|
||||
|
|
|
|||
|
|
@ -144,6 +144,7 @@ default_drivers = [
|
|||
'fpcmoc',
|
||||
'realtek',
|
||||
'focaltech_moc',
|
||||
'focaltech_moh',
|
||||
]
|
||||
|
||||
spi_drivers = [
|
||||
|
|
@ -168,6 +169,7 @@ endian_independent_drivers = virtual_drivers + [
|
|||
'elanmoc',
|
||||
'etes603',
|
||||
'focaltech_moc',
|
||||
'focaltech_moh',
|
||||
'nb1010',
|
||||
'realtek',
|
||||
'synaptics',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue