mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-02 16:45:45 +00:00
49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2016 Mario Limonciello <mario.limonciello@dell.com>
|
|
* Copyright (C) 2017 Peichen Huang <peichenhuang@tw.synaptics.com>
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
* Copyright (C) 2021 Apollo Ling <apollo.ling@synaptics.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib.h>
|
|
|
|
#define SYNAPTICS_FLASH_MODE_DELAY 3 /* seconds */
|
|
|
|
/**
|
|
* FuSynapticsMstMode:
|
|
* @FU_SYNAPTICS_MST_MODE_UNKNOWN: Type invalid or not known
|
|
* @FU_SYNAPTICS_MST_MODE_DIRECT: Directly addressable
|
|
* @FU_SYNAPTICS_MST_MODE_REMOTE: Requires remote register work
|
|
*
|
|
* The device type.
|
|
**/
|
|
typedef enum {
|
|
FU_SYNAPTICS_MST_MODE_UNKNOWN,
|
|
FU_SYNAPTICS_MST_MODE_DIRECT,
|
|
FU_SYNAPTICS_MST_MODE_REMOTE,
|
|
/*< private >*/
|
|
FU_SYNAPTICS_MST_MODE_LAST
|
|
} FuSynapticsMstMode;
|
|
|
|
typedef enum {
|
|
FU_SYNAPTICS_MST_FAMILY_UNKNOWN,
|
|
FU_SYNAPTICS_MST_FAMILY_TESLA,
|
|
FU_SYNAPTICS_MST_FAMILY_LEAF,
|
|
FU_SYNAPTICS_MST_FAMILY_PANAMERA,
|
|
FU_SYNAPTICS_MST_FAMILY_CAYENNE,
|
|
FU_SYNAPTICS_MST_FAMILY_SPYDER,
|
|
/*<private >*/
|
|
FU_SYNAPTICS_MST_FAMILY_LAST
|
|
} FuSynapticsMstFamily;
|
|
|
|
const gchar *
|
|
fu_synaptics_mst_mode_to_string(FuSynapticsMstMode mode);
|
|
const gchar *
|
|
fu_synaptics_mst_family_to_string(FuSynapticsMstFamily family);
|
|
FuSynapticsMstFamily
|
|
fu_synaptics_mst_family_from_chip_id(guint16 chip_id);
|