Jon Medhurst | bb1fe20 | 2014-01-24 15:41:33 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2014, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
Sandrine Bailleux | 82a6e1a | 2014-04-03 13:48:04 +0100 | [diff] [blame] | 31 | #ifndef __XLAT_TABLES_H__ |
| 32 | #define __XLAT_TABLES_H__ |
| 33 | |
Achin Gupta | e998254 | 2014-06-26 08:59:07 +0100 | [diff] [blame] | 34 | |
| 35 | /* |
| 36 | * Flags to override default values used to program system registers while |
| 37 | * enabling the MMU. |
| 38 | */ |
| 39 | #define DISABLE_DCACHE (1 << 0) |
| 40 | |
| 41 | #ifndef __ASSEMBLY__ |
Jon Medhurst | bb1fe20 | 2014-01-24 15:41:33 +0000 | [diff] [blame] | 42 | #include <stdint.h> |
| 43 | |
Soby Mathew | b08bc04 | 2014-09-03 17:48:44 +0100 | [diff] [blame] | 44 | /* Helper macro to define entries for mmap_region_t. It creates |
| 45 | * identity mappings for each region. |
| 46 | */ |
| 47 | #define MAP_REGION_FLAT(adr, sz, attr) MAP_REGION(adr, adr, sz, attr) |
| 48 | |
| 49 | /* Helper macro to define entries for mmap_region_t. It allows to |
| 50 | * re-map address mappings from 'pa' to 'va' for each region. |
| 51 | */ |
| 52 | #define MAP_REGION(pa, va, sz, attr) {(pa), (va), (sz), (attr)} |
| 53 | |
Jon Medhurst | bb1fe20 | 2014-01-24 15:41:33 +0000 | [diff] [blame] | 54 | /* |
| 55 | * Flags for building up memory mapping attributes. |
| 56 | * These are organised so that a clear bit gives a more restrictive mapping |
| 57 | * that a set bit, that way a bitwise-and two sets of attributes will never give |
| 58 | * an attribute which has greater access rights that any of the original |
| 59 | * attributes. |
| 60 | */ |
| 61 | typedef enum { |
| 62 | MT_DEVICE = 0 << 0, |
| 63 | MT_MEMORY = 1 << 0, |
| 64 | |
| 65 | MT_RO = 0 << 1, |
| 66 | MT_RW = 1 << 1, |
| 67 | |
| 68 | MT_SECURE = 0 << 2, |
| 69 | MT_NS = 1 << 2 |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 70 | } mmap_attr_t; |
Jon Medhurst | bb1fe20 | 2014-01-24 15:41:33 +0000 | [diff] [blame] | 71 | |
| 72 | /* |
| 73 | * Structure for specifying a single region of memory. |
| 74 | */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 75 | typedef struct mmap_region { |
Lin Ma | 1359236 | 2014-06-02 11:45:36 -0700 | [diff] [blame] | 76 | unsigned long base_pa; |
| 77 | unsigned long base_va; |
Jon Medhurst | bb1fe20 | 2014-01-24 15:41:33 +0000 | [diff] [blame] | 78 | unsigned long size; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 79 | mmap_attr_t attr; |
| 80 | } mmap_region_t; |
Jon Medhurst | bb1fe20 | 2014-01-24 15:41:33 +0000 | [diff] [blame] | 81 | |
Lin Ma | 1359236 | 2014-06-02 11:45:36 -0700 | [diff] [blame] | 82 | void mmap_add_region(unsigned long base_pa, unsigned long base_va, |
| 83 | unsigned long size, unsigned attr); |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 84 | void mmap_add(const mmap_region_t *mm); |
Jon Medhurst | bb1fe20 | 2014-01-24 15:41:33 +0000 | [diff] [blame] | 85 | |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 86 | void init_xlat_tables(void); |
Jon Medhurst | bb1fe20 | 2014-01-24 15:41:33 +0000 | [diff] [blame] | 87 | |
Achin Gupta | e998254 | 2014-06-26 08:59:07 +0100 | [diff] [blame] | 88 | void enable_mmu_el1(uint32_t flags); |
| 89 | void enable_mmu_el3(uint32_t flags); |
Sandrine Bailleux | 82a6e1a | 2014-04-03 13:48:04 +0100 | [diff] [blame] | 90 | |
Achin Gupta | e998254 | 2014-06-26 08:59:07 +0100 | [diff] [blame] | 91 | #endif /*__ASSEMBLY__*/ |
Sandrine Bailleux | 82a6e1a | 2014-04-03 13:48:04 +0100 | [diff] [blame] | 92 | #endif /* __XLAT_TABLES_H__ */ |