blob: 42df407ee3e35a5f12b482f28a3f16437e2f4b1a [file] [log] [blame]
Catalin Marinasdcfdae02011-11-22 17:30:29 +00001/*
2 * arch/arm/include/asm/pgtable-3level-hwdef.h
3 *
4 * Copyright (C) 2011 ARM Ltd.
5 * Author: Catalin Marinas <catalin.marinas@arm.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#ifndef _ASM_PGTABLE_3LEVEL_HWDEF_H
21#define _ASM_PGTABLE_3LEVEL_HWDEF_H
22
23/*
24 * Hardware page table definitions.
25 *
26 * + Level 1/2 descriptor
27 * - common
28 */
29#define PMD_TYPE_MASK (_AT(pmdval_t, 3) << 0)
30#define PMD_TYPE_FAULT (_AT(pmdval_t, 0) << 0)
31#define PMD_TYPE_TABLE (_AT(pmdval_t, 3) << 0)
32#define PMD_TYPE_SECT (_AT(pmdval_t, 1) << 0)
Catalin Marinas1355e2a2012-07-25 14:32:38 +010033#define PMD_TABLE_BIT (_AT(pmdval_t, 1) << 1)
Catalin Marinasdcfdae02011-11-22 17:30:29 +000034#define PMD_BIT4 (_AT(pmdval_t, 0))
35#define PMD_DOMAIN(x) (_AT(pmdval_t, 0))
Christoffer Dall342cd0a2013-01-20 18:28:06 -050036#define PMD_APTABLE_SHIFT (61)
37#define PMD_APTABLE (_AT(pgdval_t, 3) << PGD_APTABLE_SHIFT)
38#define PMD_PXNTABLE (_AT(pgdval_t, 1) << 59)
Catalin Marinasdcfdae02011-11-22 17:30:29 +000039
40/*
41 * - section
42 */
43#define PMD_SECT_BUFFERABLE (_AT(pmdval_t, 1) << 2)
44#define PMD_SECT_CACHEABLE (_AT(pmdval_t, 1) << 3)
45#define PMD_SECT_S (_AT(pmdval_t, 3) << 8)
46#define PMD_SECT_AF (_AT(pmdval_t, 1) << 10)
47#define PMD_SECT_nG (_AT(pmdval_t, 1) << 11)
Christoffer Dall342cd0a2013-01-20 18:28:06 -050048#define PMD_SECT_PXN (_AT(pmdval_t, 1) << 53)
Catalin Marinasdcfdae02011-11-22 17:30:29 +000049#define PMD_SECT_XN (_AT(pmdval_t, 1) << 54)
50#define PMD_SECT_AP_WRITE (_AT(pmdval_t, 0))
51#define PMD_SECT_AP_READ (_AT(pmdval_t, 0))
Christoffer Dall9e9a3672013-01-20 18:43:10 -050052#define PMD_SECT_AP1 (_AT(pmdval_t, 1) << 6)
Catalin Marinasdcfdae02011-11-22 17:30:29 +000053#define PMD_SECT_TEX(x) (_AT(pmdval_t, 0))
54
55/*
56 * AttrIndx[2:0] encoding (mapping attributes defined in the MAIR* registers).
57 */
58#define PMD_SECT_UNCACHED (_AT(pmdval_t, 0) << 2) /* strongly ordered */
59#define PMD_SECT_BUFFERED (_AT(pmdval_t, 1) << 2) /* normal non-cacheable */
60#define PMD_SECT_WT (_AT(pmdval_t, 2) << 2) /* normal inner write-through */
61#define PMD_SECT_WB (_AT(pmdval_t, 3) << 2) /* normal inner write-back */
62#define PMD_SECT_WBWA (_AT(pmdval_t, 7) << 2) /* normal inner write-alloc */
63
64/*
65 * + Level 3 descriptor (PTE)
66 */
67#define PTE_TYPE_MASK (_AT(pteval_t, 3) << 0)
68#define PTE_TYPE_FAULT (_AT(pteval_t, 0) << 0)
69#define PTE_TYPE_PAGE (_AT(pteval_t, 3) << 0)
Catalin Marinas1355e2a2012-07-25 14:32:38 +010070#define PTE_TABLE_BIT (_AT(pteval_t, 1) << 1)
Catalin Marinasdcfdae02011-11-22 17:30:29 +000071#define PTE_BUFFERABLE (_AT(pteval_t, 1) << 2) /* AttrIndx[0] */
72#define PTE_CACHEABLE (_AT(pteval_t, 1) << 3) /* AttrIndx[1] */
73#define PTE_EXT_SHARED (_AT(pteval_t, 3) << 8) /* SH[1:0], inner shareable */
74#define PTE_EXT_AF (_AT(pteval_t, 1) << 10) /* Access Flag */
75#define PTE_EXT_NG (_AT(pteval_t, 1) << 11) /* nG */
76#define PTE_EXT_XN (_AT(pteval_t, 1) << 54) /* XN */
77
78/*
79 * 40-bit physical address supported.
80 */
81#define PHYS_MASK_SHIFT (40)
82#define PHYS_MASK ((1ULL << PHYS_MASK_SHIFT) - 1)
83
84#endif