Changeset ddcc8a0 in mainline
- Timestamp:
- 2011-11-10T23:09:13Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update
- Children:
- 95e882d
- Parents:
- ec1c8e6
- Location:
- kernel
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/mm/frame.h
rec1c8e6 rddcc8a0 41 41 #include <typedefs.h> 42 42 43 extern void frame_arch_init(void); 43 extern void frame_low_arch_init(void); 44 extern void frame_high_arch_init(void); 44 45 extern void physmem_print(void); 45 46 -
kernel/arch/abs32le/src/mm/frame.c
rec1c8e6 rddcc8a0 50 50 51 51 52 void frame_arch_init(void) 52 void frame_low_arch_init(void) 53 { 54 } 55 56 void frame_high_arch_init(void) 53 57 { 54 58 } -
kernel/arch/amd64/include/mm/frame.h
rec1c8e6 rddcc8a0 44 44 45 45 extern uintptr_t last_frame; 46 extern void frame_arch_init(void); 46 extern void frame_low_arch_init(void); 47 extern void frame_high_arch_init(void); 47 48 extern void physmem_print(void); 48 49 -
kernel/arch/arm32/include/mm/frame.h
rec1c8e6 rddcc8a0 63 63 extern uintptr_t last_frame; 64 64 65 extern void frame_arch_init(void); 65 extern void frame_low_arch_init(void); 66 extern void frame_high_arch_init(void); 66 67 extern void boot_page_table_free(void); 67 68 #define physmem_print() -
kernel/arch/arm32/src/mm/frame.c
rec1c8e6 rddcc8a0 39 39 #include <config.h> 40 40 #include <align.h> 41 #include <macros.h> 41 42 42 43 /** Address of the last frame in the memory. */ … … 44 45 45 46 /** Creates memory zones. */ 46 void frame_ arch_init(void)47 void frame_low_arch_init(void) 47 48 { 48 49 uintptr_t mem_start, mem_size; … … 66 67 } 67 68 69 void frame_high_arch_init(void) 70 { 71 } 72 68 73 /** Frees the boot page table. */ 69 74 void boot_page_table_free(void) -
kernel/arch/ia32/include/mm/frame.h
rec1c8e6 rddcc8a0 45 45 extern uintptr_t last_frame; 46 46 47 extern void frame_arch_init(void); 47 extern void frame_low_arch_init(void); 48 extern void frame_high_arch_init(void); 48 49 extern void physmem_print(void); 49 50 -
kernel/arch/ia32/src/mm/frame.c
rec1c8e6 rddcc8a0 179 179 180 180 181 void frame_ arch_init(void)181 void frame_low_arch_init(void) 182 182 { 183 183 pfn_t minconf; … … 206 206 } 207 207 208 void frame_high_arch_init(void) 209 { 210 } 211 208 212 /** @} 209 213 */ -
kernel/arch/ia64/include/mm/frame.h
rec1c8e6 rddcc8a0 45 45 extern uintptr_t last_frame; 46 46 47 extern void frame_arch_init(void); 47 extern void frame_low_arch_init(void); 48 extern void frame_high_arch_init(void); 48 49 #define physmem_print() 49 50 -
kernel/arch/ia64/src/mm/frame.c
rec1c8e6 rddcc8a0 53 53 uintptr_t last_frame = 0; 54 54 55 void frame_ arch_init(void)55 void frame_low_arch_init(void) 56 56 { 57 57 if (config.cpu_active == 1) { … … 88 88 } 89 89 90 void frame_high_arch_init(void) 91 { 92 } 93 90 94 /** @} 91 95 */ -
kernel/arch/mips32/include/mm/frame.h
rec1c8e6 rddcc8a0 41 41 #ifndef __ASM__ 42 42 43 extern void frame_arch_init(void); 43 extern void frame_low_arch_init(void); 44 extern void frame_high_arch_init(void); 44 45 extern void physmem_print(void); 45 46 -
kernel/arch/mips32/src/mm/frame.c
rec1c8e6 rddcc8a0 165 165 * 166 166 */ 167 void frame_ arch_init(void)167 void frame_low_arch_init(void) 168 168 { 169 169 ipl_t ipl = interrupts_disable(); … … 246 246 } 247 247 248 void frame_high_arch_init(void) 249 { 250 } 248 251 249 252 void physmem_print(void) -
kernel/arch/mips64/include/mm/frame.h
rec1c8e6 rddcc8a0 41 41 #ifndef __ASM__ 42 42 43 extern void frame_arch_init(void); 43 extern void frame_low_arch_init(void); 44 extern void frame_high_arch_init(void); 44 45 extern void physmem_print(void); 45 46 -
kernel/arch/mips64/src/mm/frame.c
rec1c8e6 rddcc8a0 156 156 * 157 157 */ 158 void frame_ arch_init(void)158 void frame_low_arch_init(void) 159 159 { 160 160 ipl_t ipl = interrupts_disable(); … … 229 229 } 230 230 231 void frame_high_arch_init(void) 232 { 233 } 234 231 235 void physmem_print(void) 232 236 { -
kernel/arch/ppc32/include/mm/frame.h
rec1c8e6 rddcc8a0 58 58 } 59 59 60 extern void frame_arch_init(void); 60 extern void frame_low_arch_init(void); 61 extern void frame_high_arch_init(void); 61 62 extern void physmem_print(void); 62 63 -
kernel/arch/ppc32/src/mm/frame.c
rec1c8e6 rddcc8a0 54 54 } 55 55 56 void frame_ arch_init(void)56 void frame_low_arch_init(void) 57 57 { 58 58 pfn_t minconf = 2; … … 92 92 } 93 93 94 void frame_high_arch_init(void) 95 { 96 } 97 94 98 /** @} 95 99 */ -
kernel/arch/sparc64/include/mm/sun4u/frame.h
rec1c8e6 rddcc8a0 75 75 extern uintptr_t end_of_identity; 76 76 77 extern void frame_arch_init(void); 77 extern void frame_low_arch_init(void); 78 extern void frame_high_arch_init(void); 78 79 #define physmem_print() 79 80 -
kernel/arch/sparc64/include/mm/sun4v/frame.h
rec1c8e6 rddcc8a0 47 47 48 48 extern uintptr_t last_frame; 49 extern void frame_arch_init(void); 49 extern void frame_low_arch_init(void); 50 extern void frame_high_arch_init(void); 50 51 #define physmem_print() 51 52 -
kernel/arch/sparc64/src/mm/sun4u/frame.c
rec1c8e6 rddcc8a0 47 47 * Walk the memory map and create frame zones according to it. 48 48 */ 49 void frame_ arch_init(void)49 void frame_low_arch_init(void) 50 50 { 51 51 if (config.cpu_active == 1) { … … 87 87 } 88 88 89 void frame_high_arch_init(void) 90 { 91 } 92 89 93 /** @} 90 94 */ -
kernel/arch/sparc64/src/mm/sun4v/frame.c
rec1c8e6 rddcc8a0 45 45 * Walk the memory map and create frame zones according to it. 46 46 */ 47 void frame_ arch_init(void)47 void frame_low_arch_init(void) 48 48 { 49 49 if (config.cpu_active == 1) { … … 81 81 } 82 82 83 void frame_high_arch_init(void) 84 { 85 } 86 83 87 /** @} 84 88 */ -
kernel/generic/src/mm/frame.c
rec1c8e6 rddcc8a0 1232 1232 1233 1233 /* Tell the architecture to create some memory */ 1234 frame_ arch_init();1234 frame_low_arch_init(); 1235 1235 if (config.cpu_active == 1) { 1236 1236 frame_mark_unavailable(ADDR2PFN(KA2PA(config.base)), … … 1255 1255 frame_mark_unavailable(0, 1); 1256 1256 } 1257 frame_high_arch_init(); 1257 1258 } 1258 1259
Note:
See TracChangeset
for help on using the changeset viewer.