From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id C8268A0096 for ; Fri, 7 Jun 2019 15:45:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1F8751BBF0; Fri, 7 Jun 2019 15:45:37 +0200 (CEST) Received: from mail-ot1-f67.google.com (mail-ot1-f67.google.com [209.85.210.67]) by dpdk.org (Postfix) with ESMTP id F1CD61BB35 for ; Fri, 7 Jun 2019 15:45:34 +0200 (CEST) Received: by mail-ot1-f67.google.com with SMTP id n2so1849260otl.12 for ; Fri, 07 Jun 2019 06:45:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=4a4Ye5sGCEp6J7gDOF8ZaeYshrFkr7ehDb2wYp5BXRY=; b=JMqHGgMhUMtNZ16wG5ibVsDMKg/1l1ccxlOzdRFbWG4ZKMUOe9vpJDW8/jTZ6Quk0i RaV2kcYPKHTskZroGm9eU/uj6EZy9Yi7kUXjN0a4fvyLvhKOvZ2zgXmcJYCifCDNqlWH 0470ScbNs6ye+vahy/Vh2U7PE52QXg3HZAks0= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=4a4Ye5sGCEp6J7gDOF8ZaeYshrFkr7ehDb2wYp5BXRY=; b=tdhllKhUFcIZIQB+YoUdAuZqdw1opwqYNFfM0zY8euNebmBxXrpluQ2koKYzZ9Rfqn ExfhAzOb5DJ27QlVyqukQ/ylfkCpJd37I3IxM5tZVVlVIGK9pqPlBRiNGUFcMMtIBO5w 6zZY40pC1GyYntSxKdx04CXHzcXb9DukikGQFR2mpCp6U9SqbVvtBfIN2TQPI/taTnlr BRorn8Nn4mIjAU/gqGkkDsSl4OoxjlvxuxhGzUJGa9lf7Bm82o0VdrpvNU0RZLjjPur7 6GiigyX3xtqUyQBiMSMlzXcOee/LCUr78nHP5F37jpMJdVemrAT9BEMSvywibDq4UpZj Wyjg== X-Gm-Message-State: APjAAAVRslwa8GxGBG2fuRU1ranKQjmhe6HxAISjSHgZXmJQz0B1PWe1 uMlc0JzwP3gVxpMy4DXRYRORkaO+/PzjaQcLjr4C8CJAYvc= X-Google-Smtp-Source: APXvYqwWT7J6VH3UkiQrwfoh0O8I77B1vYJvBArd6CIftzntTdMBqIFHczopIPsMVkjO+71riWzgwIx4kOM43viX/OY= X-Received: by 2002:a05:6830:1303:: with SMTP id p3mr19591989otq.267.1559915134151; Fri, 07 Jun 2019 06:45:34 -0700 (PDT) MIME-Version: 1.0 References: <20190602174247.32368-1-lance.richardson@broadcom.com> <3c5993f1-25d9-3cd4-036e-5cfb823bf3c7@intel.com> In-Reply-To: <3c5993f1-25d9-3cd4-036e-5cfb823bf3c7@intel.com> From: Lance Richardson Date: Fri, 7 Jun 2019 09:45:23 -0400 Message-ID: To: Ferruh Yigit Cc: dev@dpdk.org, Ajit Khaparde Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH 00/11] add support for BCM57508 controller X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, Jun 7, 2019 at 6:52 AM Ferruh Yigit wrote: > > On 6/7/2019 11:48 AM, Ferruh Yigit wrote: > > On 6/2/2019 6:42 PM, Lance Richardson wrote: > >> NOTE: This patch series has dependencies on the "bnxt patchset" > >> series that is currently under review. > >> > >> This patch series adds support to the bnxt PMD for the > >> BCM57508 Ethernet controller (a.k.a the "Thor" controller). > > > > Can you please send doc [1] and web page [2] and release notes [3] patches to > > document this new device support? > > > > [1] > > doc/guides/nics/bnxt.rst > > > > [2] > > https://core.dpdk.org/supported/nics/broadcom/ > > > > [3] > > doc/guides/rel_notes/release_19_08.rst > > > >> > >> Patches 1-5 include cleanups and bug fixes for the existing driver. > >> > >> Patch 6 adds support for "extended" HWRM requests. Extended > >> HWRM requests are larger in size and use indirection to a > >> buffer in host memory. > >> > >> Patch 7 refactors doorbell handling in preparation for > >> the doorbell protocol used for Thor. > >> Patch 8 refactors descriptor ring allocation in preparation > >> for thor, which requires an additional "notification queue" > >> ring to be associated with transmit/receive completion rings. > >> > >> Patch 9 contains the core of the changes needed to support the > >> thor controller. > >> > >> Patch 10 adds thor-specific completion coalescing configuration. > >> > >> Patch 11 adds thor-specific support for RSS. > >> > >> Lance Richardson (11): > >> net/bnxt: endianness conversions in cp ring macros > >> net/bnxt: fix ring type macro name usage > >> net/bnxt: fix width in stats ctx endian conversion > >> net/bnxt: use consistent values for vnic RSS rule > >> net/bnxt: reset function earlier in initialization > >> net/bnxt: support extended hwrm request sizes > >> net/bnxt: refactor doorbell handling > >> net/bnxt: refactor ring allocation code > >> net/bnxt: add support for thor controller > >> net/bnxt: enable completion coalescing for thor > >> net/bnxt: enable RSS for thor-based controllers > > > > > > Series applied to dpdk-next-net/master, thanks. > > (Please send above requested documentation updates, I will squash them into > patchset if they can make on time (before merged to mainline)) Hi Ferruh, I just sent a patch to address the doc and release notes (Ajit had foreseen the need for those changes already, so they were pretty much ready to go). The web page already includes NetXtreme-E, which includes BCM57508. It would probably be better to list individual part numbers for each family, but that will take longer to turn around. Thanks, Lance