Subversion Repositories HelenOS

Rev

Rev 2236 | Rev 2241 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2198 jancik 1
/*
2236 kebrt 2
 * Copyright (c) 2007 Pavel Jancik, Michal Kebrt
2198 jancik 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
 
2236 kebrt 29
/** @addtogroup arm32boot
2198 jancik 30
 * @{
31
 */
32
/** @file
33
 */
34
 
35
 
36
#ifndef __MM_H__
37
#define __MM_H__
38
 
2236 kebrt 39
#ifndef __ASM__
2198 jancik 40
#include "types.h"
2236 kebrt 41
#endif
2198 jancik 42
 
43
 
2234 jancik 44
#define FRAME_WIDTH                 12                  /* 4KB frames */
45
#define FRAME_SIZE                  (1 << FRAME_WIDTH)
2198 jancik 46
 
2234 jancik 47
#define PAGE_WIDTH                  FRAME_WIDTH
48
#define PAGE_SIZE                   FRAME_SIZE
2198 jancik 49
 
50
#ifndef __ASM__
2234 jancik 51
#   define KA2PA(x)                 (((uintptr_t) (x)) - 0x80000000)
52
#   define PA2KA(x)                 (((uintptr_t) (x)) + 0x80000000)
2198 jancik 53
#else
2234 jancik 54
#   define KA2PA(x)                 ((x) - 0x80000000)
55
#   define PA2KA(x)                 ((x) + 0x80000000)
2198 jancik 56
#endif
57
 
2236 kebrt 58
/** Number of entries in PTL0 */
2239 jancik 59
#define PTL0_ENTRIES_ARCH               (1<<12)             /* 4096 */
2198 jancik 60
 
2234 jancik 61
/** Frames per 1MB section */
62
#define FRAMES_PER_SECTION              ( ( 1 << 20 ) / FRAME_SIZE )
2198 jancik 63
 
2236 kebrt 64
/** Converts adress to frame number */
2234 jancik 65
#define ADDR2PFN( addr )                ( ((uintptr_t)(addr))>>FRAME_WIDTH )
2198 jancik 66
 
2236 kebrt 67
/** Descriptor type that signs "section" page table entry
68
 * (one-level paging with 1MB sized pages)  */  
2234 jancik 69
#define PTE_DESCRIPTOR_SECTION              2
2198 jancik 70
 
2236 kebrt 71
/** Access rights to page table: user-no access, kernel-read/write */
2234 jancik 72
#define PTE_AP_USER_NO_KERNEL_RW            1
2198 jancik 73
 
2236 kebrt 74
#ifndef __ASM__
2234 jancik 75
 
2236 kebrt 76
/** Page table level 0 entry - "section" format (one-level paging, 1MB sized
77
 * pages). Used only for booting the kernel. */
2198 jancik 78
typedef struct {
2236 kebrt 79
    unsigned descriptor_type     : 2; // PTE_DESCRIPTOR_SECTION
2198 jancik 80
    unsigned bufferable          : 1;
81
    unsigned cacheable           : 1;
2234 jancik 82
    unsigned machine_depend      : 1;
2198 jancik 83
    unsigned domain              : 4;
84
    unsigned should_be_zero_1    : 1;
85
    unsigned access_permission   : 2;  
86
    unsigned should_be_zero_2    : 8;
87
    unsigned section_base_addr   : 12;
88
} __attribute__ ((packed)) pte_level0_section;
89
 
90
 
2236 kebrt 91
/** Sets the address of level 0 page table.
92
 * \param pt pointer to the page table to set
2198 jancik 93
 */  
2236 kebrt 94
static inline void set_ptl0_address( pte_level0_section* pt) {
2198 jancik 95
    asm volatile ( "mcr p15, 0, %0, c2, c0, 0 \n"
96
    :
97
    : "r"(pt)
98
    );
99
 
100
}
101
 
2236 kebrt 102
/** Page table that holds 1:1 mapping for booting the kernel. */
2234 jancik 103
extern pte_level0_section page_table[PTL0_ENTRIES_ARCH];
2198 jancik 104
 
2234 jancik 105
/** Sets memory mapping for kernel */
2198 jancik 106
void mm_kernel_mapping(void);
2236 kebrt 107
 
108
#endif
2198 jancik 109
 
110
#endif
111
 
112
/** @}
113
 */
114