source: rtems/doc/supplements/arm/memmodel.t @ a454e88

4.104.114.84.95
Last change on this file since a454e88 was 8d7393a, checked in by Joel Sherrill <joel.sherrill@…>, on 07/30/02 at 21:43:53

2002-07-30 Joel Sherrill <joel@…>

  • BSP_TIMES, ChangeLog?, Makefile.am, arm.texi, bsp.t, callconv.t, cpumodel.t, cputable.t, fatalerr.t, intr_NOTIMES.t, memmodel.t, preface.texi, stamp-vti, timeBSP.t, timing.texi, version.texi, wksheets.texi: New files as ARM supplement initial version added.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-2002.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@chapter Memory Model
10
11@section Introduction
12
13A processor may support any combination of memory
14models ranging from pure physical addressing to complex demand
15paged virtual memory systems.  RTEMS supports a flat memory
16model which ranges contiguously over the processor's allowable
17address space.  RTEMS does not support segmentation or virtual
18memory of any kind.  The appropriate memory model for RTEMS
19provided by the targeted processor and related characteristics
20of that model are described in this chapter.
21
22@section Flat Memory Model
23
24Members of the ARM family newer than Version 3 support a flat
2532-bit address space with addresses ranging from 0x00000000 to
260xFFFFFFFF (4 gigabytes).  Each address is represented by a
2732-bit value and is byte addressable. 
28The address may be used to reference a
29single byte, word (2-bytes), or long word (4 bytes).  Memory
30accesses within this address space are performed in the endian
31mode that the processor is configured for.   In general, ARM
32processors are used in little endian mode.
33
34Some of the ARM family members such as the
35920 and 720 include an MMU and thus support virtual memory and
36segmentation.  RTEMS does not support virtual memory or
37segmentation on any of the ARM family members.
38
Note: See TracBrowser for help on using the repository browser.