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=-1.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no 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 EB079C33C9E for ; Tue, 14 Jan 2020 03:26:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C1FA8214AF for ; Tue, 14 Jan 2020 03:26:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578972410; bh=K6QwoHZlKmBhi1HwYzE/vZ5jsixqOCwKPUF803F9Qxs=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=jUo59o93usg5x7QKrN3rZ3tlEs+Jxxu3nhKapkSCkEfu6xS58uBAEteIykxnmvb+P Kbr9hs175eaKLcF2ttA1EtCWhTX8qmHmOEmbDIKOf3w6NTKiufn5kYDzksGXodk981 WyVYKrRRn5io92MsHgRWuPUyY67fmf+LxOGkfzbw= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729447AbgAND0r (ORCPT ); Mon, 13 Jan 2020 22:26:47 -0500 Received: from mail.kernel.org ([198.145.29.99]:57018 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728802AbgAND0r (ORCPT ); Mon, 13 Jan 2020 22:26:47 -0500 Received: from cakuba (c-73-93-4-247.hsd1.ca.comcast.net [73.93.4.247]) (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 299BA20CC7; Tue, 14 Jan 2020 03:26:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578972406; bh=K6QwoHZlKmBhi1HwYzE/vZ5jsixqOCwKPUF803F9Qxs=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=MOw/5NOJp9s0xnIQVt2/sEGGKIeo0Cyb1YDjbXSSkAiEBe36usdVrXv9v3vNsWHdp Lo9S42pGO0Awd1ZGkPJB02wF0w5FsKBNHdK5lR8g6TZWLQMD5lfU9992QlV/pbCxKP mtIW0MgAAVFt/IeLYY26xiacHbP42MkmI5ulPG38= Date: Mon, 13 Jan 2020 19:26:45 -0800 From: Jakub Kicinski To: Jose Abreu Cc: netdev@vger.kernel.org, Joao Pinto , Giuseppe Cavallaro , Alexandre Torgue , "David S. Miller" , Maxime Coquelin , linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH net-next v3 0/8] net: stmmac: ETF support Message-ID: <20200113192645.6b9f51d1@cakuba> In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Mon, 13 Jan 2020 17:24:08 +0100, Jose Abreu wrote: > This series adds the support for ETF scheduler in stmmac. > > 1) Starts adding the support by implementing Enhanced Descriptors in stmmac > main core. This is needed for ETF feature in XGMAC and QoS cores. > > 2) Integrates the ETF logic into stmmac TC core. > > 3) and 4) adds the HW specific support for ETF in XGMAC and QoS cores. The > IP feature is called TBS (Time Based Scheduling). > > 5) Enables ETF in GMAC5 IPK PCI entry for all Queues except Queue 0. > > 6) Adds the new TBS feature and even more information into the debugFS > HW features file. > > 7) Switches the selftests mechanism to use dev_direct_xmit() so that we can > send packets on specific Queues. > > 8) Adds a new test for TBS feature. Applied, thank you!