From: Krzysztof Kozlowski <krzk@kernel.org>
To: Valentina.FernandezAlanis@microchip.com,
paul.walmsley@sifive.com, palmer@dabbelt.com,
aou@eecs.berkeley.edu, peterlin@andestech.com,
dminus@andestech.com, Conor.Dooley@microchip.com,
conor+dt@kernel.org, ycliang@andestech.com,
jassisinghbrar@gmail.com, robh@kernel.org, krzk+dt@kernel.org,
andersson@kernel.org, mathieu.poirier@linaro.org
Cc: linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org, linux-remoteproc@vger.kernel.org
Subject: Re: [PATCH v1 5/5] remoteproc: add support for Microchip IPC remoteproc platform driver
Date: Sun, 22 Sep 2024 22:21:08 +0200 [thread overview]
Message-ID: <275b1b46-4ed0-44d8-a240-93a422e96bbf@kernel.org> (raw)
In-Reply-To: <1ece2f4b-6f2d-452f-b2af-18d0895f9443@microchip.com>
On 18/09/2024 17:51, Valentina.FernandezAlanis@microchip.com wrote:
> On 16/09/2024 21:18, Krzysztof Kozlowski wrote:
>> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
>>
>> On 12/09/2024 19:00, Valentina Fernandez wrote:
>>> The Microchip family of RISC-V SoCs typically has one or more clusters.
>>> These clusters can be configured to run in Asymmetric Multi-Processing
>>> (AMP) mode.
>>>
>>> Add a remoteproc platform driver to be able to load and boot firmware
>>> to the remote processor(s).
>>
>> ...
>>
>>> +
>>> +static int mchp_ipc_rproc_prepare(struct rproc *rproc)
>>> +{
>>> + struct mchp_ipc_rproc *priv = rproc->priv;
>>> + struct device_node *np = priv->dev->of_node;
>>> + struct rproc_mem_entry *mem;
>>> + struct reserved_mem *rmem;
>>> + struct of_phandle_iterator it;
>>> + u64 device_address;
>>> +
>>> + reinit_completion(&priv->start_done);
>>> +
>>> + of_phandle_iterator_init(&it, np, "memory-region", NULL, 0);
>>> + while (of_phandle_iterator_next(&it) == 0) {
>>> + /*
>>> + * Ignore the first memory region which will be used vdev
>>> + * buffer. No need to do extra handlings, rproc_add_virtio_dev
>>> + * will handle it.
>>> + */
>>> + if (!strcmp(it.node->name, "vdev0buffer"))
>>
>> What? If you ignore the first, then why are you checking names? This
>> does not make sense. Especially that your binding did not say anything
>> about these phandles being somehow special.
>
> The idea in the code above is to skip the vdev buffer allocation and
> carveout registration. Later, when the remoteproc virtio driver
> registers the virtio device (rproc_add_virtio_dev), it will attempt to
> find the carveout. Since the carveout wasn’t registered, it will use the
> first memory region from the parent by calling
> of_reserved_mem_device_init_by_idx.
>
> This behavior is based on some existing platform drivers. However, upon
> further inspection, it seems that some newer drivers use
> rproc_of_resm_mem_entry_init to allocate vdev buffers.
>
> I will restructure this section and rephase/drop the comment.
>
> With regards the bindings, I'll explain better all the memory regions
> for v2.
>
> Just for everyone’s information, we have the following use cases:
>
> Early boot: Remote processors are booted by another entity before Linux,
> so we only need to attach. For this mode, we require the resource table
> as a memory region in the device tree.
>
> Late boot - Linux is responsible for loading the firmware and starting
> it on the remote processors. For this, we need the region used for the
> firmware image.
>
> In both cases, rpmsg communication is optional. This means that the vdev
> buffers and vrings memory regions are also optional.
>
> There could also be a mixed case where we start with early boot mode by
> attaching to an existing remoteproc, and then stop, start, and load
> another firmware once Linux has booted. In this case, we would require
> the resource table and firmware image region, and optionally, vdev
> buffers and vrings.
>
>>
>>> + continue;
>>> +
>>> + if (!strcmp(it.node->name, "rsc-table"))
>>
>> Nope.
> Since the resource table is only needed for early boot mode and does not
> need to be a carveout region, we are skipping that.
>
> I will work on making the resource table a fixed index in the
> memory-region property so that it doesn't have a fixed name.
The list of memory-regions already HAS fixed indices. All this is not
only confusing, but incorrect. I commented that if I call the node
"rsc-not-a-table" your code will stop working.
Best regards,
Krzysztof
next prev parent reply other threads:[~2024-09-22 20:21 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-12 17:00 [PATCH v1 0/5] Add Microchip IPC mailbox and remoteproc support Valentina Fernandez
2024-09-12 17:00 ` [PATCH v1 1/5] riscv: asm: vendorid_list: Add Microchip Technology to the vendor list Valentina Fernandez
2024-09-12 17:16 ` Conor Dooley
2024-09-12 17:00 ` [PATCH v1 2/5] dt-bindings: mailbox: add binding for Microchip IPC mailbox driver Valentina Fernandez
2024-09-12 17:15 ` Conor Dooley
2024-09-12 21:23 ` Samuel Holland
2024-09-16 16:31 ` Conor Dooley
2024-09-18 15:35 ` Rob Herring
2024-09-19 7:40 ` Conor Dooley
2024-09-12 17:00 ` [PATCH v1 3/5] mailbox: add Microchip IPC support Valentina Fernandez
2024-09-12 21:30 ` Samuel Holland
2024-09-16 9:25 ` Valentina.FernandezAlanis
2024-09-16 20:21 ` Krzysztof Kozlowski
2024-09-12 17:00 ` [PATCH v1 4/5] dt-bindings: remoteproc: add binding for Microchip IPC remoteproc Valentina Fernandez
2024-09-16 20:14 ` Krzysztof Kozlowski
2024-10-15 12:09 ` Valentina.FernandezAlanis
2024-10-15 13:35 ` Krzysztof Kozlowski
2024-10-15 20:22 ` Conor Dooley
2024-09-12 17:00 ` [PATCH v1 5/5] remoteproc: add support for Microchip IPC remoteproc platform driver Valentina Fernandez
2024-09-16 20:18 ` Krzysztof Kozlowski
2024-09-18 15:51 ` Valentina.FernandezAlanis
2024-09-22 20:21 ` Krzysztof Kozlowski [this message]
2024-09-13 14:44 ` [PATCH v1 0/5] Add Microchip IPC mailbox and remoteproc support Mathieu Poirier
2024-09-16 15:04 ` Mathieu Poirier
2024-09-16 22:28 ` Bo Gan
2024-09-17 10:45 ` Valentina.FernandezAlanis
2024-09-17 12:42 ` Conor Dooley
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=275b1b46-4ed0-44d8-a240-93a422e96bbf@kernel.org \
--to=krzk@kernel.org \
--cc=Conor.Dooley@microchip.com \
--cc=Valentina.FernandezAlanis@microchip.com \
--cc=andersson@kernel.org \
--cc=aou@eecs.berkeley.edu \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dminus@andestech.com \
--cc=jassisinghbrar@gmail.com \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-remoteproc@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=mathieu.poirier@linaro.org \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=peterlin@andestech.com \
--cc=robh@kernel.org \
--cc=ycliang@andestech.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).