aboutsummaryrefslogtreecommitdiff
path: root/src/soc/mediatek/common/include/soc/mmu_operations.h
blob: 7fa847fd1dcb42169bd90af3c735b2a9b78b93de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2018 MediaTek 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_MEDIATEK_COMMON_MMU_OPERATIONS_H__
#define __SOC_MEDIATEK_COMMON_MMU_OPERATIONS_H__

#include <arch/mmu.h>
#include <symbols.h>

enum {
	DEV_MEM			= MA_DEV | MA_S  | MA_RW,
	SECURE_CACHED_MEM	= MA_MEM | MA_S  | MA_RW,
	SECURE_UNCACHED_MEM	= MA_MEM | MA_S  | MA_RW | MA_MEM_NC,
	NONSECURE_CACHED_MEM	= MA_MEM | MA_NS | MA_RW,
	NONSECURE_UNCACHED_MEM	= MA_MEM | MA_NS | MA_RW | MA_MEM_NC,
};

DECLARE_REGION(sram_l2c)

void mtk_soc_after_dram(void);
void mtk_soc_disable_l2c_sram(void);

void mtk_mmu_init(void);
void mtk_mmu_after_dram(void);
void mtk_mmu_disable_l2c_sram(void);

#endif