From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ea0-x22a.google.com (mail-ea0-x22a.google.com [IPv6:2a00:1450:4013:c01::22a]) by dpdk.org (Postfix) with ESMTP id 3033730E for ; Wed, 29 May 2013 17:24:49 +0200 (CEST) Received: by mail-ea0-f170.google.com with SMTP id f15so5540388eak.29 for ; Wed, 29 May 2013 08:24:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:organization:to:subject:date:user-agent:cc:references :in-reply-to:mime-version:content-type:content-transfer-encoding :message-id:x-gm-message-state; bh=TTXDQNnkW7xFPdBCy/H3YQalFzzghNhHo3P8VGoTB8g=; b=WlMNp/fEHbMe6i0BgWaCPHcEClfiMJHeRo5Gsn4ReiPmSUPc/KmBkWygYgIU1ja7xR vF1Rj81VowzC9esPBknoomclkjACMm9KJs/Cwt3vve5fGlSmGfKmpuOfZlC5S7MVtk9x 73ITc/PjIB4TlX0+MxLfzVNeSMKikWHVkYJFcKxZyCHq5VmSsu6/FIQQVurd0kfKiSiy nMQ+hUXSOTTXM1inHBYAbOwbuh8xEe7fSN0UzmD6s4hUIQCeQ4X5Mf70sJD/lmC2lXuK EazOiaJJiJ4Nhmt88z0J9mI/q5pvdgs/jwPXdY7Nv+ZP2mEZT0e+74bUCzOH75y20GzB 2P/Q== X-Received: by 10.14.37.65 with SMTP id x41mr4143281eea.86.1369841094835; Wed, 29 May 2013 08:24:54 -0700 (PDT) Received: from angus.localnet (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id l6sm54757196eef.12.2013.05.29.08.24.51 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 29 May 2013 08:24:53 -0700 (PDT) From: Thomas Monjalon Organization: 6WIND To: somnath kotur Date: Wed, 29 May 2013 17:24:53 +0200 User-Agent: KMail/1.13.7 (Linux/3.2.0-4-amd64; KDE/4.8.4; x86_64; ; ) References: In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201305291724.53386.thomas.monjalon@6wind.com> X-Gm-Message-State: ALoCoQml/gVN7ZN3GMx26Ruye/10wOTkbJsmcRq6lJzebWVx1arHJN9IrvxbbFuXQVvi0TuvFwt1 Cc: dev@dpdk.org Subject: Re: [dpdk-dev] plumbing say test-pmd for non-Intel NICs(drivers) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 May 2013 15:24:49 -0000 Hello, 29/05/2013 10:27, somnath kotur : > Pls pardon me if this has been asked/addressed in another thread. Just > wanted to know what i need to do if i wanted to plumb my non-Intel 10G NIC > into the DPDK , For instance just into the test-pmd framework would also be > fine ? > Any pointers /tips welcome? The main pointer is the doc about the PMD API (called ethdev). In short, a PMD driver should implement these services (dev_ops): http://dpdk.org/doc/api/structeth__dev__ops.html Don't hesitate to send your patches here to have reviews and integration. -- Thomas