mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-22 09:12:32 +00:00

1. Modify the correct input for the iap reg (byte -> word). 2. Add new HWID for ThinkPad X1 Carbon Gen 9.
578 lines
18 KiB
C
578 lines
18 KiB
C
/*
|
|
* Copyright (C) 2020 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <linux/hidraw.h>
|
|
#include <linux/input.h>
|
|
|
|
#include "fu-elantp-common.h"
|
|
#include "fu-elantp-firmware.h"
|
|
#include "fu-elantp-hid-device.h"
|
|
|
|
#include "fu-chunk.h"
|
|
|
|
struct _FuElantpHidDevice {
|
|
FuUdevDevice parent_instance;
|
|
guint16 ic_page_count;
|
|
guint16 iap_type;
|
|
guint16 iap_ctrl;
|
|
guint16 iap_password;
|
|
guint16 module_id;
|
|
guint16 fw_page_size;
|
|
guint8 pattern;
|
|
};
|
|
|
|
G_DEFINE_TYPE (FuElantpHidDevice, fu_elantp_hid_device, FU_TYPE_UDEV_DEVICE)
|
|
|
|
static void
|
|
fu_elantp_hid_device_to_string (FuDevice *device, guint idt, GString *str)
|
|
{
|
|
FuElantpHidDevice *self = FU_ELANTP_HID_DEVICE (device);
|
|
fu_common_string_append_kx (str, idt, "ModuleId", self->module_id);
|
|
fu_common_string_append_kx (str, idt, "Pattern", self->pattern);
|
|
fu_common_string_append_kx (str, idt, "FwPageSize", self->fw_page_size);
|
|
fu_common_string_append_kx (str, idt, "IcPageCount", self->ic_page_count);
|
|
fu_common_string_append_kx (str, idt, "IapType", self->iap_type);
|
|
fu_common_string_append_kx (str, idt, "IapCtrl", self->iap_ctrl);
|
|
}
|
|
|
|
static gboolean
|
|
fu_elantp_hid_device_probe (FuUdevDevice *device, GError **error)
|
|
{
|
|
/* check is valid */
|
|
if (g_strcmp0 (fu_udev_device_get_subsystem (device), "hidraw") != 0) {
|
|
g_set_error (error,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_NOT_SUPPORTED,
|
|
"is not correct subsystem=%s, expected hidraw",
|
|
fu_udev_device_get_subsystem (device));
|
|
return FALSE;
|
|
}
|
|
|
|
/* i2c-hid */
|
|
if (fu_udev_device_get_model (device) < 0x3000 ||
|
|
fu_udev_device_get_model (device) >= 0x4000) {
|
|
g_set_error_literal (error,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_NOT_SUPPORTED,
|
|
"not i2c-hid touchpad");
|
|
return FALSE;
|
|
}
|
|
|
|
/* set the physical ID */
|
|
return fu_udev_device_set_physical_id (device, "hid", error);
|
|
}
|
|
|
|
static gboolean
|
|
fu_elantp_hid_device_send_cmd (FuElantpHidDevice *self,
|
|
guint8 *tx, gsize txsz,
|
|
guint8 *rx, gsize rxsz,
|
|
GError **error)
|
|
{
|
|
g_autofree guint8 *buf = NULL;
|
|
gsize bufsz = rxsz + 3;
|
|
|
|
if (g_getenv ("FWUPD_ELANTP_VERBOSE") != NULL)
|
|
fu_common_dump_raw (G_LOG_DOMAIN, "SetReport", tx, txsz);
|
|
if (!fu_udev_device_ioctl (FU_UDEV_DEVICE (self),
|
|
HIDIOCSFEATURE(txsz), tx,
|
|
NULL, error))
|
|
return FALSE;
|
|
if (rxsz == 0)
|
|
return TRUE;
|
|
|
|
/* GetFeature */
|
|
buf = g_malloc0 (bufsz);
|
|
buf[0] = tx[0]; /* report number */
|
|
if (!fu_udev_device_ioctl (FU_UDEV_DEVICE (self),
|
|
HIDIOCGFEATURE(bufsz), buf,
|
|
NULL, error))
|
|
return FALSE;
|
|
if (g_getenv ("FWUPD_ELANTP_VERBOSE") != NULL)
|
|
fu_common_dump_raw (G_LOG_DOMAIN, "GetReport", buf, bufsz);
|
|
|
|
/* success */
|
|
return fu_memcpy_safe (rx, rxsz, 0x0, /* dst */
|
|
buf, bufsz, 0x3, /* src */
|
|
rxsz, error);
|
|
}
|
|
|
|
static gboolean
|
|
fu_elantp_hid_device_read_cmd (FuElantpHidDevice *self, guint16 reg,
|
|
guint8 *rx, gsize rxsz, GError **error)
|
|
{
|
|
guint8 buf[5] = { 0x0d, 0x05, 0x03 };
|
|
fu_common_write_uint16 (buf + 0x3, reg, G_LITTLE_ENDIAN);
|
|
return fu_elantp_hid_device_send_cmd (self, buf, sizeof(buf), rx, rxsz, error);
|
|
}
|
|
|
|
static gint
|
|
fu_elantp_hid_device_write_cmd (FuElantpHidDevice *self,
|
|
guint16 reg, guint16 cmd,
|
|
GError **error)
|
|
{
|
|
guint8 buf[5] = { 0x0d };
|
|
fu_common_write_uint16 (buf + 0x1, reg, G_LITTLE_ENDIAN);
|
|
fu_common_write_uint16 (buf + 0x3, cmd, G_LITTLE_ENDIAN);
|
|
return fu_elantp_hid_device_send_cmd (self, buf, sizeof(buf), NULL, 0, error);
|
|
}
|
|
|
|
static gboolean
|
|
fu_elantp_hid_device_ensure_iap_ctrl (FuElantpHidDevice *self, GError **error)
|
|
{
|
|
guint8 buf[2] = { 0x0 };
|
|
if (!fu_elantp_hid_device_read_cmd (self, ETP_CMD_I2C_IAP_CTRL, buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read IAPControl: ");
|
|
return FALSE;
|
|
}
|
|
self->iap_ctrl = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN);
|
|
|
|
/* in bootloader mode? */
|
|
if ((self->iap_ctrl & ETP_I2C_MAIN_MODE_ON) == 0)
|
|
fu_device_add_flag (FU_DEVICE (self), FWUPD_DEVICE_FLAG_IS_BOOTLOADER);
|
|
else
|
|
fu_device_remove_flag (FU_DEVICE (self), FWUPD_DEVICE_FLAG_IS_BOOTLOADER);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
fu_elantp_hid_device_setup (FuDevice *device, GError **error)
|
|
{
|
|
FuElantpHidDevice *self = FU_ELANTP_HID_DEVICE (device);
|
|
FuUdevDevice *udev_device = FU_UDEV_DEVICE (device);
|
|
guint16 fwver;
|
|
guint16 iap_ver;
|
|
guint16 tmp;
|
|
guint8 buf[2] = { 0x0 };
|
|
guint8 ic_type;
|
|
g_autofree gchar *instance_id1 = NULL;
|
|
g_autofree gchar *instance_id2 = NULL;
|
|
g_autofree gchar *instance_id_ic_type = NULL;
|
|
g_autofree gchar *version_bl = NULL;
|
|
g_autofree gchar *version = NULL;
|
|
|
|
/* get pattern */
|
|
if (!fu_elantp_hid_device_read_cmd (self,
|
|
ETP_CMD_I2C_GET_HID_ID,
|
|
buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read HID ID: ");
|
|
return FALSE;
|
|
}
|
|
tmp = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN);
|
|
self->pattern = tmp != 0xffff ? (tmp & 0xff00) >> 8 : 0;
|
|
|
|
/* get current firmware version */
|
|
if (!fu_elantp_hid_device_read_cmd (self,
|
|
ETP_CMD_I2C_FW_VERSION,
|
|
buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read fw version: ");
|
|
return FALSE;
|
|
}
|
|
fwver = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN);
|
|
if (fwver == 0xFFFF || fwver == ETP_CMD_I2C_FW_VERSION)
|
|
fwver = 0;
|
|
version = fu_common_version_from_uint16 (fwver, FWUPD_VERSION_FORMAT_HEX);
|
|
fu_device_set_version (device, version);
|
|
|
|
/* get IAP firmware version */
|
|
if (!fu_elantp_hid_device_read_cmd (self,
|
|
self->pattern == 0 ? ETP_CMD_I2C_IAP_VERSION : ETP_CMD_I2C_IAP_VERSION_2,
|
|
buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read bootloader version: ");
|
|
return FALSE;
|
|
}
|
|
if (self->pattern >= 1) {
|
|
iap_ver = buf[1];
|
|
} else {
|
|
iap_ver = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN);
|
|
}
|
|
version_bl = fu_common_version_from_uint16 (iap_ver, FWUPD_VERSION_FORMAT_HEX);
|
|
fu_device_set_version_bootloader (device, version_bl);
|
|
|
|
/* get module ID */
|
|
if (!fu_elantp_hid_device_read_cmd (self,
|
|
ETP_CMD_GET_MODULE_ID,
|
|
buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read module ID: ");
|
|
return FALSE;
|
|
}
|
|
self->module_id = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN);
|
|
|
|
/* define the extra instance IDs */
|
|
instance_id1 = g_strdup_printf ("HIDRAW\\VEN_%04X&DEV_%04X&MOD_%04X",
|
|
fu_udev_device_get_vendor (udev_device),
|
|
fu_udev_device_get_model (udev_device),
|
|
self->module_id);
|
|
fu_device_add_instance_id (device, instance_id1);
|
|
|
|
/* get OSM version */
|
|
if (!fu_elantp_hid_device_read_cmd (self, ETP_CMD_I2C_OSM_VERSION, buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read OSM version: ");
|
|
return FALSE;
|
|
}
|
|
tmp = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN);
|
|
if (tmp == ETP_CMD_I2C_OSM_VERSION || tmp == 0xFFFF) {
|
|
if (!fu_elantp_hid_device_read_cmd (self, ETP_CMD_I2C_IAP_ICBODY, buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read IC body: ");
|
|
return FALSE;
|
|
}
|
|
ic_type = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN) & 0xFF;
|
|
} else {
|
|
ic_type = (tmp >> 8) & 0xFF;
|
|
}
|
|
instance_id_ic_type = g_strdup_printf ("ELANTP\\ICTYPE_%02X", ic_type);
|
|
fu_device_add_instance_id (device, instance_id_ic_type);
|
|
|
|
/* define the extra instance IDs (ic_type + module_id) */
|
|
instance_id2 = g_strdup_printf ("ELANTP\\ICTYPE_%02X&MOD_%04X",
|
|
ic_type, self->module_id);
|
|
fu_device_add_instance_id (device, instance_id2);
|
|
|
|
/* no quirk entry */
|
|
if (self->ic_page_count == 0x0) {
|
|
g_set_error (error,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_NOT_SUPPORTED,
|
|
"no page count for ELANTP\\ICTYPE_%02X",
|
|
ic_type);
|
|
return FALSE;
|
|
}
|
|
|
|
/* The ic_page_count is based on 64 bytes/page. */
|
|
fu_device_set_firmware_size (device, (guint64) self->ic_page_count * (guint64) 64);
|
|
|
|
/* is in bootloader mode */
|
|
if (!fu_elantp_hid_device_ensure_iap_ctrl (self, error))
|
|
return FALSE;
|
|
|
|
/* success */
|
|
return TRUE;
|
|
}
|
|
|
|
static FuFirmware *
|
|
fu_elantp_hid_device_prepare_firmware (FuDevice *device,
|
|
GBytes *fw,
|
|
FwupdInstallFlags flags,
|
|
GError **error)
|
|
{
|
|
FuElantpHidDevice *self = FU_ELANTP_HID_DEVICE (device);
|
|
guint16 module_id;
|
|
g_autoptr(FuFirmware) firmware = fu_elantp_firmware_new ();
|
|
|
|
/* check is compatible with hardware */
|
|
if (!fu_firmware_parse (firmware, fw, flags, error))
|
|
return NULL;
|
|
module_id = fu_elantp_firmware_get_module_id (FU_ELANTP_FIRMWARE (firmware));
|
|
if (self->module_id != module_id) {
|
|
g_set_error (error,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_INVALID_FILE,
|
|
"firmware incompatible, got 0x%04x, expected 0x%04x",
|
|
module_id, self->module_id);
|
|
return NULL;
|
|
}
|
|
|
|
/* success */
|
|
return g_steal_pointer (&firmware);
|
|
}
|
|
|
|
static gboolean
|
|
fu_elantp_hid_device_write_firmware (FuDevice *device,
|
|
FuFirmware *firmware,
|
|
FwupdInstallFlags flags,
|
|
GError **error)
|
|
{
|
|
FuElantpHidDevice *self = FU_ELANTP_HID_DEVICE (device);
|
|
FuElantpFirmware *firmware_elantp = FU_ELANTP_FIRMWARE (firmware);
|
|
gsize bufsz = 0;
|
|
guint16 checksum = 0;
|
|
guint16 checksum_device = 0;
|
|
guint16 iap_addr;
|
|
const guint8 *buf;
|
|
guint8 csum_buf[2] = { 0x0 };
|
|
g_autoptr(GBytes) fw = NULL;
|
|
g_autoptr(GPtrArray) chunks = NULL;
|
|
|
|
/* simple image */
|
|
fw = fu_firmware_get_image_default_bytes (firmware, error);
|
|
if (fw == NULL)
|
|
return FALSE;
|
|
|
|
/* write each block */
|
|
fu_device_set_status (device, FWUPD_STATUS_DEVICE_WRITE);
|
|
buf = g_bytes_get_data (fw, &bufsz);
|
|
iap_addr = fu_elantp_firmware_get_iap_addr (firmware_elantp);
|
|
chunks = fu_chunk_array_new (buf + iap_addr, bufsz - iap_addr, 0x0, 0x0, self->fw_page_size);
|
|
for (guint i = 0; i < chunks->len; i++) {
|
|
FuChunk *chk = g_ptr_array_index (chunks, i);
|
|
guint16 csum_tmp = fu_elantp_calc_checksum (chk->data, chk->data_sz);
|
|
gsize blksz = self->fw_page_size + 3;
|
|
g_autofree guint8 *blk = g_malloc0 (blksz);
|
|
|
|
/* write block */
|
|
blk[0] = 0x0B; /* report ID */
|
|
if (!fu_memcpy_safe (blk, blksz, 0x1, /* dst */
|
|
chk->data, chk->data_sz, 0x0, /* src */
|
|
chk->data_sz, error))
|
|
return FALSE;
|
|
fu_common_write_uint16 (blk + chk->data_sz + 1, csum_tmp, G_LITTLE_ENDIAN);
|
|
|
|
if (!fu_elantp_hid_device_send_cmd (self, blk, blksz, NULL, 0, error))
|
|
return FALSE;
|
|
g_usleep (self->fw_page_size == 512 ?
|
|
ELANTP_DELAY_WRITE_BLOCK_512 * 1000 :
|
|
ELANTP_DELAY_WRITE_BLOCK * 1000);
|
|
|
|
if (!fu_elantp_hid_device_ensure_iap_ctrl (self, error))
|
|
return FALSE;
|
|
if (self->iap_ctrl & (ETP_FW_IAP_PAGE_ERR | ETP_FW_IAP_INTF_ERR)) {
|
|
g_set_error (error,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_WRITE,
|
|
"bootloader reports failed write: 0x%x",
|
|
self->iap_ctrl);
|
|
return FALSE;
|
|
}
|
|
|
|
/* update progress */
|
|
checksum += csum_tmp;
|
|
fu_device_set_progress_full (device, (gsize) i, (gsize) chunks->len);
|
|
}
|
|
|
|
/* verify the written checksum */
|
|
fu_device_set_status (device, FWUPD_STATUS_DEVICE_VERIFY);
|
|
if (!fu_elantp_hid_device_read_cmd (self, ETP_CMD_I2C_IAP_CHECKSUM,
|
|
csum_buf, sizeof(csum_buf), error))
|
|
return FALSE;
|
|
checksum_device = fu_common_read_uint16 (csum_buf, G_LITTLE_ENDIAN);
|
|
if (checksum != checksum_device) {
|
|
g_set_error (error,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_WRITE,
|
|
"checksum failed 0x%04x != 0x%04x",
|
|
checksum, checksum_device);
|
|
return FALSE;
|
|
}
|
|
|
|
/* wait for a reset */
|
|
fu_device_set_progress (device, 0);
|
|
fu_device_set_status (device, FWUPD_STATUS_DEVICE_RESTART);
|
|
g_usleep (ELANTP_DELAY_COMPLETE * 1000);
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
fu_elantp_hid_device_detach (FuDevice *device, GError **error)
|
|
{
|
|
FuElantpHidDevice *self = FU_ELANTP_HID_DEVICE (device);
|
|
guint16 iap_ver;
|
|
guint16 ic_type;
|
|
guint8 buf[2] = { 0x0 };
|
|
guint16 tmp;
|
|
|
|
/* sanity check */
|
|
if (fu_device_has_flag (device, FWUPD_DEVICE_FLAG_IS_BOOTLOADER)) {
|
|
g_debug ("in bootloader mode, reset IC");
|
|
fu_device_set_status (device, FWUPD_STATUS_DEVICE_RESTART);
|
|
if (!fu_elantp_hid_device_write_cmd (self,
|
|
ETP_CMD_I2C_IAP_RESET,
|
|
ETP_I2C_IAP_RESET,
|
|
error))
|
|
return FALSE;
|
|
g_usleep (ELANTP_DELAY_RESET * 1000);
|
|
}
|
|
|
|
/* get OSM version */
|
|
if (!fu_elantp_hid_device_read_cmd (self, ETP_CMD_I2C_OSM_VERSION, buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read OSM version: ");
|
|
return FALSE;
|
|
}
|
|
tmp = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN);
|
|
if (tmp == ETP_CMD_I2C_OSM_VERSION || tmp == 0xFFFF) {
|
|
if (!fu_elantp_hid_device_read_cmd (self, ETP_CMD_I2C_IAP_ICBODY, buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read IC body: ");
|
|
return FALSE;
|
|
}
|
|
ic_type = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN) & 0xFF;
|
|
} else {
|
|
ic_type = (tmp >> 8) & 0xFF;
|
|
}
|
|
|
|
/* get IAP firmware version */
|
|
if (!fu_elantp_hid_device_read_cmd (self,
|
|
self->pattern == 0 ? ETP_CMD_I2C_IAP_VERSION : ETP_CMD_I2C_IAP_VERSION_2,
|
|
buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read bootloader version: ");
|
|
return FALSE;
|
|
}
|
|
if (self->pattern >= 1) {
|
|
iap_ver = buf[1];
|
|
} else {
|
|
iap_ver = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN);
|
|
}
|
|
if (ic_type >= 0x10) {
|
|
if (iap_ver >= 1) {
|
|
/* set the IAP type, presumably some kind of ABI */
|
|
if (iap_ver >= 2 && (ic_type == 0x14 || ic_type==0x15)) {
|
|
self->fw_page_size = 512;
|
|
} else {
|
|
self->fw_page_size = 128;
|
|
}
|
|
|
|
if (!fu_elantp_hid_device_write_cmd (self,
|
|
ETP_CMD_I2C_IAP_TYPE,
|
|
self->fw_page_size / 2,
|
|
error))
|
|
return FALSE;
|
|
if (!fu_elantp_hid_device_read_cmd (self, ETP_CMD_I2C_IAP_TYPE,
|
|
buf, sizeof(buf), error)) {
|
|
g_prefix_error (error, "failed to read IAP type: ");
|
|
return FALSE;
|
|
}
|
|
self->iap_type = fu_common_read_uint16 (buf, G_LITTLE_ENDIAN);
|
|
if (self->iap_type != self->fw_page_size / 2) {
|
|
g_set_error_literal (error,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_NOT_SUPPORTED,
|
|
"failed to set IAP type");
|
|
return FALSE;
|
|
}
|
|
|
|
}
|
|
}
|
|
if (!fu_elantp_hid_device_write_cmd (self,
|
|
ETP_CMD_I2C_IAP,
|
|
self->iap_password,
|
|
error))
|
|
return FALSE;
|
|
g_usleep (ELANTP_DELAY_UNLOCK * 1000);
|
|
if (!fu_elantp_hid_device_ensure_iap_ctrl (self, error))
|
|
return FALSE;
|
|
if ((self->iap_ctrl & ETP_FW_IAP_CHECK_PW) == 0) {
|
|
g_set_error_literal (error,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_WRITE,
|
|
"unexpected bootloader password");
|
|
return FALSE;
|
|
}
|
|
|
|
/* success */
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
fu_elantp_hid_device_attach (FuDevice *device, GError **error)
|
|
{
|
|
FuElantpHidDevice *self = FU_ELANTP_HID_DEVICE (device);
|
|
|
|
/* sanity check */
|
|
if (!fu_device_has_flag (device, FWUPD_DEVICE_FLAG_IS_BOOTLOADER)) {
|
|
g_debug ("already in runtime mode, skipping");
|
|
return TRUE;
|
|
}
|
|
|
|
/* reset back to runtime */
|
|
fu_device_set_status (device, FWUPD_STATUS_DEVICE_RESTART);
|
|
if (!fu_elantp_hid_device_write_cmd (self, ETP_CMD_I2C_IAP_RESET, ETP_I2C_IAP_RESET, error))
|
|
return FALSE;
|
|
g_usleep (ELANTP_DELAY_RESET * 1000);
|
|
if (!fu_elantp_hid_device_write_cmd (self, ETP_CMD_I2C_IAP_RESET, ETP_I2C_ENABLE_REPORT, error)) {
|
|
g_prefix_error (error, "cannot enable TP report: ");
|
|
return FALSE;
|
|
}
|
|
if (!fu_elantp_hid_device_write_cmd (self, 0x0306, 0x003, error)) {
|
|
g_prefix_error (error, "cannot switch to TP PTP mode: ");
|
|
return FALSE;
|
|
}
|
|
if (!fu_elantp_hid_device_ensure_iap_ctrl (self, error))
|
|
return FALSE;
|
|
|
|
/* success */
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
fu_elantp_hid_device_set_quirk_kv (FuDevice *device,
|
|
const gchar *key,
|
|
const gchar *value,
|
|
GError **error)
|
|
{
|
|
FuElantpHidDevice *self = FU_ELANTP_HID_DEVICE (device);
|
|
if (g_strcmp0 (key, "ElantpIcPageCount") == 0) {
|
|
guint64 tmp = fu_common_strtoull (value);
|
|
if (tmp > 0xffff) {
|
|
g_set_error_literal (error,
|
|
G_IO_ERROR,
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
"ElantpIcPageCount only supports "
|
|
"values <= 0xffff");
|
|
return FALSE;
|
|
}
|
|
self->ic_page_count = (guint16) tmp;
|
|
return TRUE;
|
|
}
|
|
if (g_strcmp0 (key, "ElantpIapPassword") == 0) {
|
|
guint64 tmp = fu_common_strtoull (value);
|
|
if (tmp > 0xffff) {
|
|
g_set_error_literal (error,
|
|
G_IO_ERROR,
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
"ElantpIapPassword only supports "
|
|
"values <= 0xffff");
|
|
return FALSE;
|
|
}
|
|
self->iap_password = (guint16) tmp;
|
|
return TRUE;
|
|
}
|
|
g_set_error_literal (error,
|
|
G_IO_ERROR,
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
"quirk key not supported");
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
fu_elantp_hid_device_init (FuElantpHidDevice *self)
|
|
{
|
|
fu_device_add_flag (FU_DEVICE (self), FWUPD_DEVICE_FLAG_INTERNAL);
|
|
fu_device_add_flag (FU_DEVICE (self), FWUPD_DEVICE_FLAG_UPDATABLE);
|
|
fu_device_set_summary (FU_DEVICE (self), "Elan Touchpad");
|
|
fu_device_add_icon (FU_DEVICE (self), "input-touchpad");
|
|
fu_device_set_protocol (FU_DEVICE (self), "tw.com.emc.elantp");
|
|
fu_device_set_version_format (FU_DEVICE (self), FWUPD_VERSION_FORMAT_HEX);
|
|
fu_device_set_priority (FU_DEVICE (self), 1); /* better than i2c */
|
|
fu_udev_device_set_flags (FU_UDEV_DEVICE (self),
|
|
FU_UDEV_DEVICE_FLAG_OPEN_READ |
|
|
FU_UDEV_DEVICE_FLAG_OPEN_WRITE |
|
|
FU_UDEV_DEVICE_FLAG_OPEN_NONBLOCK);
|
|
}
|
|
|
|
static void
|
|
fu_elantp_hid_device_finalize (GObject *object)
|
|
{
|
|
G_OBJECT_CLASS (fu_elantp_hid_device_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
fu_elantp_hid_device_class_init (FuElantpHidDeviceClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
FuDeviceClass *klass_device = FU_DEVICE_CLASS (klass);
|
|
FuUdevDeviceClass *klass_udev_device = FU_UDEV_DEVICE_CLASS (klass);
|
|
object_class->finalize = fu_elantp_hid_device_finalize;
|
|
klass_device->to_string = fu_elantp_hid_device_to_string;
|
|
klass_device->attach = fu_elantp_hid_device_attach;
|
|
klass_device->detach = fu_elantp_hid_device_detach;
|
|
klass_device->set_quirk_kv = fu_elantp_hid_device_set_quirk_kv;
|
|
klass_device->setup = fu_elantp_hid_device_setup;
|
|
klass_device->reload = fu_elantp_hid_device_setup;
|
|
klass_device->write_firmware = fu_elantp_hid_device_write_firmware;
|
|
klass_device->prepare_firmware = fu_elantp_hid_device_prepare_firmware;
|
|
klass_udev_device->probe = fu_elantp_hid_device_probe;
|
|
}
|