[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 09/10] target/ppc: Correct RMLS table
From: |
Cédric Le Goater |
Subject: |
Re: [PATCH v2 09/10] target/ppc: Correct RMLS table |
Date: |
Wed, 8 Jan 2020 09:28:54 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2 |
On 1/7/20 5:48 AM, David Gibson wrote:
> The table of RMA limits based on the LPCR[RMLS] field is slightly wrong.
> We're missing the RMLS == 0 => 256 GiB RMA option, which is available on
> POWER8, so add that.
>
> The comment that goes with the table is much more wrong. We *don't* filter
> invalid RMLS values when writing the LPCR, and there's not really a
> sensible way to do so. Furthermore, while in theory the set of RMLS values
> is implementation dependent, it seems in practice the same set has been
> available since around POWER4+ up until POWER8, the last model which
> supports RMLS at all. So, correct that as well.
>
> Signed-off-by: David Gibson <address@hidden>
Reviewed-by: Cédric Le Goater <address@hidden>
> ---
> target/ppc/mmu-hash64.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/target/ppc/mmu-hash64.c b/target/ppc/mmu-hash64.c
> index bb9ebeaf48..e6f24be93e 100644
> --- a/target/ppc/mmu-hash64.c
> +++ b/target/ppc/mmu-hash64.c
> @@ -760,12 +760,12 @@ static target_ulong rmls_limit(PowerPCCPU *cpu)
> {
> CPUPPCState *env = &cpu->env;
> /*
> - * This is the full 4 bits encoding of POWER8. Previous
> - * CPUs only support a subset of these but the filtering
> - * is done when writing LPCR
> + * In theory the meanings of RMLS values are implementation
> + * dependent. In practice, this seems to have been the set from
> + * POWER4+..POWER8, and RMLS is no longer supported in POWER9.
> */
> const target_ulong rma_sizes[] = {
> - [0] = 0,
> + [0] = 256 * GiB,
> [1] = 16 * GiB,
> [2] = 1 * GiB,
> [3] = 64 * MiB,
>
- Re: [PATCH v2 01/10] ppc: Drop PPC_EMULATE_32BITS_HYPV stub, (continued)
- Re: [PATCH v2 09/10] target/ppc: Correct RMLS table,
Cédric Le Goater <=
[PATCH v2 07/10] target/ppc: Use class fields to simplify LPCR masking, David Gibson, 2020/01/06
[PATCH v2 08/10] target/ppc: Streamline calculation of RMA limit from LPCR[RMLS], David Gibson, 2020/01/06