RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-blackfin / mmu.h
blob11d52f1167d0e9f9d6a0d9002bcd59bb9820967d
1 #ifndef __MMU_H
2 #define __MMU_H
4 /* Copyright (C) 2002, David McCullough <davidm@snapgear.com> */
6 struct sram_list_struct {
7 struct sram_list_struct *next;
8 void *addr;
9 size_t length;
12 typedef struct {
13 struct vm_list_struct *vmlist;
14 unsigned long end_brk;
15 unsigned long stack_start;
17 /* Points to the location in SDRAM where the L1 stack is normally
18 saved, or NULL if the stack is always in SDRAM. */
19 void *l1_stack_save;
21 struct sram_list_struct *sram_list;
23 #ifdef CONFIG_BINFMT_ELF_FDPIC
24 unsigned long exec_fdpic_loadmap;
25 unsigned long interp_fdpic_loadmap;
26 #endif
28 } mm_context_t;
30 #endif