[4872160] | 1 | /*
|
---|
| 2 | * Copyright (c) 2007 Pavel Jancik, Michal Kebrt
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup arm32boot
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | * @brief Memory management used while booting the kernel.
|
---|
| 34 | */
|
---|
| 35 |
|
---|
| 36 | #include <typedefs.h>
|
---|
| 37 | #include <arch/asm.h>
|
---|
| 38 | #include <arch/mm.h>
|
---|
| 39 |
|
---|
| 40 | /** Initialize "section" page table entry.
|
---|
| 41 | *
|
---|
| 42 | * Will be readable/writable by kernel with no access from user mode.
|
---|
| 43 | * Will belong to domain 0. No cache or buffering is enabled.
|
---|
| 44 | *
|
---|
| 45 | * @param pte Section entry to initialize.
|
---|
| 46 | * @param frame First frame in the section (frame number).
|
---|
| 47 | *
|
---|
| 48 | * @note If frame is not 1 MB aligned, first lower 1 MB aligned frame will be
|
---|
| 49 | * used.
|
---|
| 50 | *
|
---|
| 51 | */
|
---|
| 52 | static void init_ptl0_section(pte_level0_section_t* pte,
|
---|
| 53 | pfn_t frame)
|
---|
| 54 | {
|
---|
| 55 | pte->descriptor_type = PTE_DESCRIPTOR_SECTION;
|
---|
[4d02595] | 56 | pte->bufferable = 1;
|
---|
[4872160] | 57 | pte->cacheable = 0;
|
---|
[4d02595] | 58 | pte->xn = 0;
|
---|
[4872160] | 59 | pte->domain = 0;
|
---|
| 60 | pte->should_be_zero_1 = 0;
|
---|
[4d02595] | 61 | pte->access_permission_0 = PTE_AP_USER_NO_KERNEL_RW;
|
---|
| 62 | pte->tex = 0;
|
---|
| 63 | pte->access_permission_1 = 0;
|
---|
| 64 | pte->non_global = 0;
|
---|
[4872160] | 65 | pte->should_be_zero_2 = 0;
|
---|
[4d02595] | 66 | pte->non_secure = 0;
|
---|
[4872160] | 67 | pte->section_base_addr = frame;
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | /** Initialize page table used while booting the kernel. */
|
---|
| 71 | static void init_boot_pt(void)
|
---|
| 72 | {
|
---|
[fcc6224] | 73 | const pfn_t split_page = PTL0_ENTRIES;
|
---|
[4872160] | 74 | /* Create 1:1 virtual-physical mapping (in lower 2 GB). */
|
---|
| 75 | pfn_t page;
|
---|
| 76 | for (page = 0; page < split_page; page++)
|
---|
| 77 | init_ptl0_section(&boot_pt[page], page);
|
---|
| 78 |
|
---|
| 79 | /*
|
---|
| 80 | * Create 1:1 virtual-physical mapping in kernel space
|
---|
| 81 | * (upper 2 GB), physical addresses start from 0.
|
---|
| 82 | */
|
---|
[4d02595] | 83 | /* BeagleBoard-xM (MD37x) memory starts at 2GB border,
|
---|
| 84 | * thus mapping only lower 2GB is not not enough.
|
---|
| 85 | * Map entire AS 1:1 instead and hope it works. */
|
---|
[4872160] | 86 | for (page = split_page; page < PTL0_ENTRIES; page++)
|
---|
[4d02595] | 87 | #ifndef MACHINE_beagleboardxm
|
---|
[4872160] | 88 | init_ptl0_section(&boot_pt[page], page - split_page);
|
---|
[4d02595] | 89 | #else
|
---|
| 90 | init_ptl0_section(&boot_pt[page], page);
|
---|
| 91 | #endif
|
---|
[4872160] | 92 |
|
---|
| 93 | asm volatile (
|
---|
| 94 | "mcr p15, 0, %[pt], c2, c0, 0\n"
|
---|
| 95 | :: [pt] "r" (boot_pt)
|
---|
| 96 | );
|
---|
| 97 | }
|
---|
| 98 |
|
---|
| 99 | static void enable_paging()
|
---|
| 100 | {
|
---|
| 101 | /* c3 - each two bits controls access to the one of domains (16)
|
---|
| 102 | * 0b01 - behave as a client (user) of a domain
|
---|
| 103 | */
|
---|
| 104 | asm volatile (
|
---|
| 105 | /* Behave as a client of domains */
|
---|
| 106 | "ldr r0, =0x55555555\n"
|
---|
| 107 | "mcr p15, 0, r0, c3, c0, 0\n"
|
---|
| 108 |
|
---|
| 109 | /* Current settings */
|
---|
| 110 | "mrc p15, 0, r0, c1, c0, 0\n"
|
---|
| 111 |
|
---|
[4d02595] | 112 | /* Mask to enable paging, alignment and caching */
|
---|
| 113 | "ldr r1, =0x00000007\n"
|
---|
[4872160] | 114 | "orr r0, r0, r1\n"
|
---|
| 115 |
|
---|
| 116 | /* Store settings */
|
---|
| 117 | "mcr p15, 0, r0, c1, c0, 0\n"
|
---|
| 118 | ::: "r0", "r1"
|
---|
| 119 | );
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | /** Start the MMU - initialize page table and enable paging. */
|
---|
| 123 | void mmu_start() {
|
---|
| 124 | init_boot_pt();
|
---|
| 125 | enable_paging();
|
---|
| 126 | }
|
---|
| 127 |
|
---|
| 128 | /** @}
|
---|
| 129 | */
|
---|