未验证 提交 54827949 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #3392 from bigmagic123/fix_mmu

[bsp/raspi3] raspi3 mmu
...@@ -7,7 +7,6 @@ src = Split(''' ...@@ -7,7 +7,6 @@ src = Split('''
board.c board.c
bcm283x.c bcm283x.c
drv_uart.c drv_uart.c
mbox.c
''') ''')
CPPPATH = [cwd] CPPPATH = [cwd]
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include "drv_timer.h" #include "drv_timer.h"
#include "cp15.h" #include "cp15.h"
#include "mmu.h"
#ifdef RT_USING_SMP #ifdef RT_USING_SMP
extern void rt_hw_ipi_handler_install(int ipi_vector, rt_isr_handler_t ipi_isr_handler); extern void rt_hw_ipi_handler_install(int ipi_vector, rt_isr_handler_t ipi_isr_handler);
...@@ -57,156 +58,17 @@ void idle_wfi(void) ...@@ -57,156 +58,17 @@ void idle_wfi(void)
asm volatile ("wfi"); asm volatile ("wfi");
} }
#define MMU_LEVEL_MASK 0x1ffUL
#define MMU_MAP_ERROR_VANOTALIGN -1
#define MMU_MAP_ERROR_PANOTALIGN -2
#define MMU_MAP_ERROR_NOPAGE -3
#define MMU_MAP_ERROR_CONFLICT -4
unsigned char main_tbl[4096] __attribute__((aligned (4096)));
unsigned char __page_start[4096*100] __attribute__((aligned (4096)));
unsigned long __page_off = 0;
unsigned long get_free_page(void) {
__page_off += 4096;
return (unsigned long)(__page_start + __page_off - 4096);
}
#define MEM_ATTR_MEM ((0x1UL << 10) | (0x2UL << 8) | (0x0UL << 6) | (0x1UL << 2))
#define MEM_ATTR_IO ((0x1UL << 10) | (0x2UL << 8) | (0x0UL << 6) | (0x2UL << 2))
static int map_single_page_2M(unsigned long* lv0_tbl, unsigned long va, unsigned long pa, unsigned long attr) {
int level;
unsigned long* cur_lv_tbl = lv0_tbl;
unsigned long page;
unsigned long off;
int level_shift = 39;
if (va & (0x200000UL - 1)) {
return MMU_MAP_ERROR_VANOTALIGN;
}
if (pa & (0x200000UL - 1)) {
return MMU_MAP_ERROR_PANOTALIGN;
}
for (level = 0; level < 2; level++) {
off = (va >> level_shift);
off &= MMU_LEVEL_MASK;
if ((cur_lv_tbl[off] & 1) == 0) {
page = get_free_page();
if (!page) {
return MMU_MAP_ERROR_NOPAGE;
}
rt_memset((void *)page, 0, 4096);
cur_lv_tbl[off] = page | 0x3UL;
}
page = cur_lv_tbl[off];
if (!(page & 0x2)) {
//is block! error!
return MMU_MAP_ERROR_CONFLICT;
}
cur_lv_tbl = (unsigned long*)(page & 0x0000fffffffff000UL);
level_shift -= 9;
}
attr &= 0xfff0000000000ffcUL;
pa |= (attr | 0x1UL); //block
off = (va >> 21);
off &= MMU_LEVEL_MASK;
cur_lv_tbl[off] = pa;
return 0;
}
int armv8_map_2M(unsigned long* lv0_tbl, unsigned long va, unsigned long pa, int count, unsigned long attr)
{
int i;
int ret;
if (va & (0x200000 - 1))
{
return -1;
}
if (pa & (0x200000 - 1))
{
return -1;
}
for (i = 0; i < count; i++)
{
ret = map_single_page_2M(lv0_tbl, va, pa, attr);
va += 0x200000;
pa += 0x200000;
if (ret != 0)
{
return ret;
}
}
return 0;
}
/** /**
* Initialize the Hardware related stuffs. Called from rtthread_startup() * Initialize the Hardware related stuffs. Called from rtthread_startup()
* after interrupt disabled. * after interrupt disabled.
*/ */
void rt_hw_board_init(void) void rt_hw_board_init(void)
{ {
/* mmu set */ mmu_init();
unsigned long val64; armv8_map(0, 0, 0x800000, MEM_ATTR_MEMORY);
unsigned long val32; //val32不是uint32_t,val32只是表示相关的那个寄存器是32位的 armv8_map(0x3f00B000, 0x3f00B000, 0x1000, MEM_ATTR_IO);//timer
int ret; armv8_map(0x3f200000, 0x3f200000, 0x16000, MEM_ATTR_IO);//uart
mmu_enable();
val64 = 0x007f6eUL;
asm volatile("msr MAIR_EL1, %0\n dsb sy\n"::"r"(val64));
asm volatile("mrs %0, MAIR_EL1\n dsb sy\n":"=r"(val64));
//TCR_EL1
val32 = (16UL << 0)
| (0x0UL << 6)
| (0x0UL << 7)
| (0x3UL << 8)
| (0x3UL << 10)
| (0x2UL << 12)
| (0x0UL << 14)
| (0x0UL << 16)
| (0x0UL << 22)
| (0x1UL << 23)
| (0x2UL << 30)
| (0x1UL << 32)
| (0x0UL << 35)
| (0x0UL << 36)
| (0x0UL << 37)
| (0x0UL << 38);
asm volatile("msr TCR_EL1, %0\n"::"r"(val32));
asm volatile("mrs %0, TCR_EL1\n":"=r"(val32));
asm volatile("msr TTBR0_EL1, %0\n dsb sy\n"::"r"(main_tbl));
asm volatile("mrs %0, TTBR0_EL1\n dsb sy\n":"=r"(val64));
rt_memset(main_tbl, 0, 4096);
ret = armv8_map_2M((unsigned long *)main_tbl, 0x0, 0x0, 32, MEM_ATTR_MEM); //32*2M = 64M
if (ret)
{
goto skip_mmu;
}
ret = armv8_map_2M((unsigned long *)main_tbl, 0x3f000000, 0x3f000000, 8, MEM_ATTR_IO); //8*2M = 16M
if (ret)
{
goto skip_mmu;
}
//关闭指令cache
__asm__ volatile("mrs %0, SCTLR_EL1\n":"=r"(val64));
val64 &= ~0x1000; //disable I
__asm__ volatile("dmb sy\n msr SCTLR_EL1, %0\n isb sy\n"::"r"(val64));
//清除指令cache
__asm__ volatile("IC IALLUIS\n dsb sy\n isb sy\n");
//清除tlb
__asm__ volatile("tlbi vmalle1\n dsb sy\n isb sy\n");
//SCTLR_EL1, turn on mmu
asm volatile("mrs %0, SCTLR_EL1\n":"=r"(val32));
val32 |= 0x1005; //enable mmu, I C M
asm volatile("dmb sy\n msr SCTLR_EL1, %0\nisb sy\n"::"r"(val32));
skip_mmu:
/* initialize hardware interrupt */ /* initialize hardware interrupt */
rt_hw_interrupt_init(); // in libcpu/interrupt.c. Set some data structures, no operation on device rt_hw_interrupt_init(); // in libcpu/interrupt.c. Set some data structures, no operation on device
...@@ -232,7 +94,7 @@ skip_mmu: ...@@ -232,7 +94,7 @@ skip_mmu:
#ifdef RT_USING_COMPONENTS_INIT #ifdef RT_USING_COMPONENTS_INIT
rt_components_board_init(); rt_components_board_init();
#endif #endif
rt_kprintf("__page_off = %x\n", __page_off);
} }
#ifdef RT_USING_SMP #ifdef RT_USING_SMP
......
...@@ -4,183 +4,270 @@ ...@@ -4,183 +4,270 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
* *
* Change Logs: * Change Logs:
* Date Author Notes * Date Author Notes
* 2012-01-10 bernard porting to AM1808 * 2020-02-20 bigmagic first version
* 2019-07-28 zdzn add smp support
*/ */
#include <mmu.h>
#include <stddef.h>
#include "mmu.h" #define TTBR_CNP 1
/* dump 2nd level page table */ typedef unsigned long int uint64_t;
void rt_hw_cpu_dump_page_table_2nd(rt_uint32_t *ptb)
static unsigned long main_tbl[512 * 20] __attribute__((aligned (4096)));
#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
#define PMD_TYPE_SECT (1 << 0)
#define PMD_TYPE_TABLE (3 << 0)
#define PTE_TYPE_PAGE (3 << 0)
#define BITS_PER_VA 39
/* Granule size of 4KB is being used */
#define GRANULE_SIZE_SHIFT 12
#define GRANULE_SIZE (1 << GRANULE_SIZE_SHIFT)
#define XLAT_ADDR_MASK ((1UL << BITS_PER_VA) - GRANULE_SIZE)
#define PMD_TYPE_MASK (3 << 0)
int free_idx = 1;
void mmu_memset(char *dst, char v, size_t len)
{ {
int i; while (len--)
int fcnt = 0; {
*dst++ = v;
}
}
static unsigned long __page_off = 0;
static unsigned long get_free_page(void)
{
__page_off += 512;
return (unsigned long)(main_tbl + __page_off);
}
void mmu_init(void)
{
unsigned long val64;
unsigned long val32;
val64 = 0x007f6eUL;
__asm__ volatile("msr MAIR_EL1, %0\n dsb sy\n"::"r"(val64));
__asm__ volatile("mrs %0, MAIR_EL1\n dsb sy\n":"=r"(val64));
for (i = 0; i < 256; i++) //TCR_EL1
val32 = (16UL << 0)//48bit
| (0x0UL << 6)
| (0x0UL << 7)
| (0x3UL << 8)
| (0x3UL << 10)//Inner Shareable
| (0x2UL << 12)
| (0x0UL << 14)//4K
| (0x0UL << 16)
| (0x0UL << 22)
| (0x1UL << 23)
| (0x2UL << 30)
| (0x1UL << 32)
| (0x0UL << 35)
| (0x0UL << 36)
| (0x0UL << 37)
| (0x0UL << 38);
__asm__ volatile("msr TCR_EL1, %0\n"::"r"(val32));
__asm__ volatile("mrs %0, TCR_EL1\n":"=r"(val32));
__asm__ volatile("msr TTBR0_EL1, %0\n dsb sy\n"::"r"(main_tbl));
__asm__ volatile("mrs %0, TTBR0_EL1\n dsb sy\n":"=r"(val64));
mmu_memset((char *)main_tbl, 0, 4096);
}
void mmu_enable(void)
{
unsigned long val64;
unsigned long val32;
__asm__ volatile("mrs %0, SCTLR_EL1\n":"=r"(val64));
val64 &= ~0x1000; //disable I
__asm__ volatile("dmb sy\n msr SCTLR_EL1, %0\n isb sy\n"::"r"(val64));
__asm__ volatile("IC IALLUIS\n dsb sy\n isb sy\n");
__asm__ volatile("tlbi vmalle1\n dsb sy\n isb sy\n");
//SCTLR_EL1, turn on mmu
__asm__ volatile("mrs %0, SCTLR_EL1\n":"=r"(val32));
val32 |= 0x1005; //enable mmu, I C M
__asm__ volatile("dmb sy\n msr SCTLR_EL1, %0\nisb sy\n"::"r"(val32));
}
static int map_single_page_2M(unsigned long* lv0_tbl, unsigned long va, unsigned long pa, unsigned long attr)
{
int level;
unsigned long* cur_lv_tbl = lv0_tbl;
unsigned long page;
unsigned long off;
int level_shift = 39;
if (va & (0x200000UL - 1))
{
return MMU_MAP_ERROR_VANOTALIGN;
}
if (pa & (0x200000UL - 1))
{
return MMU_MAP_ERROR_PANOTALIGN;
}
for (level = 0; level < 2; level++)
{ {
rt_uint32_t pte2 = ptb[i]; off = (va >> level_shift);
if ((pte2 & 0x3) == 0) off &= MMU_LEVEL_MASK;
if ((cur_lv_tbl[off] & 1) == 0)
{ {
if (fcnt == 0) page = get_free_page();
rt_kprintf(" "); if (!page)
rt_kprintf("%04x: ", i);
fcnt++;
if (fcnt == 16)
{ {
rt_kprintf("fault\n"); return MMU_MAP_ERROR_NOPAGE;
fcnt = 0;
} }
continue; mmu_memset((char *)page, 0, 4096);
cur_lv_tbl[off] = page | 0x3UL;
} }
if (fcnt != 0) page = cur_lv_tbl[off];
if (!(page & 0x2))
{ {
rt_kprintf("fault\n"); //is block! error!
fcnt = 0; return MMU_MAP_ERROR_CONFLICT;
}
rt_kprintf(" %04x: %x: ", i, pte2);
if ((pte2 & 0x3) == 0x1)
{
rt_kprintf("L,ap:%x,xn:%d,texcb:%02x\n",
((pte2 >> 7) | (pte2 >> 4))& 0xf,
(pte2 >> 15) & 0x1,
((pte2 >> 10) | (pte2 >> 2)) & 0x1f);
}
else
{
rt_kprintf("S,ap:%x,xn:%d,texcb:%02x\n",
((pte2 >> 7) | (pte2 >> 4))& 0xf, pte2 & 0x1,
((pte2 >> 4) | (pte2 >> 2)) & 0x1f);
} }
cur_lv_tbl = (unsigned long*)(page & 0x0000fffffffff000UL);
level_shift -= 9;
} }
attr &= 0xfff0000000000ffcUL;
pa |= (attr | 0x1UL); //block
off = (va >> 21);
off &= MMU_LEVEL_MASK;
cur_lv_tbl[off] = pa;
return 0;
} }
void rt_hw_cpu_dump_page_table(rt_uint32_t *ptb) int armv8_map_2M(unsigned long va, unsigned long pa, int count, unsigned long attr)
{ {
int i; int i;
int fcnt = 0; int ret;
rt_kprintf("page table@%p\n", ptb); if (va & (0x200000 - 1))
for (i = 0; i < 1024*4; i++)
{ {
rt_uint32_t pte1 = ptb[i]; return -1;
if ((pte1 & 0x3) == 0) }
{ if (pa & (0x200000 - 1))
rt_kprintf("%03x: ", i); {
fcnt++; return -1;
if (fcnt == 16) }
{ for (i = 0; i < count; i++)
rt_kprintf("fault\n"); {
fcnt = 0; ret = map_single_page_2M((unsigned long *)main_tbl, va, pa, attr);
} va += 0x200000;
continue; pa += 0x200000;
} if (ret != 0)
if (fcnt != 0)
{
rt_kprintf("fault\n");
fcnt = 0;
}
rt_kprintf("%03x: %08x: ", i, pte1);
if ((pte1 & 0x3) == 0x3)
{
rt_kprintf("LPAE\n");
}
else if ((pte1 & 0x3) == 0x1)
{
rt_kprintf("pte,ns:%d,domain:%d\n",
(pte1 >> 3) & 0x1, (pte1 >> 5) & 0xf);
/*
*rt_hw_cpu_dump_page_table_2nd((void*)((pte1 & 0xfffffc000)
* - 0x80000000 + 0xC0000000));
*/
}
else if (pte1 & (1 << 18))
{
rt_kprintf("super section,ns:%d,ap:%x,xn:%d,texcb:%02x\n",
(pte1 >> 19) & 0x1,
((pte1 >> 13) | (pte1 >> 10))& 0xf,
(pte1 >> 4) & 0x1,
((pte1 >> 10) | (pte1 >> 2)) & 0x1f);
}
else
{ {
rt_kprintf("section,ns:%d,ap:%x," return ret;
"xn:%d,texcb:%02x,domain:%d\n",
(pte1 >> 19) & 0x1,
((pte1 >> 13) | (pte1 >> 10))& 0xf,
(pte1 >> 4) & 0x1,
(((pte1 & (0x7 << 12)) >> 10) |
((pte1 & 0x0c) >> 2)) & 0x1f,
(pte1 >> 5) & 0xf);
} }
} }
return 0;
} }
/* level1 page table, each entry for 1MB memory. */ static void set_table(uint64_t *pt, uint64_t *table_addr)
volatile static unsigned long MMUTable[4*1024] __attribute__((aligned(16*1024)));
void rt_hw_mmu_setmtt(rt_uint32_t vaddrStart,
rt_uint32_t vaddrEnd,
rt_uint32_t paddrStart,
rt_uint32_t attr)
{ {
volatile rt_uint32_t *pTT; uint64_t val;
volatile int i, nSec; val = (0x3UL | (uint64_t)table_addr);
pTT = (rt_uint32_t *)MMUTable + (vaddrStart >> 20); *pt = val;
nSec = (vaddrEnd >> 20) - (vaddrStart >> 20); }
for(i = 0; i <= nSec; i++)
void mmu_memset2(unsigned char *dst, char v, int len)
{
while (len--)
{ {
*pTT = attr | (((paddrStart >> 20) + i) << 20); *dst++ = v;
pTT++;
} }
} }
unsigned long rt_hw_set_domain_register(unsigned long domain_val) static uint64_t *create_table(void)
{ {
#if 0 uint64_t *new_table = (uint64_t *)((unsigned char *)&main_tbl[0] + free_idx * 4096); //+ free_idx * GRANULE_SIZE;
unsigned long old_domain; /* Mark all entries as invalid */
mmu_memset2((unsigned char *)new_table, 0, 4096);
asm volatile ("mrc p15, 0, %0, c3, c0\n" : "=r" (old_domain)); free_idx++;
asm volatile ("mcr p15, 0, %0, c3, c0\n" : :"r" (domain_val) : "memory"); return new_table;
return old_domain;
#else
return 0;
#endif
} }
void rt_hw_init_mmu_table() static int pte_type(uint64_t *pte)
{ {
/* set page table */ return *pte & PMD_TYPE_MASK;
/* 4G 1:1 memory */
rt_hw_mmu_setmtt(0x00000000, 0x3effffff, 0x00000000, NORMAL_MEM);
/* IO memory region */
rt_hw_mmu_setmtt(0x3f000000, 0x40010000, 0x3f000000, DEVICE_MEM);
} }
void rt_hw_change_mmu_table(rt_uint32_t vaddrStart, static int level2shift(int level)
rt_uint32_t size,
rt_uint32_t paddrStart, rt_uint32_t attr)
{ {
rt_hw_mmu_setmtt(vaddrStart, vaddrStart+size-1, paddrStart, attr); /* Page is 12 bits wide, every level translates 9 bits */
return (12 + 9 * (3 - level));
} }
void rt_hw_mmu_init(void) static uint64_t *get_level_table(uint64_t *pte)
{ {
rt_cpu_dcache_clean_flush(); uint64_t *table = (uint64_t *)(*pte & XLAT_ADDR_MASK);
rt_cpu_icache_flush();
rt_hw_cpu_dcache_disable(); if (pte_type(pte) != PMD_TYPE_TABLE)
rt_hw_cpu_icache_disable(); {
rt_cpu_mmu_disable(); table = create_table();
set_table(pte, table);
}
return table;
}
/*rt_hw_cpu_dump_page_table(MMUTable);*/ static void map_region(uint64_t virt, uint64_t phys, uint64_t size, uint64_t attr)
rt_hw_set_domain_register(0x55555555); {
uint64_t block_size = 0;
uint64_t block_shift = 0;
uint64_t *pte;
uint64_t idx = 0;
uint64_t addr = 0;
uint64_t *table = 0;
int level = 0;
rt_cpu_tlb_set(MMUTable); addr = virt;
while (size)
{
table = &main_tbl[0];
for (level = 0; level < 4; level++)
{
block_shift = level2shift(level);
idx = addr >> block_shift;
idx = idx%512;
block_size = (uint64_t)(1L << block_shift);
pte = table + idx;
rt_cpu_mmu_enable(); if (size >= block_size && IS_ALIGNED(addr, block_size))
{
attr &= 0xfff0000000000ffcUL;
if(level != 3)
{
*pte = phys | (attr | 0x1UL);
}
else
{
*pte = phys | (attr | 0x3UL);
}
addr += block_size;
phys += block_size;
size -= block_size;
break;
}
table = get_level_table(pte);
}
}
}
rt_hw_cpu_icache_enable(); void armv8_map(unsigned long va, unsigned long pa, unsigned long size, unsigned long attr)
rt_hw_cpu_dcache_enable(); {
map_region(va, pa, size, attr);
} }
/* /*
* Copyright (c) 2006-2018, RT-Thread Development Team * Copyright (c) 2006-2020, RT-Thread Development Team
* *
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
* *
* Change Logs: * Change Logs:
* Date Author Notes * Date Author Notes
* 2020-01-15 bigmagic the first version * 2020-02-20 bigmagic first version
*/ */
#ifndef MMU_H__
#define MMU_H__ #ifndef __MMU_H__
#include <rtthread.h> #define __MMU_H__
#include <rthw.h>
#include <board.h> #define MMU_LEVEL_MASK 0x1ffUL
#include "cp15.h" #define MMU_MAP_ERROR_VANOTALIGN -1
#define MMU_MAP_ERROR_PANOTALIGN -2
#define DESC_SEC (0x2) #define MMU_MAP_ERROR_NOPAGE -3
#define CB (3<<2) //cache_on, write_back #define MMU_MAP_ERROR_CONFLICT -4
#define CNB (2<<2) //cache_on, write_through
#define NCB (1<<2) //cache_off,WR_BUF on #define MEM_ATTR_MEMORY ((0x1UL << 10) | (0x2UL << 8) | (0x0UL << 6) | (0x1UL << 2))
#define NCNB (0<<2) //cache_off,WR_BUF off #define MEM_ATTR_IO ((0x1UL << 10) | (0x2UL << 8) | (0x0UL << 6) | (0x2UL << 2))
#define AP_RW (3<<10) //supervisor=RW, user=RW
#define AP_RO (2<<10) //supervisor=RW, user=RO void mmu_init(void);
#define XN (1<<4) // eXecute Never
#define SHARED (1<<16) /* shareable */ void mmu_enable(void);
#define SHAREDEVICE (1<<2) /* shared device */
#define STRONGORDER (0<<2) /* strong ordered */ int armv8_map_2M(unsigned long va, unsigned long pa, int count, unsigned long attr);
#define MEMWBWA ((1<<12)|(3<<2)) /* write back, write allocate */
void armv8_map(unsigned long va, unsigned long pa, unsigned long size, unsigned long attr);
#define DOMAIN_FAULT (0x0)
#define DOMAIN_CHK (0x1) #endif /*__MMU_H__*/
#define DOMAIN_NOTCHK (0x3)
#define DOMAIN0 (0x0<<5)
#define DOMAIN1 (0x1<<5)
#define DOMAIN0_ATTR (DOMAIN_CHK<<0)
#define DOMAIN1_ATTR (DOMAIN_FAULT<<2)
/* Read/Write, cache, write back */
#define RW_CB (AP_RW|DOMAIN0|CB|DESC_SEC)
/* Read/Write, cache, write through */
#define RW_CNB (AP_RW|DOMAIN0|CNB|DESC_SEC)
/* Read/Write without cache and write buffer */
#define RW_NCNB (AP_RW|DOMAIN0|NCNB|DESC_SEC)
/* Read/Write without cache and write buffer, no execute */
#define RW_NCNBXN (AP_RW|DOMAIN0|NCNB|DESC_SEC|XN)
/* Read/Write without cache and write buffer */
#define RW_FAULT (AP_RW|DOMAIN1|NCNB|DESC_SEC)
/* device mapping type */
#define DEVICE_MEM (SHARED|SHAREDEVICE|RW_NCNBXN)
/* normal memory mapping type */
#define NORMAL_MEM (SHARED|AP_RW|DOMAIN0|MEMWBWA|DESC_SEC)
#define STRONG_ORDER_MEM (SHARED|AP_RO|XN|DESC_SEC)
#define BUS_ADDRESS(phys) (((phys) & ~0xC0000000) | 0xC0000000)
void rt_hw_change_mmu_table(rt_uint32_t vaddrStart,
rt_uint32_t size,
rt_uint32_t paddrStart, rt_uint32_t attr);
#endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册