From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: fail to bind '82541GI Gigabit Ethernet Controller' to IGB_UIO driver Date: Wed, 14 May 2014 16:45:36 +0200 Message-ID: <1490308.sncVW4PuBc@xps13> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev-VfR2kkLFssw@public.gmane.org To: Helmut Sim Return-path: In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" Hi, 2014-05-14 17:27, Helmut Sim: > unlike previous cases I went over in this forum, this NIC supposed to be > supported (or maybe i read it incorrectly???): > > # cat lib/librte_eal/common/include/rte_pci_dev_ids.h | grep 82541GI > #define E1000_DEV_ID_82541GI 0x1076 > #define E1000_DEV_ID_82541GI_LF 0x107C > #define E1000_DEV_ID_82541GI_MOBILE 0x1077 This device is known but not supported. You should use # grep 'RTE_PCI_DEV_ID_DECL.*8254' lib/librte_eal/common/include/rte_pci_dev_ids.h RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82540EM) RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82545EM_COPPER) RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82545EM_FIBER) RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82546EB_COPPER) RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82546EB_FIBER) RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82546EB_QUAD_COPPER) The dedicated page for this information is: http://dpdk.org/doc/nics You should try to enable this device in the code and see what happens. Maybe that its support is straightforward. Thanks for reporting -- Thomas