From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 36461C32792 for ; Thu, 3 Oct 2019 17:27:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 00ED120830 for ; Thu, 3 Oct 2019 17:27:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570123634; bh=Zi8kZfEwQCXyWQOulmbK2ZxdZBCqfrJnfsTiMhnQ5xQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=NpD8KiTW9xydkdHJBixou5tUZoL+WPjMS9oR44s85T+MqQg+c3m6P1Y3Ww6oVhk8F mcElZHrw20ExanSAGIEKwR6K4eY+/D2Ka+Su5adzpI9yJTUwg8XAEiRI98oS3ZKkFZ nrZimS48eBRHC9jiAUohk9TGziK95kBJxcnPjrwo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388803AbfJCQPH (ORCPT ); Thu, 3 Oct 2019 12:15:07 -0400 Received: from mail.kernel.org ([198.145.29.99]:39008 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732537AbfJCQPG (ORCPT ); Thu, 3 Oct 2019 12:15:06 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id BC27820700; Thu, 3 Oct 2019 16:15:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1570119306; bh=Zi8kZfEwQCXyWQOulmbK2ZxdZBCqfrJnfsTiMhnQ5xQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gqc5Lxvl9nYnNsdsokeFkjg0Yyu1g+osZPAED2SjlDUsOQgRI7IKhAIyFmIheAdbM J8o2J956zhn8JsZrmsLku2qVbsUf8Z9+5wAFReimVOcw94vbNWAQJnbbRvZETmHGx7 G9aslVy4SsYFRwDSfE4BsRgnhFxiEQf+rDrfoeec= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Bodong Wang , Saeed Mahameed Subject: [PATCH 4.19 017/211] net/mlx5: Add device ID of upcoming BlueField-2 Date: Thu, 3 Oct 2019 17:51:23 +0200 Message-Id: <20191003154450.791407311@linuxfoundation.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20191003154447.010950442@linuxfoundation.org> References: <20191003154447.010950442@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Bodong Wang [ Upstream commit d19a79ee38c8fda6d297e4227e80db8bf51c71a6 ] Add the device ID of upcoming BlueField-2 integrated ConnectX-6 Dx network controller. Its VFs will be using the generic VF device ID: 0x101e "ConnectX Family mlx5Gen Virtual Function". Fixes: 2e9d3e83ab82 ("net/mlx5: Update the list of the PCI supported devices") Signed-off-by: Bodong Wang Signed-off-by: Saeed Mahameed Signed-off-by: Greg Kroah-Hartman --- drivers/net/ethernet/mellanox/mlx5/core/main.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/net/ethernet/mellanox/mlx5/core/main.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/main.c @@ -1642,6 +1642,7 @@ static const struct pci_device_id mlx5_c { PCI_VDEVICE(MELLANOX, 0x101c), MLX5_PCI_DEV_IS_VF}, /* ConnectX-6 VF */ { PCI_VDEVICE(MELLANOX, 0xa2d2) }, /* BlueField integrated ConnectX-5 network controller */ { PCI_VDEVICE(MELLANOX, 0xa2d3), MLX5_PCI_DEV_IS_VF}, /* BlueField integrated ConnectX-5 network controller VF */ + { PCI_VDEVICE(MELLANOX, 0xa2d6) }, /* BlueField-2 integrated ConnectX-6 Dx network controller */ { 0, } };