aboutsummaryrefslogtreecommitdiff
path: root/arch/hexagon/include/asm/mmu.h
diff options
context:
space:
mode:
authorGravatar Richard Kuo <rkuo@codeaurora.org> 2011-10-31 18:53:38 -0500
committerGravatar Linus Torvalds <torvalds@linux-foundation.org> 2011-11-01 07:34:20 -0700
commita7e79840991eac8da36f437c653ee4b8cfbdafdc (patch)
treea673266d06a67c7f4f32b0e048848e752b6bb441 /arch/hexagon/include/asm/mmu.h
parentHexagon: Add ioremap support (diff)
downloadlinux-a7e79840991eac8da36f437c653ee4b8cfbdafdc.tar.gz
linux-a7e79840991eac8da36f437c653ee4b8cfbdafdc.tar.bz2
linux-a7e79840991eac8da36f437c653ee4b8cfbdafdc.zip
Hexagon: Add page table header files & etc.
Signed-off-by: Richard Kuo <rkuo@codeaurora.org> Signed-off-by: Linas Vepstas <linas@codeaurora.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/hexagon/include/asm/mmu.h')
-rw-r--r--arch/hexagon/include/asm/mmu.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/arch/hexagon/include/asm/mmu.h b/arch/hexagon/include/asm/mmu.h
new file mode 100644
index 000000000000..30a5d8d2659d
--- /dev/null
+++ b/arch/hexagon/include/asm/mmu.h
@@ -0,0 +1,37 @@
+/*
+ * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 and
+ * only version 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+#ifndef _ASM_MMU_H
+#define _ASM_MMU_H
+
+#include <asm/vdso.h>
+
+/*
+ * Architecture-specific state for a mm_struct.
+ * For the Hexagon Virtual Machine, it can be a copy
+ * of the pointer to the page table base.
+ */
+struct mm_context {
+ unsigned long long generation;
+ unsigned long ptbase;
+ struct hexagon_vdso *vdso;
+};
+
+typedef struct mm_context mm_context_t;
+
+#endif