public inbox for linux-efi@vger.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Skorodumov <sdmitry-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
To: linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH] [v2] x86_64/efi: Use all 64 bit of efi_memmap in setup_e820()
Date: Tue, 28 Jul 2015 14:16:09 +0000 (UTC)	[thread overview]
Message-ID: <loom.20150728T145739-236@post.gmane.org> (raw)
In-Reply-To: 20150728112413.GA645@codeblueprint.co.uk

> On Wed, 22 Jul, at 07:31:08PM, Dmitry Skorodumov wrote:
> > The efi_info structure stores low 32 bits of memory map
> > in efi_memmap and high 32 bits in efi_memmap_hi.
> > 
> > While constructing pointer in the setup_e820(), need
> > to take into account all 64 bits of the pointer.

> > tested in Parallels virtual machine with more then 3GB of memory

> When you say "tested", you mean that it doesn't boot correctly without
> your patch but does boot correctly with it applied? What I'm really
> asking is: are we sure that your setup triggered this new code?

Yes, while debugging I added a lot of logging to trace the problem.
Parallels VM doesn't boot correctly without the patch.

I believe that any  EDK2-based efi-bios will not work also,
though I heard that OVMF uses own linux boot loader..
It is because the memory for memmap was allocated from EFI_LOADER_DATA pool -
efi_call_early(allocate_pool, EFI_LOADER_DATA, map_size... );

It is possible to kludge the problem by patching EFI-bios of the machine
to allocate  EFI_LOADER_DATA-memory below the 4GB space,
but I think that fixing setup_e820() is the right thing.

> > +   m = efi->efi_memmap;
> > +#ifdef CONFIG_X86_64
> > +   m |= (u64)efi->efi_memmap_hi << 32;
> > +#endif
..
> >      for (i = 0; i < nr_desc; i++) {
> > -           unsigned long m = efi->efi_memmap;
> >              d = (efi_memory_desc_t *)(m + (i * efi->efi_memdesc_size));

> Is there a reason that adding efi->efi_memmap_hi can't be done inside
> this for loop? Gcc should be smart enough to hoist this calculation out
> of the loop.

Smart from its side.. I'll correct this and resend the patch.

PS: Looks my mailer have not sent the message to the list.
Resending via gmane-web, sorry for potential duplicate

      parent reply	other threads:[~2015-07-28 14:16 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-22 15:31 [PATCH] [v2] x86_64/efi: Use all 64 bit of efi_memmap in setup_e820() Dmitry Skorodumov
     [not found] ` <1437579068-14982-1-git-send-email-sdmitry-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
2015-07-28 11:24   ` Matt Fleming
     [not found]     ` <20150728112413.GA645-mF/unelCI9GS6iBeEJttW/XRex20P6io@public.gmane.org>
2015-07-28 13:18       ` Dmitry Skorodumov
     [not found]         ` <BY1PR0301MB1255463A9A89D6247A81D242A18D0-M1kb196zaopYAF46dOS0O5wN6zqB+hSMnBOFsp37pqbUKgpGm//BTAC/G2K4zDHf@public.gmane.org>
2015-07-28 20:42           ` [PATCH] " Matt Fleming
2015-07-28 14:16     ` Dmitry Skorodumov [this message]

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=loom.20150728T145739-236@post.gmane.org \
    --to=sdmitry-bzqdu9zft3wakbo8gow8eq@public.gmane.org \
    --cc=linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.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