From: Lorenzo Bianconi <lorenzo@kernel.org>
To: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Andrew Lunn <andrew+netdev@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Felix Fietkau <nbd@nbd.name>, Sean Wang <sean.wang@mediatek.com>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Philipp Zabel <p.zabel@pengutronix.de>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
"Chester A. Unal" <chester.a.unal@arinc9.com>,
Daniel Golle <daniel@makrotopia.org>,
DENG Qingfang <dqfext@gmail.com>, Andrew Lunn <andrew@lunn.ch>,
Vladimir Oltean <olteanv@gmail.com>,
netdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org,
upstream@airoha.com
Subject: Re: [PATCH net-next v3 13/16] net: airoha: Introduce PPE initialization via NPU
Date: Tue, 11 Feb 2025 17:31:06 +0100 [thread overview]
Message-ID: <Z6t7SuFurbGwJjt_@lore-desk> (raw)
In-Reply-To: <20250211-fanatic-smoky-wren-f0dcc9@krzk-bin>
[-- Attachment #1: Type: text/plain, Size: 5292 bytes --]
> On Sun, Feb 09, 2025 at 01:09:06PM +0100, Lorenzo Bianconi wrote:
> > +static irqreturn_t airoha_npu_wdt_handler(int irq, void *core_instance)
> > +{
> > + struct airoha_npu_core *core = core_instance;
> > + struct airoha_npu *npu = core->npu;
> > + int c = core - &npu->cores[0];
> > + u32 val;
> > +
> > + airoha_npu_rmw(npu, REG_WDT_TIMER_CTRL(c), 0, WDT_INTR_MASK);
> > + val = airoha_npu_rr(npu, REG_WDT_TIMER_CTRL(c));
> > + if (FIELD_GET(WDT_EN_MASK, val))
> > + schedule_work(&core->wdt_work);
> > +
> > + return IRQ_HANDLED;
> > +}
> > +
> > +struct airoha_npu *airoha_npu_init(struct airoha_eth *eth)
> > +{
> > + struct reserved_mem *rmem;
> > + int i, irq, err = -ENODEV;
> > + struct airoha_npu *npu;
> > + struct device_node *np;
> > +
> > + npu = devm_kzalloc(eth->dev, sizeof(*npu), GFP_KERNEL);
> > + if (!npu)
> > + return ERR_PTR(-ENOMEM);
> > +
> > + npu->np = of_parse_phandle(eth->dev->of_node, "airoha,npu", 0);
> > + if (!npu->np)
> > + return ERR_PTR(-ENODEV);
>
> Why? The property is not required, so how can missing property fail the
> probe?
similar to mtk_wed device, airoha_npu is not modeled as a standalone driver,
but it is part of the airoha_eth driver. If you think it is better, I can
rework it implementing a dedicated driver for it. What do you think?
>
> This is also still unnecessary ABI break without explanation/reasoning.
At the moment if airoha_npu_init() fails (e.g. if the npu node is not present),
it will not cause any failure in airoha_hw_init() (so in the core ethernet
driver probing).
>
> > +
> > + npu->pdev = of_find_device_by_node(npu->np);
> > + if (!npu->pdev)
> > + goto error_of_node_put;
>
> You should also add device link and probably try_module_get. See
> qcom,ice (patch for missing try_module_get is on the lists).
thx for the pointer, I will take a look to it.
>
> > +
> > + get_device(&npu->pdev->dev);
>
> Why? of_find_device_by_node() does it.
ack, I will fix it.
>
> > +
> > + npu->base = devm_platform_ioremap_resource(npu->pdev, 0);
> > + if (IS_ERR(npu->base))
> > + goto error_put_dev;
> > +
> > + np = of_parse_phandle(npu->np, "memory-region", 0);
> > + if (!np)
> > + goto error_put_dev;
> > +
> > + rmem = of_reserved_mem_lookup(np);
> > + of_node_put(np);
> > +
> > + if (!rmem)
> > + goto error_put_dev;
> > +
> > + irq = platform_get_irq(npu->pdev, 0);
> > + if (irq < 0) {
> > + err = irq;
> > + goto error_put_dev;
> > + }
> > +
> > + err = devm_request_irq(&npu->pdev->dev, irq, airoha_npu_mbox_handler,
> > + IRQF_SHARED, "airoha-npu-mbox", npu);
> > + if (err)
> > + goto error_put_dev;
> > +
> > + for (i = 0; i < ARRAY_SIZE(npu->cores); i++) {
> > + struct airoha_npu_core *core = &npu->cores[i];
> > +
> > + spin_lock_init(&core->lock);
> > + core->npu = npu;
> > +
> > + irq = platform_get_irq(npu->pdev, i + 1);
> > + if (irq < 0) {
> > + err = irq;
> > + goto error_put_dev;
> > + }
>
> This is all confusing. Why are you requesting IRQs for other - the npu -
> device? That device driver is responsible for its interrupts, not you
> here. This breaks encapsulation. And what do you do if the other device
> starts handling interrupts on its own? This is really unexpected to see
> here.
As pointed out above, there is no other driver for airoha_npu at the moment,
but I am fine to implement it.
Regards,
Lorenzo
>
> > +
> > + err = devm_request_irq(&npu->pdev->dev, irq,
> > + airoha_npu_wdt_handler, IRQF_SHARED,
> > + "airoha-npu-wdt", core);
> > + if (err)
> > + goto error_put_dev;
> > +
> > + INIT_WORK(&core->wdt_work, airoha_npu_wdt_work);
> > + }
> > +
> > + if (dma_set_coherent_mask(&npu->pdev->dev, 0xbfffffff))
> > + dev_err(&npu->pdev->dev,
> > + "failed coherent DMA configuration\n");
> > +
> > + err = airoha_npu_run_firmware(npu, rmem);
> > + if (err)
> > + goto error_put_dev;
> > +
> > + airoha_npu_wr(npu, REG_CR_NPU_MIB(10),
> > + rmem->base + NPU_EN7581_FIRMWARE_RV32_MAX_SIZE);
> > + airoha_npu_wr(npu, REG_CR_NPU_MIB(11), 0x40000); /* SRAM 256K */
> > + airoha_npu_wr(npu, REG_CR_NPU_MIB(12), 0);
> > + airoha_npu_wr(npu, REG_CR_NPU_MIB(21), 1);
> > + msleep(100);
> > +
> > + /* setting booting address */
> > + for (i = 0; i < AIROHA_NPU_NUM_CORES; i++)
> > + airoha_npu_wr(npu, REG_CR_BOOT_BASE(i), rmem->base);
> > + usleep_range(1000, 2000);
> > +
> > + /* enable NPU cores */
> > + /* do not start core3 since it is used for WiFi offloading */
> > + airoha_npu_wr(npu, REG_CR_BOOT_CONFIG, 0xf7);
> > + airoha_npu_wr(npu, REG_CR_BOOT_TRIGGER, 0x1);
> > + msleep(100);
> > +
> > + return npu;
> > +
> > +error_put_dev:
> > + put_device(&npu->pdev->dev);
>
> Missing platform_device_put()
>
> > +error_of_node_put:
> > + of_node_put(npu->np);
> > +
> > + return ERR_PTR(err);
> > +}
> > +
> > +void airoha_npu_deinit(struct airoha_npu *npu)
> > +{
> > + int i;
> > +
> > + for (i = 0; i < ARRAY_SIZE(npu->cores); i++)
> > + cancel_work_sync(&npu->cores[i].wdt_work);
> > +
>
> Leaking device put.
>
> > + put_device(&npu->pdev->dev);
> > + of_node_put(npu->np);
>
> Best regards,
> Krzysztof
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2025-02-11 16:31 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-09 12:08 [PATCH net-next v3 00/16] Introduce flowtable hw offloading in airoha_eth driver Lorenzo Bianconi
2025-02-09 12:08 ` [PATCH net-next v3 01/16] net: airoha: Fix TSO support for header cloned skbs Lorenzo Bianconi
2025-02-09 12:08 ` [PATCH net-next v3 02/16] net: airoha: Move airoha_eth driver in a dedicated folder Lorenzo Bianconi
2025-02-09 12:08 ` [PATCH net-next v3 03/16] net: airoha: Move definitions in airoha_eth.h Lorenzo Bianconi
2025-02-09 12:08 ` [PATCH net-next v3 04/16] net: airoha: Move reg/write utility routines " Lorenzo Bianconi
2025-02-09 12:08 ` [PATCH net-next v3 05/16] net: airoha: Move register definitions in airoha_regs.h Lorenzo Bianconi
2025-02-09 12:08 ` [PATCH net-next v3 06/16] net: airoha: Move DSA tag in DMA descriptor Lorenzo Bianconi
2025-02-09 12:09 ` [PATCH net-next v3 07/16] net: dsa: mt7530: Enable Rx sptag for EN7581 SoC Lorenzo Bianconi
2025-02-09 12:09 ` [PATCH net-next v3 08/16] net: airoha: Enable support for multiple net_devices Lorenzo Bianconi
2025-02-09 12:09 ` [PATCH net-next v3 09/16] net: airoha: Move REG_GDM_FWD_CFG() initialization in airoha_dev_init() Lorenzo Bianconi
2025-02-09 12:09 ` [PATCH net-next v3 10/16] net: airoha: Rename airoha_set_gdm_port_fwd_cfg() in airoha_set_vip_for_gdm_port() Lorenzo Bianconi
2025-02-09 12:09 ` [PATCH net-next v3 11/16] dt-bindings: arm: airoha: Add the NPU node for EN7581 SoC Lorenzo Bianconi
2025-02-11 8:37 ` Krzysztof Kozlowski
2025-02-11 16:32 ` Lorenzo Bianconi
2025-02-12 6:49 ` Krzysztof Kozlowski
2025-02-09 12:09 ` [PATCH net-next v3 12/16] dt-bindings: net: airoha: Add airoha,npu phandle property Lorenzo Bianconi
2025-02-11 8:40 ` Krzysztof Kozlowski
2025-02-09 12:09 ` [PATCH net-next v3 13/16] net: airoha: Introduce PPE initialization via NPU Lorenzo Bianconi
2025-02-11 8:47 ` Krzysztof Kozlowski
2025-02-11 16:31 ` Lorenzo Bianconi [this message]
2025-02-12 6:27 ` Krzysztof Kozlowski
2025-02-09 12:09 ` [PATCH net-next v3 14/16] net: airoha: Introduce flowtable offload support Lorenzo Bianconi
2025-02-09 12:09 ` [PATCH net-next v3 15/16] net: airoha: Add loopback support for GDM2 Lorenzo Bianconi
2025-02-09 12:09 ` [PATCH net-next v3 16/16] net: airoha: Introduce PPE debugfs support Lorenzo Bianconi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Z6t7SuFurbGwJjt_@lore-desk \
--to=lorenzo@kernel.org \
--cc=andrew+netdev@lunn.ch \
--cc=andrew@lunn.ch \
--cc=angelogioacchino.delregno@collabora.com \
--cc=chester.a.unal@arinc9.com \
--cc=conor+dt@kernel.org \
--cc=daniel@makrotopia.org \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=dqfext@gmail.com \
--cc=edumazet@google.com \
--cc=krzk+dt@kernel.org \
--cc=krzk@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=nbd@nbd.name \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=p.zabel@pengutronix.de \
--cc=pabeni@redhat.com \
--cc=robh@kernel.org \
--cc=sean.wang@mediatek.com \
--cc=upstream@airoha.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).