|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH v4 11/14] xen/arm64: Rework the memory layout
On 16/01/2023 08:46, Michal Orzel wrote: Hi Julien, Hi Michal, On 13/01/2023 11:11, Julien Grall wrote:From: Julien Grall <jgrall@xxxxxxxxxx> Xen is currently not fully compliant with the Arm Arm because it will switch the TTBR with the MMU on. In order to be compliant, we need to disable the MMU before switching the TTBR. The implication is the page-tables should contain an identity mapping of the code switching the TTBR. In most of the case we expect Xen to be loaded in low memory. I am aware of one platform (i.e AMD Seattle) where the memory start above 512GB. To give us some slack, consider that Xen may be loaded in the first 2TB of the physical address space. The memory layout is reshuffled to keep the first two slots of the zeroethShould be "four slots" instead of "two". I have updated all the addresses. Not related to this patch: I took a look at config.h and spotted two things: 1) DIRECTMAP_SIZE calculation is incorrect. It is defined as (SLOT0_ENTRY_SIZE * (265-256)) but it actually should be (SLOT0_ENTRY_SIZE * (266-256)) i.e. 10 slots and not 9. Due to this bug we actually support 4.5TB of direct-map and not 5TB. 2) frametable information struct page_info is no longer 24B but 56B for arm64 and 32B for arm32. The values were always wrong. I have an action in my todo list to look at it, but never got the time. There are two problems with the current values: 1) The size of the frametable is not big enough as you pointed one below.2) The struct page_info could cross a cache line. We should decide whether we want to increase the size or attempt to reduce it. It looks like SUPPORT.md I don't understand your argument. Yes the PDX can compress, but it will compress non-RAM pages. So while I agree that this could cover tens of TB of physical address space, we will always be able to support a fixed amount of RAM.took this into account when stating that we support 12GB for arm32 and 2TB for arm64. However, this is also wrong as it does not take into account physical address compression. With PDX that is enabled by default we could fit tens of TB in 32GB frametable. I think we want to get rid of comments like "Frametable: 24 bytes per page for 16GB of RAM" in favor of just "Frametable". I would rather update the comments because we need a way to explain how we came up with the size. This is to because the struct page_info size may change again We could have a BUILD_BUG_ON() confirming the size of the page_info. and it is rather difficult to calculate the max RAM size supported with PDX enabled. See above about the max RAM size. If you want, I can push the patches for these issues. Happy to review them. Cheers, -- Julien Grall
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |