这是内核自带的文档,讲解ARM芯片的内存是如何布局的!比较简单,对于初学者可以看一下!但要想深入理解Linux内存管理,建议还是找几本好书看看,如深入理解Linux虚拟内存,嵌入系统分析,Linux内核分析及程序设计等; 

Kernel Memory Layout on ARM Linux

Linux在ARM平台上的内存布局

Russell King <rmk@arm.linux.org.uk>
       November 17, 2005 (2.6.15)

This document describes the virtual memory layout which the Linux kernel uses for ARM processors.  It indicates which regions are free for platforms to use, and which are used by generic code.

本文档描述了Linux内核在ARM处理器上的虚拟内存布局。说明了哪些区域是给ARM平台使用的,哪些区域是通用代码使用的。

The ARM CPU is capable of addressing a maximum of 4GB virtual memory space, and this must be shared between user space processes, the kernel, and hardware devices.

ARM系列的CPU最大有4GB的虚拟内存空间寻址能力,但它必须用户空间,内存以及硬件设备共享地址空间。

As the ARM architecture matures, it becomes necessary to reserve certain regions of VM space for use for new facilities; therefore this document may reserve more VM space over time.

在ARM架构成熟的同时,它也开始需要在VM空间保留明确的区域,让用户使用更简单,因此,随着时间的流逝,本文档可能保留了更多的VM空间。

Start(开始地址)  End(结束地址)  Use(使用说明)
--------------------------------------------------------------------------
ffff8000 ffffffff copy_user_page / clear_user_page use. For SA11xx and Xscale, this is used to setup a minicache mapping.

copy_user_page/clear_user_page使用,对于SA11XX和Xscal,它用于设置机器映射。

ffff1000 ffff7fff Reserved.
    Platforms must not use this address range. 保留,ARM平台一定不使用这个区间。

ffff0000 ffff0fff CPU vector page. CPU向量表
    The CPU vectors are mapped here if the CPU supports vector relocation (control register V bit.)

  如果CPU支持向量重定向(控制寄存器的V位),则CPU向量被映射到这里。

ffc00000 fffeffff DMA memory mapping region.  Memory returned by the dma_alloc_xxx functions will be dynamically mapped here.

  DMA内存映射区间。由dma_ammoc_xxx系列函数返回的内存会动态的映射到这里。

ff000000 ffbfffff Reserved for future expansion of DMA mapping region.

  保留,用于以后的DMA扩展映射区间。

VMALLOC_END feffffff Free for platform use, recommended. 建议平台保留。
    VMALLOC_END must be aligned to a 2MB boundary. VMALLOC_END必须在2MB的边界上对齐。  

VMALLOC_START VMALLOC_END-1 vmalloc() / ioremap() space. vmalloc
    Memory returned by vmalloc/ioremap will be dynamically placed in this region. VMALLOC_START may be based upon the value of the high_memory variable.

  vmalloc/ioremap 函数返回的内存会被动态的放到该区间。VMALLOC_START 可能的值可能会基于high_memory变量的值而有所不同。

PAGE_OFFSET high_memory-1 Kernel direct-mapped RAM region. 内核直接映射内存区间。
    This maps the platforms RAM, and typically maps all platform RAM in a 1:1 relationship.

  它映射平台的RAM,通常所有的平台都使用1:1的映射关系。

TASK_SIZE PAGE_OFFSET-1 Kernel module space    Kernel modules inserted via insmod are
    placed here using dynamic mappings.

  内核模块空间,内核模块通过insmod命令加载,会动态的映射到这里。

00001000 TASK_SIZE-1 User space mappings 用户空间
    Per-thread mappings are placed here via
    the mmap() system call.每个进程通过mmap系统调用的映射放到这里。

00000000 00000fff CPU vector page / null pointer trap CPU向量表,NULL指针陷井
    CPUs which do not support vector remapping place their vector page here.  NULL pointer dereferences by both the kernel and user space are also caught via this mapping. 

 不支持向量重映射的CPU的向量表被映射到这里。用户空间和内核态的NULL指针引通过这个映射可以被捕获。 

Please note that mappings which collide with the above areas may result
in a non-bootable kernel, or may cause the kernel to (eventually) panic
at run time.

请注意:一些与上面冲突的映射会导致内核无法启动,或者可能在运行时会产生(最终)内核panic !

Since future CPUs may impact the kernel mapping layout, user programs
must not access any memory which is not mapped inside their 0x0001000
to TASK_SIZE address range.  If they wish to access these areas, they
must set up their own mappings using open() and mmap().

不管CPU特性会是否与内核的映射布局冲突,用户程序在内部没有映射0x0001000到TASK_SIZE之间的地址空间时,必须不能访问这里面的内存。如果他们想这样做,那么他们必须通过open和mmap来创建自己的映射。

