Changeset 46c20c8 in mainline for boot/arch/arm32/src/asm.S


Ignore:
Timestamp:
2010-11-26T20:08:10Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
45df59a
Parents:
fb150d78 (diff), ffdd2b9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • boot/arch/arm32/src/asm.S

    rfb150d78 r46c20c8  
    2727#
    2828
    29 
    30 #include "mm.h"
     29#include <arch/arch.h>
    3130
    3231.section BOOTSTRAP
    3332
    3433.global start
     34.global boot_pt
     35.global boot_stack
     36.global halt
    3537.global jump_to_kernel
    36 .global page_table
    37 .global boot_stack
    3838
    3939start:
    4040        ldr sp, =boot_stack
    4141        b bootstrap
     42
     43.section BOOTPT
     44boot_pt:
     45        .space PTL0_ENTRIES * PTL0_ENTRY_SIZE
     46
     47.section BOOTSTACK
     48        .space 4096
     49boot_stack:
     50
     51.text
     52
     53halt:
     54        b halt
    4255
    4356jump_to_kernel:
     
    4861        #
    4962        bx r0
    50 
    51 #bootloader stack
    52 .section ST
    53         .space 4096
    54 boot_stack:
    55 
    56 # place page_table to PT section
    57 .section PT
    58 
    59 # make place for PTL0 page table
    60 page_table:
    61         .skip PTL0_ENTRIES * PTL0_ENTRY_SIZE
Note: See TracChangeset for help on using the changeset viewer.