From: "浩倫 魏" <goberwei@yahoo.com.tw>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: "qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] How QEMU maintains the translation from guest virtual address to guest physical address?
Date: Wed, 6 May 2015 18:41:11 +0000 (UTC) [thread overview]
Message-ID: <635294201.483946.1430937671403.JavaMail.yahoo@mail.yahoo.com> (raw)
In-Reply-To: <CAFEAcA99hgF6KePLV-5NcBqGerWxBWVesa6dyqMuCea5_TpA3Q@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1994 bytes --]
Thanks for the response.
So am I in the right path if I want to know how QEMU translates GVA to GPA?I have question about that if guest OS would take part in the translation between GCA to GPA? Or qemu-softmmu would take control everything?
Respectfully,Gober Wei
Peter Maydell <peter.maydell@linaro.org> 於 2015/5/7 (週四) 1:26 AM 寫道﹕
On 6 May 2015 at 15:22, 浩倫 魏 <goberwei@yahoo.com.tw> wrote:
> I've been trying to understand the process of address translation inside
> QEMU, but I got stuck in GVA->GPA.
> I've known that QEMU uses a two level description table 'PhysPageDesc' to
> maintain the translation between GPA & HVA(host virtual address), but I
> couldn't find out where QEMU translates GVA to GPA to go to that table to
> find HVA when a TLB missed occured.
> I've traced the internal codes and there are something may be able to solve
> my problems but I can't figure it out, could anyone help me?
> There is a function get_level1_table_address() called by get_phys_addr() in
> target-arm/helper.c, and it seems like start translating the GVA to GPA. But
> I don't understand the env->cp15.c2_base_mask variable which claimed to be
> the MMU translation table base selection mask means. Where is the
> description of MMU translation table?
To repeat the answer I just posted on stackoverflow:
The code you are looking at (get_phys_addr() and the functions it
calls) is implementing the page table walk algorithm for ARM. This
(and the data structures in guest memory which it reads) is defined
in the architecture reference manual (the "ARM ARM"). To understand
the code you need to read the relevant sections of the architecture
specification so you know what we're trying to emulate.
(For instance, the c2_base_mask is precalculated based on the value
in the 'N' field of the translation table base control register (TTBCR)
and is part of the calculation of the translation table base address.)
-- PMM
[-- Attachment #2: Type: text/html, Size: 3613 bytes --]
next prev parent reply other threads:[~2015-05-06 18:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-06 14:22 [Qemu-devel] How QEMU maintains the translation from guest virtual address to guest physical address? 浩倫 魏
2015-05-06 17:26 ` Peter Maydell
2015-05-06 18:41 ` 浩倫 魏 [this message]
2015-05-06 18:54 ` Peter Maydell
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=635294201.483946.1430937671403.JavaMail.yahoo@mail.yahoo.com \
--to=goberwei@yahoo.com.tw \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.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).