From: Jim Shu <jim.shu@sifive.com>
To: "Philippe Mathieu-Daudé" <philippe.mathieu.daude@gmail.com>
Cc: "Damien Hedde" <damien.hedde@greensocs.com>,
"qemu-devel@nongnu.org Developers" <qemu-devel@nongnu.org>,
mark.burton@greensocs.com, edgari@xilinx.com,
"Peter Maydell" <peter.maydell@linaro.org>,
"open list:OpenTitan" <qemu-riscv@nongnu.org>,
"Bin Meng" <bin.meng@windriver.com>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Alistair Francis" <Alistair.Francis@wdc.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Palmer Dabbelt" <palmer@dabbelt.com>
Subject: Re: [PATCH v4 14/14] hw: set user_creatable on opentitan/sifive_e devices
Date: Wed, 25 May 2022 04:10:11 +0800 [thread overview]
Message-ID: <CALw707oqr+aYHo0BScJffcsSA7=wLdkDb2iXVVNEh-ghkxeDmQ@mail.gmail.com> (raw)
In-Reply-To: <5eadd17a-9fb4-4a0a-2608-c2ca08b18645@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1990 bytes --]
Tested-by: Jim Shu <jim.shu@sifive.com>
On Fri, Mar 4, 2022 at 11:23 PM Philippe Mathieu-Daudé <
philippe.mathieu.daude@gmail.com> wrote:
> On 23/2/22 10:07, Damien Hedde wrote:
> > The devices are:
> > + ibex-timer
> > + ibex-uart
> > + riscv.aclint.swi
> > + riscv.aclint.mtimer
> > + riscv.hart_array
> > + riscv.sifive.e.prci
> > + riscv.sifive.plic
> > + riscv.sifive.uart
> > + sifive_soc.gpio
> > + unimplemented-device
> >
> > These devices are clean regarding error handling in realize.
> >
> > They are all sysbus devices, so setting user-creatable will only
> > enable cold-plugging them on machine having explicitely allowed them
> > (only _none_ machine does that).
> >
> > Note that this commit include the ricv_array which embeds cpus. There
>
> Typo "includes" I guess.
>
> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
>
> > are some deep internal constraints about them: you cannot create more
> > cpus than the machine's maxcpus. TCG accelerator's code will for example
> > assert if a user try to create too many cpus.
> >
> > Signed-off-by: Damien Hedde <damien.hedde@greensocs.com>
> > ---
> >
> > I can also split this patch if you think it's better.
> > But it is mostly a one-line fix per file.
> >
> > This patch requires first some cleanups in order to fix error errors
> > and some more memory leaks that could happend in legit user-related
> > life cycles: a miss-configuration should not be a fatal error anymore.
> >
> https://lore.kernel.org/qemu-devel/20220218164646.132112-1-damien.hedde@greensocs.com
> > ---
> > hw/char/ibex_uart.c | 1 +
> > hw/char/sifive_uart.c | 1 +
> > hw/gpio/sifive_gpio.c | 1 +
> > hw/intc/riscv_aclint.c | 2 ++
> > hw/intc/sifive_plic.c | 1 +
> > hw/misc/sifive_e_prci.c | 8 ++++++++
> > hw/misc/unimp.c | 1 +
> > hw/riscv/riscv_hart.c | 1 +
> > hw/timer/ibex_timer.c | 1 +
> > 9 files changed, 17 insertions(+)
>
>
[-- Attachment #2: Type: text/html, Size: 2919 bytes --]
next prev parent reply other threads:[~2022-05-24 20:21 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-23 9:06 [PATCH v4 00/14] Initial support for machine creation via QMP Damien Hedde
2022-02-23 9:06 ` [PATCH v4 01/14] machine: add phase_get() and document phase_check()/advance() Damien Hedde
2022-03-03 15:01 ` Philippe Mathieu-Daudé
2022-02-23 9:06 ` [PATCH v4 02/14] machine&vl: introduce phase_until() to handle phase transitions Damien Hedde
2022-03-18 13:29 ` Damien Hedde
2022-02-23 9:06 ` [PATCH v4 03/14] vl: support machine-initialized target in phase_until() Damien Hedde
2022-03-03 15:03 ` Philippe Mathieu-Daudé
2022-02-23 9:06 ` [PATCH v4 04/14] qapi/device_add: compute is_hotplug flag Damien Hedde
2022-03-03 15:04 ` Philippe Mathieu-Daudé
2022-02-23 9:06 ` [PATCH v4 05/14] qapi/device_add: handle the rom_order_override when cold-plugging Damien Hedde
2022-05-24 20:08 ` Jim Shu
2022-02-23 9:06 ` [PATCH v4 06/14] qapi/device_add: Allow execution in machine initialized phase Damien Hedde
2022-02-23 9:06 ` [PATCH v4 07/14] none-machine: add the NoneMachineState structure Damien Hedde
2022-03-03 14:36 ` Philippe Mathieu-Daudé
2022-05-24 20:09 ` Jim Shu
2022-02-23 9:07 ` [PATCH v4 08/14] none-machine: add 'ram-addr' property Damien Hedde
2022-03-03 14:41 ` Philippe Mathieu-Daudé
2022-03-03 16:19 ` Damien Hedde
2022-05-24 20:09 ` Jim Shu
2022-02-23 9:07 ` [PATCH v4 09/14] none-machine: allow cold plugging sysbus devices Damien Hedde
2022-03-03 14:44 ` Philippe Mathieu-Daudé
2022-05-24 20:09 ` Jim Shu
2022-02-23 9:07 ` [PATCH v4 10/14] none-machine: allow several cpus Damien Hedde
2022-02-23 9:07 ` [PATCH v4 11/14] softmmu/memory: add memory_region_try_add_subregion function Damien Hedde
2022-02-23 9:12 ` Damien Hedde
2022-03-03 13:32 ` Philippe Mathieu-Daudé
2022-03-04 10:53 ` Damien Hedde
2022-05-24 20:09 ` Jim Shu
2022-02-23 9:07 ` [PATCH v4 12/14] add sysbus-mmio-map qapi command Damien Hedde
2022-03-03 14:59 ` Philippe Mathieu-Daudé
2022-03-04 10:42 ` Damien Hedde
2022-05-24 20:09 ` Jim Shu
2022-02-23 9:07 ` [PATCH v4 13/14] hw/mem/system-memory: add a memory sysbus device Damien Hedde
2022-02-23 9:44 ` Igor Mammedov
2022-02-23 10:19 ` Damien Hedde
2022-02-24 9:55 ` Igor Mammedov
2022-02-24 11:43 ` Damien Hedde
2022-02-25 11:38 ` Igor Mammedov
2022-02-25 15:31 ` Damien Hedde
2022-03-03 15:16 ` Philippe Mathieu-Daudé
2022-05-24 20:10 ` Jim Shu
2022-02-23 9:07 ` [PATCH v4 14/14] hw: set user_creatable on opentitan/sifive_e devices Damien Hedde
2022-03-04 12:58 ` Philippe Mathieu-Daudé
2022-05-24 20:10 ` Jim Shu [this message]
2022-03-03 10:58 ` [PATCH v4 00/14] Initial support for machine creation via QMP Damien Hedde
2022-05-24 19:54 ` Jim Shu
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='CALw707oqr+aYHo0BScJffcsSA7=wLdkDb2iXVVNEh-ghkxeDmQ@mail.gmail.com' \
--to=jim.shu@sifive.com \
--cc=Alistair.Francis@wdc.com \
--cc=bin.meng@windriver.com \
--cc=damien.hedde@greensocs.com \
--cc=edgari@xilinx.com \
--cc=f4bug@amsat.org \
--cc=marcandre.lureau@redhat.com \
--cc=mark.burton@greensocs.com \
--cc=palmer@dabbelt.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philippe.mathieu.daude@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
/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).