Kernel Memory Layout on ARM Linux的更多相关文章

  1. 【ARM-Linux开发】Linux内存管理:ARM Memory Layout以及mmu配置

    原文:Linux内存管理:ARM Memory Layout以及mmu配置 在内核进行page初始化以及mmu配置之前,首先需要知道整个memory map. 1. ARM Memory Layout ...

  2. 构建 ARM Linux 4.7.3 嵌入式开发环境 —— BusyBox 构建 RootFS

    上一篇我们已经成功将 ARM Linux 4.7.3 的内核利用 U-BOOT 引导了起来.但是细心的你会发现,引导到后面,系统无法启动,出现内核恐慌 (Kernel Panic). 原因是找不到文件 ...

  3. How to build and run ARM Linux on QEMU from scratch

    This blog shows how to run ARM Linux on QEMU! This can be used as a base for later projects using th ...

  4. 构建 ARM Linux 4.7.3 嵌入式开发环境 —— U-BOOT 引导 Kernel

    经过若干天的反复测试,搜索.终于成功利用 Qemu 在 u-boot 下引导 ARM Linux 4.7.3 内核.如下详细解释整个构建过程. 准备环境 运行环境:Ubuntu 16.04 需要的虚拟 ...

  5. arm linux kernel 从入口到start_kernel 的代码分析

    参考资料: <ARM体系结构与编程> <嵌入式Linux应用开发完全手册> Linux_Memory_Address_Mapping http://www.chinaunix. ...

  6. arm linux kernel启动之start_kernel

    了解完kernel启动以前的汇编之后我们来看看正式的c语言启动代码,也就是我们的start_kernel函数了.start_kernel相当大,里面每一个调用到的函数都足够我们伤脑筋了,我这里只是浅尝 ...

  7. Linux Kernel之flush_cache_all在ARM平台下是如何实现的【转】

    转自:http://blog.csdn.net/u011461299/article/details/10199989 版权声明:本文为博主原创文章,未经博主允许不得转载. 在驱动程序的设计中,我们可 ...

  8. ARM Linux从Bootloader、kernel到filesystem启动流程

    转自:http://www.veryarm.com/1491.html ARM Linux启动流程大致为:bootloader ---->kernel---->root filesyste ...

  9. Arm Linux系统调用流程详细解析

    Linux系统通过向内核发出系统调用(system call)实现了用户态进程和硬件设备之间的大部分接口. 系统调用是操作系统提供的服务,用户程序通过各种系统调用,来引用内核提供的各种服务,系统调用的 ...

随机推荐

  1. Docker系列之(五):使用Docker Compose编排容器

    1. 前言 Docker Compose 是 Docker 容器进行编排的工具,定义和运行多容器的应用,可以一条命令启动多个容器. 使用Compose 基本上分为三步: Dockerfile 定义应用 ...

  2. 解决 MyEclipse build workspace 慢,validation javascript 更慢的问题

    自从升级了MyEclipse到7.0,项目Build的时候总是很慢,显示Validating 那些js,html文件.不管我怎么调整 Windows > Preference > MyEc ...

  3. sTM32 使用TIMx_CH1作为 Tx1F_ED 计数器时钟

    环境:iar arm 5.3 stm32f103vbt6 使用PA.8 外部输入10Mhz的方波.可从systick中断得到数据4. 4×5000(预分频值)×1000(tick中断时间)=20MHz ...

  4. android在代码中四种设置控件背景颜色的方法(包含RGB)

    转载请注明出处: http://blog.csdn.net/fth826595345/article/details/9208771  TextView tText=(TextView) findVi ...

  5. 怎样用javascript获取UUID

    因为javascript是单线程的东西,所以我们放一个累加变量作为id也不会反复. 但事实上javascript本身提供了能够获得唯一id的东东.还记得setTimeout()方法会返回一个唯一id用 ...

  6. Oracle Applications Documentation

    Oracle E-Business Suite Documentation Web Library Release 12.2+ Link Download Oracle E-Business Suit ...

  7. WordPress主题开发:循环代码

    have_posts() 有没有文章信息 if...else <?php if( have_posts() ) : while( have_posts() ) : the_post(); ?&g ...

  8. T4:使用 T4 消除程序和配置文件中重复的字符串信息

    背景 我们经常在配置文件中配置各种:id.name,然后在程序中使用这些配置获取信息,这导致了字符串重复出现在系统的多个地方,非常不利于维护,本文介绍采用 T4 来消除这种重复. T4 消除重复 配置 ...

  9. HTML5学习笔记:跨域

    在跨域安全性方面,有多个地方会有限制,主要是XMLHttpRequest对象的跨域限制和iFrame的跨域限制,下面我们分别来看一下. Ajax跨域(CORS) CORS是一个W3C标准,全称是&qu ...

  10. zoj2334 Monkey King , 并查集,可并堆,左偏树

    提交地址:点击打开链接 题意:  N(N<=10^5)仅仅猴子,初始每仅仅猴子为自己猴群的猴王.每仅仅猴子有一个初始的力量值.这些猴子会有M次会面. 每次两仅仅猴子x,y会面,若x,y属于同一个 ...