Changeset e93bb24 in mainline for boot/arch/arm32/src/mm.c


Ignore:
Timestamp:
2013-08-15T09:36:14Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
34847e2
Parents:
7bf9217
Message:

arm32: add details to comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/arm32/src/mm.c

    r7bf9217 re93bb24  
    169169         * Create 1:1 virtual-physical mapping.
    170170         * Physical memory on BBxM a BBone starts at 2GB
    171          * boundary, gta02 has a memory mirror at 2GB.
    172          * icp somehow works (probably due to limited address size)
    173          */
    174         for (pfn_t page = 0; page < PTL0_ENTRIES; page++)
     171         * boundary, icp has a memory mirror at 2GB.
     172         * (ARM Integrator Core Module User guide ch. 6.3,  p. 6-7)
     173         * gta02 somehow works (probably due to limited address size),
     174         * s3c2442b manual ch. 5, p.5-1:
     175         * "Address space: 128Mbytes per bank (total 1GB/8 banks)"
     176         */
     177        for (pfn_t page = 0; page < PTL0_ENTRIES; ++page)
    175178                init_ptl0_section(&boot_pt[page], page);
    176179
Note: See TracChangeset for help on using the changeset viewer.