forked from Mirrors/opensbi

This is achieved by removing the 'no-map' property from the 'reserved-memory' node when PMP is present, otherwise we keep it as it offers a small protection if the OS does not map this region at all. A new callback in platform_override is introduced and allows to fixup the device-tree. It is used here to override this new default behaviour on SiFive Fu540 platforms that has an erratum that prevents S-mode software to access a PMP protected region using 1GB page table mapping. If PMP is present, telling the OS not to map the reserved regions does not add much protection since it only avoids access to regions that are already protected by PMP. But by not allowing the OS to map those regions, it creates holes in the OS system memory map and prevents the use of hugepages which would generate, among other benefits, less TLB miss. Signed-off-by: Alexandre Ghiti <alex@ghiti.fr> Reviewed-by: Atish Patra <atish.patra@wdc.com> Reviewed-by: Anup Patel <anup.patel@wdc.com>
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2020 Western Digital Corporation or its affiliates.
|
|
*
|
|
* Authors:
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
*/
|
|
|
|
#include <platform_override.h>
|
|
#include <sbi_utils/fdt/fdt_helper.h>
|
|
#include <sbi_utils/fdt/fdt_fixup.h>
|
|
|
|
static u64 sifive_fu540_tlbr_flush_limit(const struct fdt_match *match)
|
|
{
|
|
/*
|
|
* The sfence.vma by virtual address does not work on
|
|
* SiFive FU540 so we return remote TLB flush limit as zero.
|
|
*/
|
|
return 0;
|
|
}
|
|
|
|
static int sifive_fu540_fdt_fixup(void *fdt, const struct fdt_match *match)
|
|
{
|
|
/*
|
|
* SiFive Freedom U540 has an erratum that prevents S-mode software
|
|
* to access a PMP protected region using 1GB page table mapping, so
|
|
* always add the no-map attribute on this platform.
|
|
*/
|
|
fdt_reserved_memory_nomap_fixup(fdt);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct fdt_match sifive_fu540_match[] = {
|
|
{ .compatible = "sifive,fu540" },
|
|
{ .compatible = "sifive,fu540g" },
|
|
{ .compatible = "sifive,fu540-c000" },
|
|
{ .compatible = "sifive,hifive-unleashed-a00" },
|
|
{ },
|
|
};
|
|
|
|
const struct platform_override sifive_fu540 = {
|
|
.match_table = sifive_fu540_match,
|
|
.tlbr_flush_limit = sifive_fu540_tlbr_flush_limit,
|
|
.fdt_fixup = sifive_fu540_fdt_fixup,
|
|
};
|