RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / um / kernel / tt / mem.c
blobd0c3c4975f284c26a6a2273e98f841fc9d7d32a9
1 /*
2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
6 #include "linux/stddef.h"
7 #include "linux/mm.h"
8 #include "asm/uaccess.h"
9 #include "mem_user.h"
10 #include "kern_util.h"
11 #include "kern.h"
12 #include "tt.h"
14 void before_mem_tt(unsigned long brk_start)
16 if(debug)
17 remap_data(UML_ROUND_DOWN(&_stext), UML_ROUND_UP(&_etext), 1);
18 remap_data(UML_ROUND_DOWN(&_sdata), UML_ROUND_UP(&_edata), 1);
19 remap_data(UML_ROUND_DOWN(&__bss_start), UML_ROUND_UP(&_end), 1);
22 #define SIZE ((CONFIG_NEST_LEVEL + CONFIG_KERNEL_HALF_GIGS) * 0x20000000)
23 #define START (CONFIG_TOP_ADDR - SIZE)
25 unsigned long set_task_sizes_tt(unsigned long *task_size_out)
27 unsigned long host_task_size;
29 /* Round up to the nearest 4M */
30 host_task_size = ROUND_4M((unsigned long) &host_task_size);
31 *task_size_out = START;
33 return host_task_size;