From: Matt Fleming <matt.fleming@intel.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: linux-kernel@vger.kernel.org, mingo@kernel.org, x86@kernel.org,
mjg@redhat.com, linux-efi@vger.kernel.org, hpa@zytor.com
Subject: Re: [PATCH 1/3] x86, mm: Include the entire kernel memory map in trampoline_pgd
Date: Wed, 03 Oct 2012 15:03:48 +0100 [thread overview]
Message-ID: <1349273028.7223.35.camel@mfleming-mobl1.ger.corp.intel.com> (raw)
In-Reply-To: <506C4C3A020000780008D041@nat28.tlf.novell.com>
On Wed, 2012-10-03 at 14:31 +0100, Jan Beulich wrote:
> >>> Matt Fleming <matt@console-pimps.org> 10/03/12 2:59 PM >>>
> >+static int insert_identity_mapping(resource_size_t paddr, unsigned long vaddr,
> >+ unsigned long size)
> >+{
> >+ unsigned long end = vaddr + size;
> >+ unsigned long next;
> >+ pgd_t *vpgd, *ppgd;
> >+
> >+#ifdef CONFIG_X86_32
> >+ ppgd = initial_page_table + pgd_index(paddr);
> >+
> >+ if (paddr >= PAGE_OFFSET || paddr + size > PAGE_OFFSET)
> >+ return 1;
> >+#else
> >+ ppgd = __va(real_mode_header->trampoline_pgd) + pgd_index(paddr);
>
> Missing equivalent code (to the 32-bit one above) here - after all, you're trying
> to potentially insert a 52-bit physical address into 48-bit virtual space.
Ah, true.
> >+#endif
> >+
> >+ vpgd = pgd_offset_k(vaddr);
> >+ do {
> >+ next = pgd_addr_end(vaddr, end);
> >+
> >+ if (!pgd_present(*ppgd)) {
> >+ pud_t *ppud = (pud_t *)get_zeroed_page(GFP_KERNEL);
> >+ if (!ppud)
> >+ return 1;
> >+
> >+ set_pgd(ppgd, __pgd(_KERNPG_TABLE | __pa(ppud)));
> >+ }
> >+
> >+ if (ident_pud_range(paddr, vaddr, ppgd, vpgd, next))
> >+ return 1;
> >+ } while (ppgd++, vpgd++, vaddr = next, vaddr != end);
> >+
> >+ return 0;
> >+}
> >+
> >/*
> >* Remap an arbitrary physical address space into the kernel virtual
> >* address space. Needed when the kernel wants to access high addresses
> >@@ -163,6 +258,10 @@ static void __iomem *__ioremap_caller(resource_size_t phys_addr,
> > ret_addr = (void __iomem *) (vaddr + offset);
> > mmiotrace_ioremap(unaligned_phys_addr, unaligned_size, ret_addr);
> >
> >+ if (insert_identity_mapping(phys_addr, vaddr, size))
> >+ printk(KERN_WARNING "ioremap: unable to map 0x%llx in identity pagetable\n",
> >+ (unsigned long long)phys_addr);
>
> Isn't that going to trigger quite frequently on 32-bit kernels?
Hmmm... yeah, probably, though it didn't during my testing. If it is
likely to trigger a lot then we might be best only inserting the
identity mmio mapping for 64-bit, and addressing the 32-bit case if we
ever actually need the identity pagetable.
next prev parent reply other threads:[~2012-10-03 14:03 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-03 12:59 [PATCH 0/3] x86/efi: Identity mapping pagetable Matt Fleming
2012-10-03 12:59 ` [PATCH 1/3] x86, mm: Include the entire kernel memory map in trampoline_pgd Matt Fleming
2012-10-03 13:31 ` Jan Beulich
2012-10-03 14:03 ` Matt Fleming [this message]
2012-10-04 6:32 ` Jan Beulich
2012-10-04 9:18 ` Matt Fleming
2012-10-04 10:01 ` Jan Beulich
2012-10-10 10:45 ` Matt Fleming
2012-10-15 7:22 ` Jan Beulich
2012-10-04 21:08 ` H. Peter Anvin
2012-10-05 6:39 ` Jan Beulich
2012-10-05 6:48 ` Matt Fleming
2012-10-05 8:19 ` Jan Beulich
2012-10-05 16:28 ` H. Peter Anvin
2012-10-07 8:16 ` Jan Beulich
2012-10-07 10:26 ` H. Peter Anvin
2012-10-08 6:43 ` Jan Beulich
2012-10-03 12:59 ` [PATCH 2/3] x86, efi: 1:1 pagetable mapping for virtual EFI calls Matt Fleming
2012-10-03 12:59 ` [PATCH 3/3] x86/kernel: remove tboot 1:1 page table creation code Matt Fleming
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=1349273028.7223.35.camel@mfleming-mobl1.ger.corp.intel.com \
--to=matt.fleming@intel.com \
--cc=hpa@zytor.com \
--cc=jbeulich@suse.com \
--cc=linux-efi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=mjg@redhat.com \
--cc=x86@kernel.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).