mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
egismoc: add 0586 support
This commit is contained in:
committed by
Marco Trevisan (Treviño)
parent
c7e95bb41f
commit
990bd40cbf
@@ -79,6 +79,7 @@ usb:v1C7Ap0571*
|
|||||||
|
|
||||||
# Supported by libfprint driver egismoc
|
# Supported by libfprint driver egismoc
|
||||||
usb:v1C7Ap0582*
|
usb:v1C7Ap0582*
|
||||||
|
usb:v1C7Ap0586*
|
||||||
usb:v1C7Ap0587*
|
usb:v1C7Ap0587*
|
||||||
usb:v1C7Ap05A1*
|
usb:v1C7Ap05A1*
|
||||||
ID_AUTOSUSPEND=1
|
ID_AUTOSUSPEND=1
|
||||||
|
|||||||
@@ -51,11 +51,7 @@ G_DEFINE_TYPE (FpiDeviceEgisMoc, fpi_device_egismoc, FP_TYPE_DEVICE);
|
|||||||
|
|
||||||
static const FpIdEntry egismoc_id_table[] = {
|
static const FpIdEntry egismoc_id_table[] = {
|
||||||
{ .vid = 0x1c7a, .pid = 0x0582, .driver_data = EGISMOC_DRIVER_CHECK_PREFIX_TYPE1 },
|
{ .vid = 0x1c7a, .pid = 0x0582, .driver_data = EGISMOC_DRIVER_CHECK_PREFIX_TYPE1 },
|
||||||
/*
|
{ .vid = 0x1c7a, .pid = 0x0586, .driver_data = EGISMOC_DRIVER_CHECK_PREFIX_TYPE1 | EGISMOC_DRIVER_MAX_ENROLL_STAGES_20 },
|
||||||
* 0x0586 is supported in the same way as 0587 per user report, but missing submission of device file to be included
|
|
||||||
*
|
|
||||||
* { .vid = 0x1c7a, .pid = 0x0586, .driver_data = EGISMOC_DRIVER_CHECK_PREFIX_TYPE1 | EGISMOC_DRIVER_MAX_ENROLL_STAGES_20 },
|
|
||||||
*/
|
|
||||||
{ .vid = 0x1c7a, .pid = 0x0587, .driver_data = EGISMOC_DRIVER_CHECK_PREFIX_TYPE1 | EGISMOC_DRIVER_MAX_ENROLL_STAGES_20 },
|
{ .vid = 0x1c7a, .pid = 0x0587, .driver_data = EGISMOC_DRIVER_CHECK_PREFIX_TYPE1 | EGISMOC_DRIVER_MAX_ENROLL_STAGES_20 },
|
||||||
{ .vid = 0x1c7a, .pid = 0x05a1, .driver_data = EGISMOC_DRIVER_CHECK_PREFIX_TYPE2 },
|
{ .vid = 0x1c7a, .pid = 0x05a1, .driver_data = EGISMOC_DRIVER_CHECK_PREFIX_TYPE2 },
|
||||||
{ .vid = 0, .pid = 0, .driver_data = 0 }
|
{ .vid = 0, .pid = 0, .driver_data = 0 }
|
||||||
|
|||||||
BIN
tests/egismoc-0586/custom.pcapng
Normal file
BIN
tests/egismoc-0586/custom.pcapng
Normal file
Binary file not shown.
156
tests/egismoc-0586/custom.py
Executable file
156
tests/egismoc-0586/custom.py
Executable file
@@ -0,0 +1,156 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import traceback
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
import gi
|
||||||
|
|
||||||
|
gi.require_version('FPrint', '2.0')
|
||||||
|
from gi.repository import FPrint, GLib
|
||||||
|
|
||||||
|
# Exit with error on any exception, included those happening in async callbacks
|
||||||
|
sys.excepthook = lambda *args: (traceback.print_exception(*args), sys.exit(1))
|
||||||
|
|
||||||
|
ctx = GLib.main_context_default()
|
||||||
|
|
||||||
|
c = FPrint.Context()
|
||||||
|
c.enumerate()
|
||||||
|
devices = c.get_devices()
|
||||||
|
|
||||||
|
d = devices[0]
|
||||||
|
del devices
|
||||||
|
|
||||||
|
d.open_sync()
|
||||||
|
|
||||||
|
assert d.get_driver() == "egismoc"
|
||||||
|
assert not d.has_feature(FPrint.DeviceFeature.CAPTURE)
|
||||||
|
assert d.has_feature(FPrint.DeviceFeature.IDENTIFY)
|
||||||
|
assert d.has_feature(FPrint.DeviceFeature.VERIFY)
|
||||||
|
assert d.has_feature(FPrint.DeviceFeature.DUPLICATES_CHECK)
|
||||||
|
assert d.has_feature(FPrint.DeviceFeature.STORAGE)
|
||||||
|
assert d.has_feature(FPrint.DeviceFeature.STORAGE_LIST)
|
||||||
|
assert d.has_feature(FPrint.DeviceFeature.STORAGE_DELETE)
|
||||||
|
assert d.has_feature(FPrint.DeviceFeature.STORAGE_CLEAR)
|
||||||
|
|
||||||
|
def enroll_progress(*args):
|
||||||
|
print("finger status: ", d.get_finger_status())
|
||||||
|
print('enroll progress: ' + str(args))
|
||||||
|
|
||||||
|
def identify_done(dev, res):
|
||||||
|
global identified
|
||||||
|
identified = True
|
||||||
|
identify_match, identify_print = dev.identify_finish(res)
|
||||||
|
print('indentification_done: ', identify_match, identify_print)
|
||||||
|
assert identify_match.equal(identify_print)
|
||||||
|
|
||||||
|
# Beginning with list and clear assumes you begin with >0 prints enrolled before capturing
|
||||||
|
|
||||||
|
print("listing - device should have prints")
|
||||||
|
stored = d.list_prints_sync()
|
||||||
|
assert len(stored) > 0
|
||||||
|
del stored
|
||||||
|
|
||||||
|
print("clear device storage")
|
||||||
|
d.clear_storage_sync()
|
||||||
|
print("clear done")
|
||||||
|
|
||||||
|
print("listing - device should be empty")
|
||||||
|
stored = d.list_prints_sync()
|
||||||
|
assert len(stored) == 0
|
||||||
|
del stored
|
||||||
|
|
||||||
|
print("enrolling")
|
||||||
|
template = FPrint.Print.new(d)
|
||||||
|
template.set_finger(FPrint.Finger.LEFT_INDEX)
|
||||||
|
assert d.get_finger_status() == FPrint.FingerStatusFlags.NONE
|
||||||
|
p1 = d.enroll_sync(template, None, enroll_progress, None)
|
||||||
|
assert d.get_finger_status() == FPrint.FingerStatusFlags.NONE
|
||||||
|
print("enroll done")
|
||||||
|
del template
|
||||||
|
|
||||||
|
print("listing - device should have 1 print")
|
||||||
|
stored = d.list_prints_sync()
|
||||||
|
assert len(stored) == 1
|
||||||
|
assert stored[0].equal(p1)
|
||||||
|
|
||||||
|
print("verifying")
|
||||||
|
assert d.get_finger_status() == FPrint.FingerStatusFlags.NONE
|
||||||
|
verify_res, verify_print = d.verify_sync(p1)
|
||||||
|
assert d.get_finger_status() == FPrint.FingerStatusFlags.NONE
|
||||||
|
print("verify done")
|
||||||
|
assert verify_res == True
|
||||||
|
|
||||||
|
identified = False
|
||||||
|
deserialized_prints = []
|
||||||
|
for p in stored:
|
||||||
|
deserialized_prints.append(FPrint.Print.deserialize(p.serialize()))
|
||||||
|
assert deserialized_prints[-1].equal(p)
|
||||||
|
del stored
|
||||||
|
|
||||||
|
print('async identifying')
|
||||||
|
d.identify(deserialized_prints, callback=identify_done)
|
||||||
|
del deserialized_prints
|
||||||
|
|
||||||
|
while not identified:
|
||||||
|
ctx.iteration(True)
|
||||||
|
|
||||||
|
print("try to enroll duplicate")
|
||||||
|
template = FPrint.Print.new(d)
|
||||||
|
template.set_finger(FPrint.Finger.RIGHT_INDEX)
|
||||||
|
assert d.get_finger_status() == FPrint.FingerStatusFlags.NONE
|
||||||
|
try:
|
||||||
|
d.enroll_sync(template, None, enroll_progress, None)
|
||||||
|
except GLib.Error as error:
|
||||||
|
assert error.matches(FPrint.DeviceError.quark(),
|
||||||
|
FPrint.DeviceError.DATA_DUPLICATE)
|
||||||
|
except Exception as exc:
|
||||||
|
raise
|
||||||
|
assert d.get_finger_status() == FPrint.FingerStatusFlags.NONE
|
||||||
|
print("duplicate enroll attempt done")
|
||||||
|
|
||||||
|
print("listing - device should still only have 1 print")
|
||||||
|
stored = d.list_prints_sync()
|
||||||
|
assert len(stored) == 1
|
||||||
|
assert stored[0].equal(p1)
|
||||||
|
del stored
|
||||||
|
|
||||||
|
print("enroll new finger")
|
||||||
|
template = FPrint.Print.new(d)
|
||||||
|
template.set_finger(FPrint.Finger.RIGHT_INDEX)
|
||||||
|
assert d.get_finger_status() == FPrint.FingerStatusFlags.NONE
|
||||||
|
p2 = d.enroll_sync(template, None, enroll_progress, None)
|
||||||
|
assert d.get_finger_status() == FPrint.FingerStatusFlags.NONE
|
||||||
|
print("enroll new finger done")
|
||||||
|
del template
|
||||||
|
|
||||||
|
print("listing - device should have 2 prints")
|
||||||
|
stored = d.list_prints_sync()
|
||||||
|
assert len(stored) == 2
|
||||||
|
assert (stored[0].equal(p1) and stored[1].equal(p2)) or (stored[0].equal(p2) and stored[1].equal(p1))
|
||||||
|
del stored
|
||||||
|
|
||||||
|
print("deleting first print")
|
||||||
|
d.delete_print_sync(p1)
|
||||||
|
print("delete done")
|
||||||
|
del p1
|
||||||
|
|
||||||
|
print("listing - device should only have second print")
|
||||||
|
stored = d.list_prints_sync()
|
||||||
|
assert len(stored) == 1
|
||||||
|
assert stored[0].equal(p2)
|
||||||
|
del stored
|
||||||
|
del p2
|
||||||
|
|
||||||
|
print("clear device storage")
|
||||||
|
d.clear_storage_sync()
|
||||||
|
print("clear done")
|
||||||
|
|
||||||
|
print("listing - device should be empty")
|
||||||
|
stored = d.list_prints_sync()
|
||||||
|
assert len(stored) == 0
|
||||||
|
del stored
|
||||||
|
|
||||||
|
d.close_sync()
|
||||||
|
|
||||||
|
del d
|
||||||
|
del c
|
||||||
255
tests/egismoc-0586/device
Normal file
255
tests/egismoc-0586/device
Normal file
@@ -0,0 +1,255 @@
|
|||||||
|
P: /devices/pci0000:00/0000:00:14.0/usb1/1-7
|
||||||
|
N: bus/usb/001/021=12010002FF0000407A1C860556620102030109022700010100A0320904000003FF000000070581020002000705020200020007058303400005
|
||||||
|
E: BUSNUM=001
|
||||||
|
E: DEVNAME=/dev/bus/usb/001/021
|
||||||
|
E: DEVNUM=021
|
||||||
|
E: DEVTYPE=usb_device
|
||||||
|
E: DRIVER=usb
|
||||||
|
E: ID_AUTOSUSPEND=1
|
||||||
|
E: ID_BUS=usb
|
||||||
|
E: ID_MODEL=ETU905A88-E
|
||||||
|
E: ID_MODEL_ENC=ETU905A88-E
|
||||||
|
E: ID_MODEL_ID=0586
|
||||||
|
E: ID_PATH=pci-0000:00:14.0-usb-0:7
|
||||||
|
E: ID_PATH_TAG=pci-0000_00_14_0-usb-0_7
|
||||||
|
E: ID_PATH_WITH_USB_REVISION=pci-0000:00:14.0-usbv2-0:7
|
||||||
|
E: ID_PERSIST=0
|
||||||
|
E: ID_REVISION=6256
|
||||||
|
E: ID_SERIAL=EGIS_ETU905A88-E_0A5743PCU834
|
||||||
|
E: ID_SERIAL_SHORT=0A5743PCU834
|
||||||
|
E: ID_USB_INTERFACES=:ff0000:
|
||||||
|
E: ID_USB_MODEL=ETU905A88-E
|
||||||
|
E: ID_USB_MODEL_ENC=ETU905A88-E
|
||||||
|
E: ID_USB_MODEL_ID=0586
|
||||||
|
E: ID_USB_REVISION=6256
|
||||||
|
E: ID_USB_SERIAL=EGIS_ETU905A88-E_0A5743PCU834
|
||||||
|
E: ID_USB_SERIAL_SHORT=0A5743PCU834
|
||||||
|
E: ID_USB_VENDOR=EGIS
|
||||||
|
E: ID_USB_VENDOR_ENC=EGIS
|
||||||
|
E: ID_USB_VENDOR_ID=1c7a
|
||||||
|
E: ID_VENDOR=EGIS
|
||||||
|
E: ID_VENDOR_ENC=EGIS
|
||||||
|
E: ID_VENDOR_FROM_DATABASE=LighTuning Technology Inc.
|
||||||
|
E: ID_VENDOR_ID=1c7a
|
||||||
|
E: MAJOR=189
|
||||||
|
E: MINOR=20
|
||||||
|
E: PRODUCT=1c7a/586/6256
|
||||||
|
E: SUBSYSTEM=usb
|
||||||
|
E: TYPE=255/0/0
|
||||||
|
A: authorized=1\n
|
||||||
|
A: avoid_reset_quirk=0\n
|
||||||
|
A: bConfigurationValue=1\n
|
||||||
|
A: bDeviceClass=ff\n
|
||||||
|
A: bDeviceProtocol=00\n
|
||||||
|
A: bDeviceSubClass=00\n
|
||||||
|
A: bMaxPacketSize0=64\n
|
||||||
|
A: bMaxPower=100mA\n
|
||||||
|
A: bNumConfigurations=1\n
|
||||||
|
A: bNumInterfaces= 1\n
|
||||||
|
A: bcdDevice=6256\n
|
||||||
|
A: bmAttributes=a0\n
|
||||||
|
A: busnum=1\n
|
||||||
|
A: configuration=
|
||||||
|
H: descriptors=12010002FF0000407A1C860556620102030109022700010100A0320904000003FF000000070581020002000705020200020007058303400005
|
||||||
|
A: dev=189:20\n
|
||||||
|
A: devnum=21\n
|
||||||
|
A: devpath=7\n
|
||||||
|
L: driver=../../../../../bus/usb/drivers/usb
|
||||||
|
L: firmware_node=../../../../LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:4e/device:4f/device:56
|
||||||
|
A: idProduct=0586\n
|
||||||
|
A: idVendor=1c7a\n
|
||||||
|
A: ltm_capable=no\n
|
||||||
|
A: manufacturer=EGIS\n
|
||||||
|
A: maxchild=0\n
|
||||||
|
A: physical_location/dock=no\n
|
||||||
|
A: physical_location/horizontal_position=center\n
|
||||||
|
A: physical_location/lid=no\n
|
||||||
|
A: physical_location/panel=front\n
|
||||||
|
A: physical_location/vertical_position=center\n
|
||||||
|
L: port=../1-0:1.0/usb1-port7
|
||||||
|
A: power/active_duration=12644\n
|
||||||
|
A: power/autosuspend=2\n
|
||||||
|
A: power/autosuspend_delay_ms=2000\n
|
||||||
|
A: power/connected_duration=230907\n
|
||||||
|
A: power/control=auto\n
|
||||||
|
A: power/level=auto\n
|
||||||
|
A: power/persist=0\n
|
||||||
|
A: power/runtime_active_time=12929\n
|
||||||
|
A: power/runtime_status=active\n
|
||||||
|
A: power/runtime_suspended_time=217715\n
|
||||||
|
A: power/wakeup=disabled\n
|
||||||
|
A: power/wakeup_abort_count=\n
|
||||||
|
A: power/wakeup_active=\n
|
||||||
|
A: power/wakeup_active_count=\n
|
||||||
|
A: power/wakeup_count=\n
|
||||||
|
A: power/wakeup_expire_count=\n
|
||||||
|
A: power/wakeup_last_time_ms=\n
|
||||||
|
A: power/wakeup_max_time_ms=\n
|
||||||
|
A: power/wakeup_total_time_ms=\n
|
||||||
|
A: product=ETU905A88-E\n
|
||||||
|
A: quirks=0x0\n
|
||||||
|
A: removable=fixed\n
|
||||||
|
A: rx_lanes=1\n
|
||||||
|
A: serial=0A5743PCU834\n
|
||||||
|
A: speed=480\n
|
||||||
|
A: tx_lanes=1\n
|
||||||
|
A: urbnum=18\n
|
||||||
|
A: version= 2.00\n
|
||||||
|
|
||||||
|
P: /devices/pci0000:00/0000:00:14.0/usb1
|
||||||
|
N: bus/usb/001/001=12010002090001406B1D020008060302010109021900010100E0000904000001090000000705810304000C
|
||||||
|
E: BUSNUM=001
|
||||||
|
E: CURRENT_TAGS=:seat:
|
||||||
|
E: DEVNAME=/dev/bus/usb/001/001
|
||||||
|
E: DEVNUM=001
|
||||||
|
E: DEVTYPE=usb_device
|
||||||
|
E: DRIVER=usb
|
||||||
|
E: ID_AUTOSUSPEND=1
|
||||||
|
E: ID_BUS=usb
|
||||||
|
E: ID_FOR_SEAT=usb-pci-0000_00_14_0
|
||||||
|
E: ID_MODEL=xHCI_Host_Controller
|
||||||
|
E: ID_MODEL_ENC=xHCI\x20Host\x20Controller
|
||||||
|
E: ID_MODEL_FROM_DATABASE=2.0 root hub
|
||||||
|
E: ID_MODEL_ID=0002
|
||||||
|
E: ID_PATH=pci-0000:00:14.0
|
||||||
|
E: ID_PATH_TAG=pci-0000_00_14_0
|
||||||
|
E: ID_REVISION=0608
|
||||||
|
E: ID_SERIAL=Linux_6.8.5-arch1-1_xhci-hcd_xHCI_Host_Controller_0000:00:14.0
|
||||||
|
E: ID_SERIAL_SHORT=0000:00:14.0
|
||||||
|
E: ID_USB_INTERFACES=:090000:
|
||||||
|
E: ID_USB_MODEL=xHCI_Host_Controller
|
||||||
|
E: ID_USB_MODEL_ENC=xHCI\x20Host\x20Controller
|
||||||
|
E: ID_USB_MODEL_ID=0002
|
||||||
|
E: ID_USB_REVISION=0608
|
||||||
|
E: ID_USB_SERIAL=Linux_6.8.5-arch1-1_xhci-hcd_xHCI_Host_Controller_0000:00:14.0
|
||||||
|
E: ID_USB_SERIAL_SHORT=0000:00:14.0
|
||||||
|
E: ID_USB_VENDOR=Linux_6.8.5-arch1-1_xhci-hcd
|
||||||
|
E: ID_USB_VENDOR_ENC=Linux\x206.8.5-arch1-1\x20xhci-hcd
|
||||||
|
E: ID_USB_VENDOR_ID=1d6b
|
||||||
|
E: ID_VENDOR=Linux_6.8.5-arch1-1_xhci-hcd
|
||||||
|
E: ID_VENDOR_ENC=Linux\x206.8.5-arch1-1\x20xhci-hcd
|
||||||
|
E: ID_VENDOR_FROM_DATABASE=Linux Foundation
|
||||||
|
E: ID_VENDOR_ID=1d6b
|
||||||
|
E: MAJOR=189
|
||||||
|
E: MINOR=0
|
||||||
|
E: PRODUCT=1d6b/2/608
|
||||||
|
E: SUBSYSTEM=usb
|
||||||
|
E: TAGS=:seat:
|
||||||
|
E: TYPE=9/0/1
|
||||||
|
A: authorized=1\n
|
||||||
|
A: authorized_default=1\n
|
||||||
|
A: avoid_reset_quirk=0\n
|
||||||
|
A: bConfigurationValue=1\n
|
||||||
|
A: bDeviceClass=09\n
|
||||||
|
A: bDeviceProtocol=01\n
|
||||||
|
A: bDeviceSubClass=00\n
|
||||||
|
A: bMaxPacketSize0=64\n
|
||||||
|
A: bMaxPower=0mA\n
|
||||||
|
A: bNumConfigurations=1\n
|
||||||
|
A: bNumInterfaces= 1\n
|
||||||
|
A: bcdDevice=0608\n
|
||||||
|
A: bmAttributes=e0\n
|
||||||
|
A: busnum=1\n
|
||||||
|
A: configuration=
|
||||||
|
H: descriptors=12010002090001406B1D020008060302010109021900010100E0000904000001090000000705810304000C
|
||||||
|
A: dev=189:0\n
|
||||||
|
A: devnum=1\n
|
||||||
|
A: devpath=0\n
|
||||||
|
L: driver=../../../../bus/usb/drivers/usb
|
||||||
|
L: firmware_node=../../../LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:4e/device:4f
|
||||||
|
A: idProduct=0002\n
|
||||||
|
A: idVendor=1d6b\n
|
||||||
|
A: interface_authorized_default=1\n
|
||||||
|
A: ltm_capable=no\n
|
||||||
|
A: manufacturer=Linux 6.8.5-arch1-1 xhci-hcd\n
|
||||||
|
A: maxchild=12\n
|
||||||
|
A: power/active_duration=73066477\n
|
||||||
|
A: power/autosuspend=0\n
|
||||||
|
A: power/autosuspend_delay_ms=0\n
|
||||||
|
A: power/connected_duration=73071614\n
|
||||||
|
A: power/control=auto\n
|
||||||
|
A: power/level=auto\n
|
||||||
|
A: power/runtime_active_time=73070027\n
|
||||||
|
A: power/runtime_status=active\n
|
||||||
|
A: power/runtime_suspended_time=0\n
|
||||||
|
A: power/wakeup=disabled\n
|
||||||
|
A: power/wakeup_abort_count=\n
|
||||||
|
A: power/wakeup_active=\n
|
||||||
|
A: power/wakeup_active_count=\n
|
||||||
|
A: power/wakeup_count=\n
|
||||||
|
A: power/wakeup_expire_count=\n
|
||||||
|
A: power/wakeup_last_time_ms=\n
|
||||||
|
A: power/wakeup_max_time_ms=\n
|
||||||
|
A: power/wakeup_total_time_ms=\n
|
||||||
|
A: product=xHCI Host Controller\n
|
||||||
|
A: quirks=0x0\n
|
||||||
|
A: removable=unknown\n
|
||||||
|
A: rx_lanes=1\n
|
||||||
|
A: serial=0000:00:14.0\n
|
||||||
|
A: speed=480\n
|
||||||
|
A: tx_lanes=1\n
|
||||||
|
A: urbnum=1111\n
|
||||||
|
A: version= 2.00\n
|
||||||
|
|
||||||
|
P: /devices/pci0000:00/0000:00:14.0
|
||||||
|
E: DRIVER=xhci_hcd
|
||||||
|
E: ID_AUTOSUSPEND=1
|
||||||
|
E: ID_MODEL_FROM_DATABASE=Alder Lake PCH USB 3.2 xHCI Host Controller
|
||||||
|
E: ID_PATH=pci-0000:00:14.0
|
||||||
|
E: ID_PATH_TAG=pci-0000_00_14_0
|
||||||
|
E: ID_PCI_CLASS_FROM_DATABASE=Serial bus controller
|
||||||
|
E: ID_PCI_INTERFACE_FROM_DATABASE=XHCI
|
||||||
|
E: ID_PCI_SUBCLASS_FROM_DATABASE=USB controller
|
||||||
|
E: ID_VENDOR_FROM_DATABASE=Intel Corporation
|
||||||
|
E: MODALIAS=pci:v00008086d000051EDsv00001043sd0000201Fbc0Csc03i30
|
||||||
|
E: PCI_CLASS=C0330
|
||||||
|
E: PCI_ID=8086:51ED
|
||||||
|
E: PCI_SLOT_NAME=0000:00:14.0
|
||||||
|
E: PCI_SUBSYS_ID=1043:201F
|
||||||
|
E: SUBSYSTEM=pci
|
||||||
|
A: ari_enabled=0\n
|
||||||
|
A: broken_parity_status=0\n
|
||||||
|
A: class=0x0c0330\n
|
||||||
|
H: config=8680ED51060490020130030C000080000400220560000000000000000000000000000000000000000000000043101F20000000007000000000000000FF010000FD0134A089C27F8000000000000000003F6DD80F000000000000000000000000316000000000000000000000000000000180C2C10800000000000000000000000590B7001805E0FE000000000000000009B014F01000400100000000C10A080000080E00001800008F50020000010000090000018680C00009001014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000B50F110112000000
|
||||||
|
A: consistent_dma_mask_bits=64\n
|
||||||
|
A: d3cold_allowed=1\n
|
||||||
|
A: device=0x51ed\n
|
||||||
|
A: dma_mask_bits=64\n
|
||||||
|
L: driver=../../../bus/pci/drivers/xhci_hcd
|
||||||
|
A: driver_override=(null)\n
|
||||||
|
A: enable=1\n
|
||||||
|
L: firmware_node=../../LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:4e
|
||||||
|
A: irq=143\n
|
||||||
|
A: local_cpulist=0-15\n
|
||||||
|
A: local_cpus=ffff\n
|
||||||
|
A: modalias=pci:v00008086d000051EDsv00001043sd0000201Fbc0Csc03i30\n
|
||||||
|
A: msi_bus=1\n
|
||||||
|
A: msi_irqs/143=msi\n
|
||||||
|
A: msi_irqs/144=msi\n
|
||||||
|
A: msi_irqs/145=msi\n
|
||||||
|
A: msi_irqs/146=msi\n
|
||||||
|
A: msi_irqs/147=msi\n
|
||||||
|
A: msi_irqs/148=msi\n
|
||||||
|
A: msi_irqs/149=msi\n
|
||||||
|
A: msi_irqs/150=msi\n
|
||||||
|
A: numa_node=-1\n
|
||||||
|
A: pools=poolinfo - 0.1\nbuffer-2048 0 0 2048 0\nbuffer-512 0 0 512 0\nbuffer-128 0 0 128 0\nbuffer-32 0 0 32 0\nxHCI 1KB stream ctx arrays 0 0 1024 0\nxHCI 256 byte stream ctx arrays 0 0 256 0\nxHCI input/output contexts 8 9 2112 9\nxHCI ring segments 43 53 4096 53\nbuffer-2048 0 16 2048 8\nbuffer-512 0 0 512 0\nbuffer-128 0 0 128 0\nbuffer-32 0 128 32 1\n
|
||||||
|
A: power/control=auto\n
|
||||||
|
A: power/runtime_active_time=73070690\n
|
||||||
|
A: power/runtime_status=active\n
|
||||||
|
A: power/runtime_suspended_time=0\n
|
||||||
|
A: power/wakeup=enabled\n
|
||||||
|
A: power/wakeup_abort_count=0\n
|
||||||
|
A: power/wakeup_active=0\n
|
||||||
|
A: power/wakeup_active_count=0\n
|
||||||
|
A: power/wakeup_count=0\n
|
||||||
|
A: power/wakeup_expire_count=0\n
|
||||||
|
A: power/wakeup_last_time_ms=0\n
|
||||||
|
A: power/wakeup_max_time_ms=0\n
|
||||||
|
A: power/wakeup_total_time_ms=0\n
|
||||||
|
A: power_state=D0\n
|
||||||
|
A: resource=0x0000006005220000 0x000000600522ffff 0x0000000000140204\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n
|
||||||
|
A: revision=0x01\n
|
||||||
|
A: subsystem_device=0x201f\n
|
||||||
|
A: subsystem_vendor=0x1043\n
|
||||||
|
A: vendor=0x8086\n
|
||||||
@@ -53,6 +53,7 @@ drivers_tests = [
|
|||||||
'egis0570',
|
'egis0570',
|
||||||
'egismoc',
|
'egismoc',
|
||||||
'egismoc-05a1',
|
'egismoc-05a1',
|
||||||
|
'egismoc-0586',
|
||||||
'egismoc-0587',
|
'egismoc-0587',
|
||||||
'fpcmoc',
|
'fpcmoc',
|
||||||
'realtek',
|
'realtek',
|
||||||
|
|||||||
Reference in New Issue
Block a user