mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 08:35:10 +07:00
837f08fdec
This patch adds a basic driver framework for the Intel(R) E800 Ethernet Series of network devices. There is no functionality right now other than the ability to load. Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Tony Brelinski <tonyx.brelinski@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
20 lines
626 B
C
20 lines
626 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018, Intel Corporation. */
|
|
|
|
#ifndef _ICE_DEVIDS_H_
|
|
#define _ICE_DEVIDS_H_
|
|
|
|
/* Device IDs */
|
|
/* Intel(R) Ethernet Controller C810 for backplane */
|
|
#define ICE_DEV_ID_C810_BACKPLANE 0x1591
|
|
/* Intel(R) Ethernet Controller C810 for QSFP */
|
|
#define ICE_DEV_ID_C810_QSFP 0x1592
|
|
/* Intel(R) Ethernet Controller C810 for SFP */
|
|
#define ICE_DEV_ID_C810_SFP 0x1593
|
|
/* Intel(R) Ethernet Controller C810/X557-AT 10GBASE-T */
|
|
#define ICE_DEV_ID_C810_10G_BASE_T 0x1594
|
|
/* Intel(R) Ethernet Controller C810 1GbE */
|
|
#define ICE_DEV_ID_C810_SGMII 0x1595
|
|
|
|
#endif /* _ICE_DEVIDS_H_ */
|