blob: dbfd686360e6bf65dd0aa0f5a7dc2f178b84f377 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001#ifndef __MMU_H
2#define __MMU_H
3
4/* Copyright (C) 2002, David McCullough <davidm@snapgear.com> */
5
6struct sram_list_struct {
7 struct sram_list_struct *next;
8 void *addr;
9 size_t length;
10};
11
12typedef struct {
Bryan Wu1394f032007-05-06 14:50:22 -070013 unsigned long end_brk;
14 unsigned long stack_start;
15
16 /* Points to the location in SDRAM where the L1 stack is normally
17 saved, or NULL if the stack is always in SDRAM. */
18 void *l1_stack_save;
19
20 struct sram_list_struct *sram_list;
21
22#ifdef CONFIG_BINFMT_ELF_FDPIC
23 unsigned long exec_fdpic_loadmap;
24 unsigned long interp_fdpic_loadmap;
25#endif
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080026#ifdef CONFIG_MPU
27 unsigned long *page_rwx_mask;
28#endif
Bryan Wu1394f032007-05-06 14:50:22 -070029} mm_context_t;
30
31#endif