mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-15 03:23:18 +00:00

I misunderstood the original specification, and it seems even USB-hub-less devices have the same header location as their "write-through" counterparts.
24 lines
517 B
C
24 lines
517 B
C
/*
|
|
* Copyright (C) 2017-2019 VIA Corporation
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-plugin.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);
|