source: rtems/c/src/lib/libbsp/arm/csb336/startup/memmap.c @ cfaa366

4.115
Last change on this file since cfaa366 was cfaa366, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 17:55:58

General - Remove extraneous blank line in license message

Many files had an extra blank line in the license text
found in the file header. This patch removes that line.

The script that did this also turned off execute permission
when it was turned on incorrectly.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*
2 *  CSB336 Memory Map
3 *
4 *  Copyright (c) 2004 by Cogent Computer Systems
5 *  Written by Jay Monkman <jtm@lopingdog.com>
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13#include <rtems.h>
14#include <libcpu/mmu.h>
15
16/* Remember, the ARM920 has 64 TLBs. If you have more 1MB sections than
17 * that, you'll have TLB lookups, which could hurt performance.
18 */
19mmu_sect_map_t mem_map[] = {
20/*  <phys addr>  <virt addr> <size> <flags> */
21    {0x08200000, 0x00000000,   1,    MMU_CACHE_NONE},     /* Mirror of SDRAM */
22    {0x00100000, 0x00100000,   1,    MMU_CACHE_NONE},     /* Bootstrap ROM */
23    {0x00200000, 0x00200000,   1,    MMU_CACHE_NONE},     /* Internal Regs */
24    {0x08000000, 0x08000000,  32,    MMU_CACHE_WTHROUGH}, /* SDRAM */
25    {0x10000000, 0x10000000,   8,    MMU_CACHE_NONE},     /* CS0 - Flash */
26    {0x12000000, 0x12000000,   1,    MMU_CACHE_NONE},     /* CS1 - enet */
27    {0x13000000, 0x13000000,   1,    MMU_CACHE_NONE},     /* CS2 - */
28    {0x14000000, 0x14000000,   1,    MMU_CACHE_NONE},     /* CS3 - */
29    {0x15000000, 0x15000000,   1,    MMU_CACHE_NONE},     /* CS4 - */
30    {0x16000000, 0x16000000,   1,    MMU_CACHE_NONE},     /* CS5 - */
31    {0x50000000, 0x50000000,   1,    MMU_CACHE_NONE},     /* ARM Test Regs */
32    {0x00000000, 0x00000000,   0,    0}                   /* The end */
33};
Note: See TracBrowser for help on using the repository browser.