soc/cavium: Enable MMU

* Configure and enable MMU.
* Cover the whole I/O space.
* A minimum of 512KB TTB space is required.
* Use secure mem attribute as firmware is running in ARM TZ region.

Tested on Cavium SoC.

Change-Id: I969446da62b4cc7adf9393fab69ff84ebf49220d
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/25371
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
This commit is contained in:
Patrick Rudolph 2018-03-26 15:54:41 +02:00 committed by Patrick Rudolph
parent 8cbd569f74
commit 06c7d64be9
6 changed files with 76 additions and 2 deletions

View file

@ -19,6 +19,7 @@
#include <romstage_handoff.h>
#include <soc/sdram.h>
#include <soc/timer.h>
#include <soc/mmu.h>
#include <stdlib.h>
#include <console/console.h>
#include <program_loading.h>
@ -37,6 +38,7 @@ void main(void)
bdk_config_set_fdt(devtree);
sdram_init();
soc_mmu_init();
watchdog_poke(0);

View file

@ -42,6 +42,8 @@ romstage-$(CONFIG_DRIVERS_UART) += uart.c
romstage-< += cpu.c
romstage-y += sdram.c
romstage-y += mmu.c
romstage-y += ../common/cbmem.c
# BDK coreboot interface
romstage-y += ../common/bdk-coreboot.c

View file

@ -23,6 +23,10 @@
/* ARM code entry vector */
#define BOOTROM_OFFSET 0x100000
/* Start of IO space */
#define IO_SPACE_START 0x800000000000ULL
#define IO_SPACE_SIZE 0x100000000000ULL
/* L2C */
#define L2C_PF_BAR0 0x87E080800000ULL
#define L2C_TAD0_PF_BAR0 (0x87E050000000ULL + 0x10000)

View file

@ -33,8 +33,8 @@ SECTIONS
BOOTBLOCK(BOOTROM_OFFSET + 0x20000, 64K)
ROMSTAGE(BOOTROM_OFFSET + 0x40000, 256K)
SRAM_END(BOOTROM_OFFSET + 0x80000)
TTB(BOOTROM_OFFSET + 0x80000, 128K)
RAMSTAGE(BOOTROM_OFFSET + 0xa0000, 512K)
TTB(BOOTROM_OFFSET + 0x80000, 512K)
RAMSTAGE(BOOTROM_OFFSET + 0x100000, 512K)
/* Leave some space for the payload */
POSTRAM_CBFS_CACHE(0x2000000, 16M)

View file

@ -0,0 +1,21 @@
/*
* This file is part of the coreboot project.
*
* Copyright 2017-present Facebook, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef __SOC_CAVIUM_CN81XX_INCLUDE_SOC_MMU_H
#define __SOC_CAVIUM_CN81XX_INCLUDE_SOC_MMU_H
void soc_mmu_init(void);
#endif /* ! __SOC_CAVIUM_CN81XX_INCLUDE_SOC_MMU_H */

View file

@ -0,0 +1,45 @@
/*
* This file is part of the coreboot project.
*
* Copyright 2015 MediaTek Inc.
* Copyright 2018-present Facebook, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <symbols.h>
#include <soc/addressmap.h>
#include <soc/mmu.h>
#include <soc/sdram.h>
#include <arch/mmu.h>
void soc_mmu_init(void)
{
const unsigned long devmem = MA_DEV | MA_S | MA_RW;
const unsigned long secure_mem = MA_MEM | MA_S | MA_RW;
mmu_init();
/*
* Need to use secure mem attribute, as firmware is running in ARM TZ
* region.
*/
mmu_config_range((void *)_ttb, _ttb_size, secure_mem);
mmu_config_range((void *)_dram, sdram_size_mb() * MiB, secure_mem);
/* IO space has the MSB set and is divided into 4 sub-regions:
* * NCB
* * SLI
* * RSL
* * AP
*/
mmu_config_range((void *)IO_SPACE_START, IO_SPACE_SIZE, devmem);
mmu_enable();
}