[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20220428184054.3dd72784@kernel.org>
Date: Thu, 28 Apr 2022 18:40:54 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: Jianqun Xu <jay.xu@...k-chips.com>
Cc: davem@...emloft.net, joabreu@...opsys.com, alexandre.torgue@...com,
peppe.cavallaro@...com, netdev@...r.kernel.org,
linux-stm32@...md-mailman.stormreply.com,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
linux-rockchip@...ts.infradead.org
Subject: Re: [PATCH V2] ethernet: stmmac: support driver work for DTs
without child queue node
On Fri, 29 Apr 2022 08:46:05 +0800 Jianqun Xu wrote:
> The driver use the value of property 'snps,rx-queues-to-use' to loop
> same numbers child nodes as queues, such as:
>
> gmac {
> rx-queues-config {
> snps,rx-queues-to-use = <1>;
> queue0 {
> // nothing need here.
> };
> };
> };
I think you mean tx, not rx, given the code.
>
> queue++;
> }
> - if (queue != plat->tx_queues_to_use) {
> + if (queue != plat->tx_queues_to_use && of_get_child_count(tx_node)) {
> ret = -EINVAL;
> dev_err(&pdev->dev, "Not all TX queues were configured\n");
> goto out;
Also what about the init to defaults I asked about?
Powered by blists - more mailing lists