Changes in kernel/arch/sparc64/src/sun4v/start.S [a52e2f4:b482287] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/sun4v/start.S
ra52e2f4 rb482287 28 28 # 29 29 30 #include <abi/asmtool.h>31 30 #include <arch/arch.h> 32 31 #include <arch/stack.h> … … 107 106 * 108 107 */ 109 SYMBOL(kernel_image_start) 108 .global kernel_image_start 109 kernel_image_start: 110 110 mov BSP_FLAG, %l0 111 111 and %o0, %l0, %l7 ! l7 <= bootstrap processor? … … 310 310 311 311 .align 8 312 SYMBOL(temp_cpu_mondo_handler) 312 .global temp_cpu_mondo_handler 313 temp_cpu_mondo_handler: 313 314 314 315 set 0x3c, %o0 … … 340 341 341 342 .align 8 342 SYMBOL(physmem_base) ! copy of the physical memory base address 343 .global physmem_base ! copy of the physical memory base address 344 physmem_base: 343 345 .quad 0 344 346 … … 348 350 * memory. 349 351 */ 350 SYMBOL(end_of_identity) 352 .global end_of_identity 353 end_of_identity: 351 354 .quad -1 352 355 353 SYMBOL(kernel_8k_tlb_data_template) 356 .global kernel_8k_tlb_data_template 357 kernel_8k_tlb_data_template: 354 358 .quad 0 355 359 356 360 /* MMU fault status areas for all CPUs */ 357 361 .align MMU_FSA_ALIGNMENT 358 SYMBOL(mmu_fsas) 362 .global mmu_fsas 363 mmu_fsas: 359 364 .space (MMU_FSA_SIZE * MAX_NUM_STRANDS)
Note:
See TracChangeset
for help on using the changeset viewer.