All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jan Beulich" <JBeulich@suse.com>
To: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: Juergen Gross <JGross@suse.com>,
	sstabellini@kernel.org, Daniel Kiper <daniel.kiper@oracle.com>,
	cardoe@cardoe.com, pgnet.dev@gmail.com, ning.sun@intel.com,
	julien.grall@arm.com, david.vrabel@citrix.com,
	xen-devel@lists.xenproject.org, qiaowei.ren@intel.com,
	gang.wei@intel.com, fu.wei@linaro.org
Subject: Re: [PATCH v9 07/13] x86: add multiboot2 protocol support for EFI platforms
Date: Thu, 24 Nov 2016 04:08:12 -0700	[thread overview]
Message-ID: <5836D82C02000078001219EF@prv-mh.provo.novell.com> (raw)
In-Reply-To: <79d93447-f387-ddcd-1dfa-bba4ae5bbe85@citrix.com>

>>> On 23.11.16 at 19:52, <andrew.cooper3@citrix.com> wrote:
> On 29/09/16 22:42, Daniel Kiper wrote:
>> @@ -100,20 +107,49 @@ multiboot2_header_start:
>>  gdt_boot_descr:
>>          .word   6*8-1
>>          .long   sym_phys(trampoline_gdt)
>> +        .long   0 /* Needed for 64-bit lgdt */
>> +
>> +cs32_switch_addr:
>> +        .long   sym_phys(cs32_switch)
>> +        .word   BOOT_CS32
>> +
>> +        .align 4
>> +vga_text_buffer:
>> +        .long   0xb8000
> 
> Why is this turned into a variable?

This gets zapped to zero near __efi64_start.

>> +.Lefi_mb2_tsize:
>> +        /* Check Multiboot2 information total size. */
>> +        mov     %ecx,%r8d
>> +        sub     %ebx,%r8d
>> +        cmp     %r8d,MB2_fixed_total_size(%rbx)
>> +        jbe     run_bs
>> +
>> +        /* Are EFI boot services available? */
>> +        cmpl    $MULTIBOOT2_TAG_TYPE_EFI_BS,MB2_tag_type(%rcx)
>> +        jne     .Lefi_mb2_st
>> +
>> +        /*
>> +         * Yes, store that info in skip_realmode variable. I agree that
>> +         * its name is a bit unfortunate in this context, however, by the
>> +         * way we disable real mode and other legacy stuff which should
>> +         * not be run on EFI platforms.
>> +         */
>> +        incb    skip_realmode(%rip)
> 
> Always use add/sub 1 in preference to inc and dec.  They are the same
> length to encode in 64bit, and avoids a pipeline stall from a merge of
> the eflags register.

What you say regarding length not true - add/sub need to encode
the immediate somewhere (even if the operand was a register,
inc/dec would still be smaller than add/sub, just not by as much as
in 32-bit code). And the pipeline stall, afaik, affects only rather old
processors.

>> +x86_32_switch:
>> +        cli
>> +
>> +        /* Initialize GDTR. */
>> +        lgdt    gdt_boot_descr(%rip)
>> +
>> +        /* Reload code selector. */
>> +        ljmpl   *cs32_switch_addr(%rip)
> 
> This would be cleaner and shorter as
> 
> push $BOOT_CS32
> push $cs32_switch

I'm not sure: For one this would need to be $sym_phys(cs32_switch).
And with that I wouldn't be certain the relocation gets expressed
correctly. But yes, if it works, I too would prefer this.

Jan


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

  reply	other threads:[~2016-11-24 11:08 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-29 21:42 [PATCH v9 00/13] x86: multiboot2 protocol support Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 01/13] x86: add " Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 02/13] efi: create efi_enabled() Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 03/13] x86: allow EFI reboot method neither on EFI platforms Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 04/13] x86: properly calculate xen ELF end of image address Daniel Kiper
2016-09-30  9:43   ` Jan Beulich
2016-09-29 21:42 ` [PATCH v9 05/13] efi: build xen.gz with EFI code Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 06/13] efi: create new early memory allocator Daniel Kiper
2016-09-30  9:46   ` Jan Beulich
2016-09-30 10:49     ` Daniel Kiper
2016-10-05  7:02     ` Daniel Kiper
2016-10-05 15:45       ` Julien Grall
2016-10-05 18:30     ` Julien Grall
2016-10-06 12:21       ` Jan Beulich
2016-10-11 13:39         ` Julien Grall
2016-10-12 11:45           ` Jan Beulich
2016-10-12 12:51             ` Julien Grall
2016-10-12 12:59               ` Jan Beulich
2016-10-24  9:03                 ` Daniel Kiper
2016-10-24  9:57                   ` Jan Beulich
2016-11-03 13:48                     ` Daniel Kiper
2016-11-10 10:34                       ` Daniel Kiper
2016-10-31 13:32                 ` Julien Grall
2016-09-29 21:42 ` [PATCH v9 07/13] x86: add multiboot2 protocol support for EFI platforms Daniel Kiper
2016-11-23 18:52   ` Andrew Cooper
2016-11-24 11:08     ` Jan Beulich [this message]
2016-11-24 21:44       ` Daniel Kiper
2016-11-25  7:50         ` Jan Beulich
2016-11-30 13:45           ` Daniel Kiper
2016-11-30 13:59             ` Jan Beulich
2016-11-30 17:21               ` Daniel Kiper
2016-11-24 21:31     ` Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 08/13] x86/boot: implement early command line parser in C Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 09/13] x86: change default load address from 1 MiB to 2 MiB Daniel Kiper
2016-09-30 10:02   ` Jan Beulich
2016-09-29 21:42 ` [PATCH v9 10/13] x86/setup: use XEN_IMG_OFFSET instead of Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 11/13] x86: make Xen early boot code relocatable Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 12/13] x86/boot: rename sym_phys() to sym_offs() Daniel Kiper
2016-09-29 21:42 ` [PATCH v9 13/13] x86: add multiboot2 protocol support for relocatable images Daniel Kiper
2016-09-30 10:03   ` Jan Beulich

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=5836D82C02000078001219EF@prv-mh.provo.novell.com \
    --to=jbeulich@suse.com \
    --cc=JGross@suse.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=cardoe@cardoe.com \
    --cc=daniel.kiper@oracle.com \
    --cc=david.vrabel@citrix.com \
    --cc=fu.wei@linaro.org \
    --cc=gang.wei@intel.com \
    --cc=julien.grall@arm.com \
    --cc=ning.sun@intel.com \
    --cc=pgnet.dev@gmail.com \
    --cc=qiaowei.ren@intel.com \
    --cc=sstabellini@kernel.org \
    --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.