Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
39 lines
980 B
C
39 lines
980 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2021-2023 Alibaba Inc.
|
|
* Copyright (C) 2025 Linaro Ltd.
|
|
*
|
|
* Author: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
|
|
*/
|
|
|
|
#ifndef LINUX_PCIE_DWC_H
|
|
#define LINUX_PCIE_DWC_H
|
|
|
|
#include <linux/pci_ids.h>
|
|
|
|
struct dwc_pcie_vsec_id {
|
|
u16 vendor_id;
|
|
u16 vsec_id;
|
|
u8 vsec_rev;
|
|
};
|
|
|
|
/*
|
|
* VSEC IDs are allocated by the vendor, so a given ID may mean different
|
|
* things to different vendors. See PCIe r6.0, sec 7.9.5.2.
|
|
*/
|
|
static const struct dwc_pcie_vsec_id dwc_pcie_rasdes_vsec_ids[] = {
|
|
{ .vendor_id = PCI_VENDOR_ID_ALIBABA,
|
|
.vsec_id = 0x02, .vsec_rev = 0x4 },
|
|
{ .vendor_id = PCI_VENDOR_ID_AMPERE,
|
|
.vsec_id = 0x02, .vsec_rev = 0x4 },
|
|
{ .vendor_id = PCI_VENDOR_ID_QCOM,
|
|
.vsec_id = 0x02, .vsec_rev = 0x4 },
|
|
{ .vendor_id = PCI_VENDOR_ID_ROCKCHIP,
|
|
.vsec_id = 0x02, .vsec_rev = 0x4 },
|
|
{ .vendor_id = PCI_VENDOR_ID_SAMSUNG,
|
|
.vsec_id = 0x02, .vsec_rev = 0x4 },
|
|
{}
|
|
};
|
|
|
|
#endif /* LINUX_PCIE_DWC_H */
|