.size = SZ_128M,
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
PTE_BLOCK_INNER_SHARE
+ }, {
+ /* Framebuffer reserved, size set at runtime */
+ .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
+ PTE_BLOCK_INNER_SHARE
}, {
/* List terminator */
0,
struct mm_region *mem_map = k3_mem_map;
+int k3_spl_mem_map_init(void)
+{
+ unsigned int i;
+ int k3_map_idx = -EINVAL;
+
+ for (i = 0; i < K3_MMU_REGIONS_COUNT; i++) {
+ if (k3_mem_map[i].virt == 0 && k3_mem_map[i].phys == 0 &&
+ k3_mem_map[i].size == 0) {
+ k3_map_idx = i;
+ break;
+ }
+ }
+
+ if (k3_map_idx == -EINVAL) {
+ pr_err("%s: Failed to find fixup region in MMU memory map\n",
+ __func__);
+ return -EINVAL;
+ }
+
+ if (k3_map_idx >= K3_MMU_REGIONS_COUNT - 1) {
+ pr_err("%s: Not enough space in MMU map for the added entry\n",
+ __func__);
+ return -ENOMEM;
+ }
+
+ if (CONFIG_IS_ENABLED(VIDEO)) {
+ k3_mem_map[k3_map_idx].virt = gd_video_bottom();
+ k3_mem_map[k3_map_idx].phys = gd_video_bottom();
+ k3_mem_map[k3_map_idx].size =
+ gd_video_top() - gd_video_bottom();
+ k3_mem_map[k3_map_idx].attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
+ PTE_BLOCK_INNER_SHARE;
+ k3_map_idx++;
+ }
+
+ k3_mem_map[k3_map_idx] = (const struct mm_region){ 0 };
+
+ return 0;
+}
+
static int dt_reserved_cmp(const void *a, const void *b)
{
const struct fdt_resource *val_a = a, *val_b = b;
#include <asm/global_data.h>
#include <linux/printk.h>
#include "common.h"
+#include "mach/k3-ddr.h"
#include <dm.h>
#include <remoteproc.h>
#include <asm/cache.h>
dram_init();
- /* reserve TLB table */
- gd->arch.tlb_size = PGTABLE_SIZE;
-
gd->ram_top += get_effective_memsize();
gd->relocaddr = gd->ram_top;
if (ret)
panic("Failed to reserve framebuffer memory (%d)\n", ret);
+ if (IS_ENABLED(CONFIG_ARM64)) {
+ ret = k3_spl_mem_map_init();
+ if (ret)
+ panic("Failed to perform MMU fixups: %d\n", ret);
+ }
+
+ /* reserve TLB table */
+ gd->arch.tlb_size = PGTABLE_SIZE;
+
gd->arch.tlb_addr = gd->relocaddr - gd->arch.tlb_size;
gd->arch.tlb_addr &= ~(0x10000 - 1);
debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
void fixup_ddr_driver_for_ecc(struct spl_image_info *spl_image);
void fixup_memory_node(struct spl_image_info *spl_image);
+/* Performs MMU memory map fixups at SPL stage */
+int k3_spl_mem_map_init(void);
+
/*
* Modifies the MMU memory map based on DDR size and reserved-memory
* nodes in DT