Ignore:
Timestamp:
Jul 23, 2014, 11:14:07 AM (10 years ago)
Author:
alain
Message:

Remove the seg_boor_buffer segment in the arch.py for the tsar_generic_iob platform.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/platforms/tsar_generic_iob/arch.py

    r734 r754  
    2020#  - nb_procs       : number of processors per cluster
    2121#
    22 #  The "hidden" platform parameters are:
     22#  The "hidden" parameters (defined below) are:
    2323#  - nb_ttys        : number of TTY channels
    2424#  - nb_nics        : number of NIC channels
     
    111111    rom_size  = 0x4000                     # 16 Kbytes
    112112
    113     ### define  bootloader vsegs base addresses
     113    ### define  bootloader vsegs base addresses and sizes
    114114
    115115    boot_mapping_vbase   = 0x00000000      # ident
     
    117117
    118118    boot_code_vbase      = 0x00040000      # ident
    119     boot_code_size       = 0x00020000      # 128 Kbytes
     119    boot_code_size       = 0x00040000      # 256 Kbytes
    120120 
    121     boot_data_vbase      = 0x00060000      # ident
    122     boot_data_size       = 0x00010000      # 64 Kbytes
    123 
    124     boot_buffer_vbase    = 0x00070000      # ident
    125     boot_buffer_size     = 0x00060000      # 384 Kbytes
    126 
    127     boot_stack_vbase     = 0x000D0000      # ident
     121    boot_data_vbase      = 0x00080000      # ident
     122    boot_data_size       = 0x00080000      # 512 Kbytes
     123
     124    boot_stack_vbase     = 0x00100000      # ident
    128125    boot_stack_size      = 0x00050000      # 320 Kbytes
    129126
    130     ### define kernel vsegs base addresses
     127    ### define kernel vsegs base addresses and sizes
    131128
    132129    kernel_code_vbase    = 0x80000000           
     
    235232                       identity = True )
    236233
    237     mapping.addGlobal( 'seg_boot_buffer', boot_buffer_vbase, boot_buffer_size,
    238                        'C_W_', vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM',
    239                        identity = True )
    240 
    241234    mapping.addGlobal( 'seg_boot_stack', boot_stack_vbase, boot_stack_size,
    242235                       'C_W_', vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM',
Note: See TracChangeset for help on using the changeset viewer.