source: rtems/c/src/lib/libbsp/arm/gumstix/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: 561 bytes
Line 
1/*
2 *  Gumstix Memory Map
3 *  2008 By Yang Xi <hiyangxi@gmail.com>
4 *  Copyright (c) 2004 by Cogent Computer Systems
5 *  Written by Jay Monkman <jtm@lopingdog.com>
6 *
7 *  $Id$
8 */
9
10#include <rtems.h>
11#include <libcpu/mmu.h>
12
13mmu_sect_map_t mem_map[] = {
14/*  <phys addr>  <virt addr> <size> <flags> */
15  {0x40000000, 0x40000000,  1216,   MMU_CACHE_NONE},  /*Map I/O*/
16  {0xA0000000, 0x00000000,   1,   MMU_CACHE_NONE},  /*sram*/
17  {0xA0000000, 0xA0000000,  64,   MMU_CACHE_WBACK}, /* SDRAM */
18  {0x00000000, 0x00000000,   0,   0}                /* The end */
19};
Note: See TracBrowser for help on using the repository browser.