blob: 3fc61bf4bfd35ad7775eea047f925bfadbe506a1 [file] [log] [blame]
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07001/*
2 * Copyright (c) 2008 Travis Geiselbrecht
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files
6 * (the "Software"), to deal in the Software without restriction,
7 * including without limitation the rights to use, copy, modify, merge,
8 * publish, distribute, sublicense, and/or sell copies of the Software,
9 * and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23#include <debug.h>
24#include <sys/types.h>
25#include <compiler.h>
26#include <arch.h>
27#include <arch/arm.h>
28#include <arch/arm/mmu.h>
29
30#if ARM_WITH_MMU
31
32#define MB (1024*1024)
33
34/* the location of the table may be brought in from outside */
35#if WITH_EXTERNAL_TRANSLATION_TABLE
36#if !defined(MMU_TRANSLATION_TABLE_ADDR)
37#error must set MMU_TRANSLATION_TABLE_ADDR in the make configuration
38#endif
39static uint32_t *tt = (void *)MMU_TRANSLATION_TABLE_ADDR;
40#else
41/* the main translation table */
42static uint32_t tt[4096] __ALIGNED(16384);
43#endif
44
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070045void arm_mmu_map_section(addr_t paddr, addr_t vaddr, uint flags)
46{
47 int index;
Brian Swetlandeceda412008-09-07 02:48:41 -070048
Amol Jadi9ef9b732011-05-23 16:00:17 -070049 /* Get the index into the translation table */
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070050 index = vaddr / MB;
Amol Jadi9ef9b732011-05-23 16:00:17 -070051
52 /* Set the entry value:
53 * (2<<0): Section entry
54 * (0<<5): Domain = 0
55 * flags: TEX, CB and AP bit settings provided by the caller.
56 */
57 tt[index] = (paddr & ~(MB-1)) | (0<<5) | (2<<0) | flags;
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070058
59 arm_invalidate_tlb();
60}
61
62void arm_mmu_init(void)
63{
64 int i;
65
Amol Jadi9ef9b732011-05-23 16:00:17 -070066 /* set some mmu specific control bits:
67 * access flag disabled, TEX remap disabled, mmu disabled
68 */
69 arm_write_cr1(arm_read_cr1() & ~((1<<29)|(1<<28)|(1<<0)));
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070070
Deepa Dinamani20cb9e52012-10-18 12:20:47 -070071 if (platform_use_identity_mmu_mappings())
72 {
73 /* set up an identity-mapped translation table with
74 * strongly ordered memory type and read/write access.
75 */
76 for (i=0; i < 4096; i++) {
77 arm_mmu_map_section(i * MB,
78 i * MB,
79 MMU_MEMORY_TYPE_STRONGLY_ORDERED | MMU_MEMORY_AP_READ_WRITE);
80 }
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070081 }
82
Neeti Desai13e688d2012-08-22 16:30:55 -070083 platform_init_mmu_mappings();
84
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070085 /* set up the translation table base */
86 arm_write_ttbr((uint32_t)tt);
87
88 /* set up the domain access register */
89 arm_write_dacr(0x00000001);
90
91 /* turn on the mmu */
92 arm_write_cr1(arm_read_cr1() | 0x1);
93}
94
95void arch_disable_mmu(void)
96{
Amol Jadi9ef9b732011-05-23 16:00:17 -070097 arm_write_cr1(arm_read_cr1() & ~(1<<0));
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070098 arm_invalidate_tlb();
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -070099}
100
101#endif // ARM_WITH_MMU