From: Samuel Thibault <samuel.thibault@ens-lyon.org>
To: Juergen Gross <jgross@suse.com>
Cc: minios-devel@lists.xenproject.org,
xen-devel@lists.xenproject.org, wei.liu2@citrix.com
Subject: Re: [PATCH 18/22] mini-os: map shared info page for HVMlite
Date: Wed, 24 Aug 2016 00:47:39 +0200 [thread overview]
Message-ID: <20160823224739.GL4401@var.home> (raw)
In-Reply-To: <1471965368-6159-19-git-send-email-jgross@suse.com>
Juergen Gross, on Tue 23 Aug 2016 17:16:04 +0200, wrote:
> Add a service function to map the shared info page on a
> non-paravirtualized system. The code is already existing on ARM side,
> just move it to hypervisor.c.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
> ---
> arch/arm/arm32.S | 4 ++--
> arch/arm/setup.c | 11 +----------
> arch/x86/setup.c | 38 ++++++++++++++++++++------------------
> hypervisor.c | 17 +++++++++++++++++
> include/hypervisor.h | 1 +
> 5 files changed, 41 insertions(+), 30 deletions(-)
>
> diff --git a/arch/arm/arm32.S b/arch/arm/arm32.S
> index a08a170..bcaca17 100644
> --- a/arch/arm/arm32.S
> +++ b/arch/arm/arm32.S
> @@ -151,8 +151,8 @@ stage2:
> .pushsection .bss
> @ Note: calling arch_init zeroes out this region.
> .align 12
> -.globl shared_info_page
> -shared_info_page:
> +.globl shared_info
> +shared_info:
> .fill (1024), 4, 0x0
>
> .align 3
> diff --git a/arch/arm/setup.c b/arch/arm/setup.c
> index 72e025a..05b405b 100644
> --- a/arch/arm/setup.c
> +++ b/arch/arm/setup.c
> @@ -21,8 +21,6 @@ union start_info_union start_info_union;
> */
> shared_info_t *HYPERVISOR_shared_info;
>
> -extern char shared_info_page[PAGE_SIZE];
> -
> void *device_tree;
>
> /*
> @@ -30,7 +28,6 @@ void *device_tree;
> */
> void arch_init(void *dtb_pointer, uint32_t physical_offset)
> {
> - struct xen_add_to_physmap xatp;
> int r;
>
> memset(&__bss_start, 0, &_end - &__bss_start);
> @@ -48,13 +45,7 @@ void arch_init(void *dtb_pointer, uint32_t physical_offset)
> device_tree = dtb_pointer;
>
> /* Map shared_info page */
> - xatp.domid = DOMID_SELF;
> - xatp.idx = 0;
> - xatp.space = XENMAPSPACE_shared_info;
> - xatp.gpfn = virt_to_pfn(shared_info_page);
> - if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp) != 0)
> - BUG();
> - HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
> + HYPERVISOR_shared_info = map_shared_info(NULL);
>
> /* Fill in start_info */
> get_console(NULL);
> diff --git a/arch/x86/setup.c b/arch/x86/setup.c
> index 13633f0..278e88f 100644
> --- a/arch/x86/setup.c
> +++ b/arch/x86/setup.c
> @@ -60,20 +60,6 @@ extern char shared_info[PAGE_SIZE];
> ((pte_t) {(unsigned long)(_x), (unsigned long)(_x>>32)}); })
> #endif
>
> -static
> -shared_info_t *map_shared_info(unsigned long pa)
> -{
> - int rc;
> -
> - if ( (rc = HYPERVISOR_update_va_mapping(
> - (unsigned long)shared_info, __pte(pa | 7), UVMF_INVLPG)) )
> - {
> - printk("Failed to map shared_info!! rc=%d\n", rc);
> - do_exit();
> - }
> - return (shared_info_t *)shared_info;
> -}
> -
> static inline void fpu_init(void) {
> asm volatile("fninit");
> }
> @@ -90,6 +76,21 @@ static inline void sse_init(void) {
> #ifdef CONFIG_PARAVIRT
> #define hpc_init()
>
> +shared_info_t *map_shared_info(void *p)
> +{
> + int rc;
> + start_info_t *si = p;
> + unsigned long pa = si->shared_info;
> +
> + if ( (rc = HYPERVISOR_update_va_mapping((unsigned long)shared_info,
> + __pte(pa | 7), UVMF_INVLPG)) )
> + {
> + printk("Failed to map shared_info!! rc=%d\n", rc);
> + do_exit();
> + }
> + return (shared_info_t *)shared_info;
> +}
> +
> static void get_cmdline(void *p)
> {
> start_info_t *si = p;
> @@ -156,6 +157,10 @@ arch_init(void *par)
> get_console(par);
> get_xenbus(par);
> get_cmdline(par);
> +
> + /* Grab the shared_info pointer and put it in a safe place. */
> + HYPERVISOR_shared_info = map_shared_info(par);
> +
> si = par;
> memcpy(&start_info, si, sizeof(*si));
>
> @@ -163,7 +168,7 @@ arch_init(void *par)
> printk("Xen Minimal OS!\n");
> printk(" start_info: %p(VA)\n", si);
> printk(" nr_pages: 0x%lx\n", si->nr_pages);
> - printk(" shared_inf: 0x%08lx(MA)\n", si->shared_info);
> + printk(" shared_inf: %p(VA)\n", HYPERVISOR_shared_info);
> printk(" pt_base: %p(VA)\n", (void *)si->pt_base);
> printk("nr_pt_frames: 0x%lx\n", si->nr_pt_frames);
> printk(" mfn_list: %p(VA)\n", (void *)si->mfn_list);
> @@ -173,9 +178,6 @@ arch_init(void *par)
> printk(" cmd_line: %s\n", cmdline);
> printk(" stack: %p-%p\n", stack, stack + sizeof(stack));
>
> - /* Grab the shared_info pointer and put it in a safe place. */
> - HYPERVISOR_shared_info = map_shared_info(start_info.shared_info);
> -
> start_kernel();
> }
>
> diff --git a/hypervisor.c b/hypervisor.c
> index 715cfe8..1647121 100644
> --- a/hypervisor.c
> +++ b/hypervisor.c
> @@ -29,6 +29,7 @@
> #include <mini-os/lib.h>
> #include <mini-os/hypervisor.h>
> #include <mini-os/events.h>
> +#include <xen/memory.h>
>
> #define active_evtchns(cpu,sh,idx) \
> ((sh)->evtchn_pending[idx] & \
> @@ -37,6 +38,8 @@
> int in_callback;
>
> #ifndef CONFIG_PARAVIRT
> +extern shared_info_t shared_info;
> +
> int hvm_get_parameter(int idx, uint64_t *value)
> {
> struct xen_hvm_param xhv;
> @@ -61,6 +64,20 @@ int hvm_set_parameter(int idx, uint64_t value)
> xhv.value = value;
> return HYPERVISOR_hvm_op(HVMOP_set_param, &xhv);
> }
> +
> +shared_info_t *map_shared_info(void *p)
> +{
> + struct xen_add_to_physmap xatp;
> +
> + xatp.domid = DOMID_SELF;
> + xatp.idx = 0;
> + xatp.space = XENMAPSPACE_shared_info;
> + xatp.gpfn = virt_to_pfn(&shared_info);
> + if ( HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp) != 0 )
> + BUG();
> +
> + return &shared_info;
> +}
> #endif
>
> void do_hypervisor_callback(struct pt_regs *regs)
> diff --git a/include/hypervisor.h b/include/hypervisor.h
> index 6e421b1..7c44702 100644
> --- a/include/hypervisor.h
> +++ b/include/hypervisor.h
> @@ -42,6 +42,7 @@ extern union start_info_union start_info_union;
> int hvm_get_parameter(int idx, uint64_t *value);
> int hvm_set_parameter(int idx, uint64_t value);
> #endif
> +shared_info_t *map_shared_info(void *p);
> void force_evtchn_callback(void);
> void do_hypervisor_callback(struct pt_regs *regs);
> void mask_evtchn(uint32_t port);
> --
> 2.6.6
>
--
Samuel
<m> bouhouhouh, b il m'a abandonné. Tout ca parce que je regardais plus mon emacs que lui !
<m> s/lui/ses messages irc/
-+- #ens-mim esseulé -+-
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-08-23 22:47 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-23 15:15 [PATCH 00/22] mini-os: support HVMlite mode Juergen Gross
2016-08-23 15:15 ` [PATCH 01/22] mini-os: resync xen headers Juergen Gross
2016-08-23 19:44 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 02/22] mini-os: make dump_regs() work in early boot Juergen Gross
2016-08-23 19:44 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 03/22] mini-os: add CONFIG_PARAVIRT Juergen Gross
2016-08-23 19:54 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 04/22] mini-os: make some memory management related macros usable from assembler Juergen Gross
2016-08-23 19:46 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 05/22] mini-os: add boot code for HVMlite support Juergen Gross
2016-08-23 20:51 ` Samuel Thibault
2016-08-24 5:13 ` Juergen Gross
2016-08-23 15:15 ` [PATCH 06/22] mini-os: setup hypercall page for HVMlite Juergen Gross
2016-08-23 21:03 ` Samuel Thibault
2016-08-24 5:10 ` Juergen Gross
2016-08-23 15:15 ` [PATCH 07/22] mini-os: support hvm_op hypercall Juergen Gross
2016-08-23 22:00 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 08/22] mini-os: initialize trap handling for HVMlite Juergen Gross
2016-08-23 22:05 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 09/22] mini-os: support HVMlite traps Juergen Gross
2016-08-23 22:10 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 10/22] mini-os: make p2m related code depend on CONFIG_PARAVIRT Juergen Gross
2016-08-23 22:20 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 11/22] mini-os: add static page tables for virtual kernel area for HVMlite Juergen Gross
2016-08-23 22:27 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 12/22] mini-os: add x86 native page table handling Juergen Gross
2016-08-23 22:40 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 13/22] mini-os: correct wrong calculation of alloc bitmap size Juergen Gross
2016-08-23 19:49 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 14/22] mini-os: add map_frame_virt() function Juergen Gross
2016-08-23 22:42 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 15/22] mini-os: setup console interface parameters Juergen Gross
2016-08-23 22:44 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 16/22] mini-os: setup xenbus " Juergen Gross
2016-08-23 22:45 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 17/22] mini-os: add get_cmdline() function Juergen Gross
2016-08-23 23:03 ` [Minios-devel] " Samuel Thibault
2016-08-23 15:16 ` [PATCH 18/22] mini-os: map shared info page for HVMlite Juergen Gross
2016-08-23 22:47 ` Samuel Thibault [this message]
2016-08-23 15:16 ` [PATCH 19/22] mini-os: remove using start_info in architecture independent code Juergen Gross
2016-08-23 22:48 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 20/22] mini-os: print start of day messages depending on domain type Juergen Gross
2016-08-23 22:51 ` Samuel Thibault
2016-08-24 5:09 ` Juergen Gross
2016-08-23 15:16 ` [PATCH 21/22] mini-os: get physical memory map Juergen Gross
2016-08-23 22:58 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 22/22] mini-os: support idle for HVMlite Juergen Gross
2016-08-23 23:01 ` Samuel Thibault
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=20160823224739.GL4401@var.home \
--to=samuel.thibault@ens-lyon.org \
--cc=jgross@suse.com \
--cc=minios-devel@lists.xenproject.org \
--cc=wei.liu2@citrix.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 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).