mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-02 16:45:45 +00:00
25 lines
509 B
C
25 lines
509 B
C
/*
|
|
* Copyright (C) 2017 VIA Corporation
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#include "fu-vli-common.h"
|
|
|
|
typedef struct __attribute__((packed)) {
|
|
guint32 fwver; /* BE */
|
|
guint16 vid; /* LE */
|
|
guint16 pid; /* LE */
|
|
} FuVliPdHdr;
|
|
|
|
#define VLI_USBHUB_PD_FLASHMAP_ADDR_LEGACY 0x4000
|
|
#define VLI_USBHUB_PD_FLASHMAP_ADDR 0x1003
|
|
|
|
FuVliDeviceKind
|
|
fu_vli_pd_common_guess_device_kind(guint32 fwver);
|