fwupd/libfwupdplugin/fu-usb-device.h
Richard Hughes c04f5a3e15 Add FuHidDevice abstraction
Quite a few plugins use HID commands to communicate with the hardware. At the
mement we have ~6 implementations of SET_REPORT and are soon to add one more.

Move this into common code.
2020-03-19 17:02:07 +00:00

40 lines
1.1 KiB
C

/*
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <glib-object.h>
#include <gusb.h>
#include "fu-plugin.h"
#include "fu-udev-device.h"
#define FU_TYPE_USB_DEVICE (fu_usb_device_get_type ())
G_DECLARE_DERIVABLE_TYPE (FuUsbDevice, fu_usb_device, FU, USB_DEVICE, FuDevice)
struct _FuUsbDeviceClass
{
FuDeviceClass parent_class;
gboolean (*open) (FuUsbDevice *device,
GError **error);
gboolean (*close) (FuUsbDevice *device,
GError **error);
gboolean (*probe) (FuUsbDevice *device,
GError **error);
gpointer __reserved[28];
};
FuUsbDevice *fu_usb_device_new (GUsbDevice *usb_device);
guint16 fu_usb_device_get_vid (FuUsbDevice *self);
guint16 fu_usb_device_get_pid (FuUsbDevice *self);
guint16 fu_usb_device_get_spec (FuUsbDevice *self);
GUsbDevice *fu_usb_device_get_dev (FuUsbDevice *device);
void fu_usb_device_set_dev (FuUsbDevice *device,
GUsbDevice *usb_device);
gboolean fu_usb_device_is_open (FuUsbDevice *device);
GUdevDevice *fu_usb_device_find_udev_device (FuUsbDevice *device,
GError **error);