From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Xen-devel <xen-devel@lists.xenproject.org>
Cc: Oleksii Kurochko <oleksii.kurochko@gmail.com>
Subject: Re: [PATCH] RISCV/shutdown: Implement machine_{halt,restart}()
Date: Tue, 3 Sep 2024 15:23:14 +0100 [thread overview]
Message-ID: <f22e08ce-e51f-418d-b833-59778eb21865@citrix.com> (raw)
In-Reply-To: <20240903141937.3552353-1-andrew.cooper3@citrix.com>
On 03/09/2024 3:19 pm, Andrew Cooper wrote:
> SBI has an API for shutdown so wire it up. However, the spec does allow the
> call not to be implemented, so we have to cope with the call return returning.
Sorry, this is supposed to read "... cope with sbi_shutdown() returning."
~Andrew
>
> There is a reboot-capable SBI extention, but in the short term route route
> machine_restart() into machine_halt().
>
> Then, use use machine_halt() rather than an infinite loop at the end of
> start_xen(). This avoids the Qemu smoke test needing to wait for the full
> timeout in order to succeed.
>
> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
> ---
> CC: Oleksii Kurochko <oleksii.kurochko@gmail.com>
>
> As per commit e44f33ccddc2 ("ppc/shutdown: Implement
> machine_{halt,restart}()")
>
> Simply replacing BUG() with a printk() is just swapping one problem for
> another.
> ---
> xen/arch/riscv/Makefile | 1 +
> xen/arch/riscv/include/asm/sbi.h | 3 +++
> xen/arch/riscv/sbi.c | 5 +++++
> xen/arch/riscv/setup.c | 6 ++----
> xen/arch/riscv/shutdown.c | 25 +++++++++++++++++++++++++
> xen/arch/riscv/stubs.c | 12 ------------
> 6 files changed, 36 insertions(+), 16 deletions(-)
> create mode 100644 xen/arch/riscv/shutdown.c
>
> diff --git a/xen/arch/riscv/Makefile b/xen/arch/riscv/Makefile
> index 81b77b13d652..d192be7b552a 100644
> --- a/xen/arch/riscv/Makefile
> +++ b/xen/arch/riscv/Makefile
> @@ -4,6 +4,7 @@ obj-y += mm.o
> obj-$(CONFIG_RISCV_64) += riscv64/
> obj-y += sbi.o
> obj-y += setup.o
> +obj-y += shutdown.o
> obj-y += stubs.o
> obj-y += traps.o
> obj-y += vm_event.o
> diff --git a/xen/arch/riscv/include/asm/sbi.h b/xen/arch/riscv/include/asm/sbi.h
> index 0e6820a4eda3..4d72a2295e72 100644
> --- a/xen/arch/riscv/include/asm/sbi.h
> +++ b/xen/arch/riscv/include/asm/sbi.h
> @@ -13,6 +13,7 @@
> #define __ASM_RISCV_SBI_H__
>
> #define SBI_EXT_0_1_CONSOLE_PUTCHAR 0x1
> +#define SBI_EXT_0_1_SHUTDOWN 0x8
>
> struct sbiret {
> long error;
> @@ -31,4 +32,6 @@ struct sbiret sbi_ecall(unsigned long ext, unsigned long fid,
> */
> void sbi_console_putchar(int ch);
>
> +void sbi_shutdown(void);
> +
> #endif /* __ASM_RISCV_SBI_H__ */
> diff --git a/xen/arch/riscv/sbi.c b/xen/arch/riscv/sbi.c
> index 0ae166c8610e..c7984344bc6b 100644
> --- a/xen/arch/riscv/sbi.c
> +++ b/xen/arch/riscv/sbi.c
> @@ -42,3 +42,8 @@ void sbi_console_putchar(int ch)
> {
> sbi_ecall(SBI_EXT_0_1_CONSOLE_PUTCHAR, 0, ch, 0, 0, 0, 0, 0);
> }
> +
> +void sbi_shutdown(void)
> +{
> + sbi_ecall(SBI_EXT_0_1_SHUTDOWN, 0, 0, 0, 0, 0, 0, 0);
> +}
> diff --git a/xen/arch/riscv/setup.c b/xen/arch/riscv/setup.c
> index a6a29a150869..bf9078f36aff 100644
> --- a/xen/arch/riscv/setup.c
> +++ b/xen/arch/riscv/setup.c
> @@ -4,6 +4,7 @@
> #include <xen/compile.h>
> #include <xen/init.h>
> #include <xen/mm.h>
> +#include <xen/shutdown.h>
>
> #include <public/version.h>
>
> @@ -28,8 +29,5 @@ void __init noreturn start_xen(unsigned long bootcpu_id,
>
> printk("All set up\n");
>
> - for ( ;; )
> - asm volatile ("wfi");
> -
> - unreachable();
> + machine_halt();
> }
> diff --git a/xen/arch/riscv/shutdown.c b/xen/arch/riscv/shutdown.c
> new file mode 100644
> index 000000000000..270bb26b68a6
> --- /dev/null
> +++ b/xen/arch/riscv/shutdown.c
> @@ -0,0 +1,25 @@
> +/* SPDX-License-Identifier: GPL-2.0-or-later */
> +#include <xen/shutdown.h>
> +
> +#include <asm/sbi.h>
> +
> +void machine_halt(void)
> +{
> + sbi_shutdown();
> +
> + for ( ;; )
> + asm volatile ("wfi");
> +
> + unreachable();
> +}
> +
> +void machine_restart(unsigned int delay_millisecs)
> +{
> + /*
> + * TODO: mdelay(delay_millisecs)
> + * TODO: Probe for #SRST support, where sbi_system_reset() has a
> + * shutdown/reboot parameter.
> + */
> +
> + machine_halt();
> +}
> diff --git a/xen/arch/riscv/stubs.c b/xen/arch/riscv/stubs.c
> index 3285d1889940..2aa245f272b5 100644
> --- a/xen/arch/riscv/stubs.c
> +++ b/xen/arch/riscv/stubs.c
> @@ -49,18 +49,6 @@ void domain_set_time_offset(struct domain *d, int64_t time_offset_seconds)
> BUG_ON("unimplemented");
> }
>
> -/* shutdown.c */
> -
> -void machine_restart(unsigned int delay_millisecs)
> -{
> - BUG_ON("unimplemented");
> -}
> -
> -void machine_halt(void)
> -{
> - BUG_ON("unimplemented");
> -}
> -
> /* domctl.c */
>
> long arch_do_domctl(struct xen_domctl *domctl, struct domain *d,
>
> base-commit: 1e6bb29b03680a9d0e12f14c4d406a0d67317ea7
next prev parent reply other threads:[~2024-09-03 14:23 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-02 17:01 [PATCH v6 0/9] RISCV device tree mapping Oleksii Kurochko
2024-09-02 17:01 ` [PATCH v6 1/9] xen/riscv: prevent recursion when ASSERT(), BUG*(), or panic() are called Oleksii Kurochko
2024-09-03 14:19 ` [PATCH] RISCV/shutdown: Implement machine_{halt,restart}() Andrew Cooper
2024-09-03 14:23 ` Andrew Cooper [this message]
2024-09-03 14:27 ` Jan Beulich
2024-09-03 14:26 ` Jan Beulich
2024-09-03 14:27 ` Andrew Cooper
2024-09-04 10:22 ` oleksii.kurochko
2024-09-10 9:42 ` [PATCH v6 1/9] xen/riscv: prevent recursion when ASSERT(), BUG*(), or panic() are called Jan Beulich
2024-09-10 13:55 ` oleksii.kurochko
2024-09-02 17:01 ` [PATCH v6 2/9] xen/riscv: use {read,write}{b,w,l,q}_cpu() to define {read,write}_atomic() Oleksii Kurochko
2024-09-03 14:21 ` Andrew Cooper
2024-09-04 10:27 ` oleksii.kurochko
2024-09-04 10:31 ` Andrew Cooper
2024-09-05 15:45 ` oleksii.kurochko
2024-09-02 17:01 ` [PATCH v6 3/9] xen/riscv: allow write_atomic() to work with non-scalar types Oleksii Kurochko
2024-09-10 9:53 ` Jan Beulich
2024-09-10 15:28 ` oleksii.kurochko
2024-09-10 16:05 ` Jan Beulich
2024-09-11 11:34 ` oleksii.kurochko
2024-09-11 11:49 ` Jan Beulich
2024-09-12 11:15 ` oleksii.kurochko
2024-09-12 11:41 ` oleksii.kurochko
2024-09-02 17:01 ` [PATCH v6 4/9] xen/riscv: set up fixmap mappings Oleksii Kurochko
2024-09-10 10:01 ` Jan Beulich
2024-09-10 15:55 ` oleksii.kurochko
2024-09-10 16:07 ` Jan Beulich
2024-09-02 17:01 ` [PATCH v6 5/9] xen/riscv: introduce asm/pmap.h header Oleksii Kurochko
2024-09-02 17:01 ` [PATCH v6 6/9] xen/riscv: introduce functionality to work with CPU info Oleksii Kurochko
2024-09-10 10:33 ` Jan Beulich
2024-09-11 12:05 ` oleksii.kurochko
2024-09-11 12:14 ` Jan Beulich
2024-09-12 9:27 ` oleksii.kurochko
2024-09-12 9:58 ` Jan Beulich
2024-09-12 16:02 ` oleksii.kurochko
2024-09-13 12:51 ` Jan Beulich
2024-09-02 17:01 ` [PATCH v6 7/9] xen/riscv: introduce and initialize SBI RFENCE extension Oleksii Kurochko
2024-09-10 11:32 ` Jan Beulich
2024-09-02 17:01 ` [PATCH v6 8/9] xen/riscv: page table handling Oleksii Kurochko
2024-09-10 12:19 ` Jan Beulich
2024-09-11 15:09 ` oleksii.kurochko
2024-09-02 17:01 ` [PATCH v6 9/9] xen/riscv: introduce early_fdt_map() Oleksii Kurochko
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=f22e08ce-e51f-418d-b833-59778eb21865@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=oleksii.kurochko@gmail.com \
--cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.