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


Ignore:
Timestamp:
2013-01-01T11:44:47Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4a46ccc
Parents:
a4afc8d (diff), b5a3b50 (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:

Mainline changes (boot caching for gta02)

File:
1 edited

Legend:

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

    ra4afc8d r029e3cc  
    3838#include <arch/mm.h>
    3939
     40/** Check if caching can be enabled for a given memory section.
     41 *
     42 * Memory areas used for I/O are excluded from caching.
     43 * At the moment caching is enabled only on GTA02.
     44 *
     45 * @param section       The section number.
     46 *
     47 * @return      1 if the given section can be mapped as cacheable, 0 otherwise.
     48*/
     49static inline int section_cacheable(pfn_t section)
     50{
     51#ifdef MACHINE_gta02
     52        unsigned long address = section << PTE_SECTION_SHIFT;
     53
     54        if (address >= GTA02_IOMEM_START && address < GTA02_IOMEM_END)
     55                return 0;
     56        else
     57                return 1;
     58#else
     59        return 0;
     60#endif
     61}
     62
    4063/** Initialize "section" page table entry.
    4164 *
     
    5578        pte->descriptor_type = PTE_DESCRIPTOR_SECTION;
    5679        pte->bufferable = 1;
    57         pte->cacheable = 0;
     80        pte->cacheable = section_cacheable(frame);
    5881        pte->xn = 0;
    5982        pte->domain = 0;
     
    130153                "ldr r1, =0x00000805\n"
    131154#else
     155#ifdef MACHINE_gta02
     156                /* Mask to enable paging (bit 0),
     157                   D-cache (bit 2), I-cache (bit 12) */
     158                "ldr r1, =0x00001005\n"
     159#else
    132160                /* Mask to enable paging and branch prediction */
    133161                "ldr r1, =0x00000801\n"
     162#endif
    134163#endif
    135164                "orr r0, r0, r1\n"
Note: See TracChangeset for help on using the changeset viewer.