Changeset 71eef11 in mainline for kernel/arch/ia32/src/boot/boot.S


Ignore:
Timestamp:
2008-02-06T14:24:13Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7208b6c
Parents:
1b067315
Message:

remove config.memory_size, get_memory_size() and memory_init.{c|d}
the amount of available memory can be calculated from the sizes of the zones
add FRAMES2SIZE, SIZE2KB and SIZE2MB functions/macros (code readability)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/boot/boot.S

    r1b067315 r71eef11  
    110110        je valid_boot
    111111               
    112                 xorl %ecx, %ecx                                                 # no memory size or map available
    113                 movl %ecx, e801memorysize
     112                xorl %ecx, %ecx                                                 # no memory map available
    114113                movl %ecx, e820counter
    115114               
     
    119118               
    120119                movl (%ebx), %eax                                               # ebx = physical address of struct multiboot_info
    121                
    122                 bt $0, %eax                                                             # mbi->flags[0] (mem_lower, mem_upper valid)
    123                 jc mem_valid
    124                        
    125                         xorl %ecx, %ecx
    126                         jmp mem_invalid
    127                        
    128                 mem_valid:
    129                 movl 4(%ebx), %ecx                                              # mbi->mem_lower
    130                 addl 8(%ebx), %ecx                                              # mbi->mem_upper
    131                
    132                 mem_invalid:
    133                 movl %ecx, e801memorysize
    134120               
    135121                bt $3, %eax                                                             # mbi->flags[3] (mods_count, mods_addr valid)
Note: See TracChangeset for help on using the changeset viewer.