ARM 微处理器可支持多达 16 个协处理器,用于各种协处理操作,在程序执行的过程中,每个协处理器只执行针对自身的协处理指令,忽略 ARM 处理器和其他协处理器的指令。ARM 的协处理器指令主要用于 ARM 处理器初始化 ARM 协处理器的数据处理操作,以及在ARM 处理器的寄存器和协处理器的寄存器之间传送数据,和在 ARM 协处理器的寄存器和存储器之间传送数据。 ARM 协处理器指令包括以下 5 条:
CDP 协处理器数操作指令
LDC 协处理器数据加载指令
STC 协处理器数据存储指令
MCR ARM 处理器寄存器到协处理器寄存器的数据传送指令
MRC 协处理器寄存器到ARM 处理器寄存器的数据传送指令
......
CP15系统控制协处理器
CP15 —系统控制协处理器 (the system control coprocessor)他通过协处理器指令MCR和MRC提供具体的寄存器来配置和控制caches、MMU、保护系统、配置时钟模式(在bootloader时钟初始化用到)
CP15的寄存器只能被MRC和MCR(Move to Coprocessor from ARM Register )指令访问
一些要说明的内容,摘录见下::
Co-processors
There are between zero and three possible co-processors. Most desktop ARM systems do not have logic for external co-processors, so we may either use that which is built into the ARM itself, or an emulated co-processor.
CP15 is reserved on the ARM 3 and later processors for internal configuration, as described in this document.
CP0 and CP1 is used by the floating point system. It may either be an external floating point chip (as used with the ARM 3), hardware built into the processor (as in the ARM 7500FE), or a totally software-based emulation (as with the FPEmulator that we all know).
Here is a short exercise for you:
10 DIM code% 16
20 P% = code%
30 [ OPT 3
40 CDP CP1, 0, C0, C1, C2, 0
50 ADFS F0, F1, F3
60 MOV PC, R14
70 ]
>RUN
00008F78 OPT 3
00008F78 EE010102 CDP CP1, 0, C0, C1, C2
00008F7C EE010102 ADFS F0, F1, F2
00008F80 E1A0F00E MOV PC, R14
>
What do you notice? :-)
When the ARM executes a co-processor instruction, or an undefined instruction, it will offer it to any co-processors which may be presently attached. If hardware is available to process the given instruction, then it is expected to do so. If it is busy at the time the instruction is offered, the ARM will wait for it.
If there is no co-processor capable of executing the instruction, the ARM will take its undefined instruction trap, in which case the following will happen:
The PSR and PC are both saved (the method differs for 26 bit and 32 bit ARMs)
SVC mode (26 bit) / UND mode (32 bit) is entered, and the I bit of the PSR is set
The instruction at address &00000004 is executed
This trap may be used to add instructions to the instruction set by emulation, or to implement a software emulation of hardware that isn't fitted. The Floating Point Emulator works by doing this.
To return, simply pull the saved PC and PSR (depends on 26/32 bit) and push them to the current PC and PSR, like MOVS PC, R14 in 26 bit systems. This will pick up with the instruction following the one which caused the trap.
All of the co-processor instructions can be executed conditionally. Please note that the conditionals relate to the status of the ARM processor, and not the status of any of the co-processors. This is because the ARM always tries the instruction first, and offers it around and maybe takes the undefined application trap, so the conditions are ARM related.
To make this clearer:
10 DIM code% 32
20 P% = code%
30 [ OPT 3
40 FLTS F0, R0
50 FLTS F1, R1
60 FMLS F2, F0, F1
70 FIX R0, F2
80 MOVS PC, R14
90 ]
100 INPUT "First number : "A%
110 INPUT "Second number: "B%
120 PRINT USR(code%)
This probably won't assemble without an enhanced BASIC assembler.
Anyway, you might think the ARM will hand over to the floating point co-processor to do the four FP instructions, then hand back afterwards.
If you did, you would be incorrect!
What actually is executed is:
MCR CP1, 0, R0, C0, C0
MCR CP1, 0, R1, C1, C0
CDP CP1, 9, C2, C0, C1
MRC CP1, 0, R0, C0, C2
It is worth pointing out that objasm specifies co-processor registers using the CR notation (ie, CR0 - CR15), which is first defined with the CN directive. It does not appear as if default co-processor instructions are defined in Nick Roberts' ASM, though I've only looked in the instructions at the "defined symbols" section...
Darren Salt's ExtBASICasm provides the register names C0 - C15 to refer to the co-processors. So if any of these examples fail when you try to assemble them, please check what format your assembler provides these instructions.
MRC
The instruction MRC transfers a co-processor register to an ARM register. It takes the form:
MRC The co-processor is denoted in most assemblers by CPx . The register The final MCR The instruction MCR transfers an ARM register to a co-processor register. It takes the form: MCR The co-processor is free to interpret the fields as it desires, but the standard interpretation is that the contents of the ARM register are written to the co-processor register using the operation code given, which may be further modified by the second co-processor register and/or the second operation code. 在U-Boot中我们用到了c7 和 c8这两个协处理器,再来看看MCR的详细用法: MCR指令: MCR指令将ARM处理器的寄存器中的数据传送到协处理器寄存器中。如果协处理器不能成功地执行该操作,将产生未定义的指令异常中断。 指令语法格式: MCR{ ,< opcode_1>, MCR{ 其中 指令执行的条件码.当 协处理器将执行的操作的操作码。对于CP15协处理器来说, 作为源寄存器的ARM寄存器,其值将被传送到协处理器寄存器中 作为目标寄存器的协处理器寄存器,其编号可能是C0,C1,…,C15。 mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */ 可以看出,其中 rd为r0=0 CRn为C7 CRm为C7 对于这行代码的作用,以此按照语法,来一点点解释如下: 首先,mcr做的事情,其实很简单,就是“ARM处理器的寄存器中的数据传送到协处理器寄存器中”, 此处即是,将ARM的寄存器r0中的数据,此时r0=0,所以就是把0这个数据,传送到协处理器CP15中。 而对应就是写入到“ 而上面关于Register 7的含义中也说了,“Any data written to this location will cause the selected cache to be flushed”,即你往这个寄存器7中写入任何数据,都会导致对应的缓存被清空。而到底那个缓存被清空呢,即我们这行指令 mcr p15, 0, r0, c7, c7, 0 起了什么作用呢 那是由“ 而此处CRm为C7,opcode_2为0,而对于C7和0的组合的作用,参见上面的那个表中Register 7中的Flash I+D那一行, 当opcode_2为0,CRm为0111=7,就是我们要找的,其作用是“Flush I + D”,即清空指令缓存I Cache和数据缓存D Cache。 根据该表,同理,如果是opcode_2=0,而CRm=0101b=5,那么对应的就是去“Flush I”,即只清除指令缓存I Cache了。 而对应的指令也就是 mcr p15, 0, r0, c7, c5, 0 此注释说此行代码的作用是,清理v3或v4的缓存 其中v4,我们很好理解,因为我们此处的CPU是ARM920T的核心,是属于ARM V4的,而为何又说,也可以清除v3的cache呢? 那是因为,本身这些寄存器位域的定义,都是向下兼容的,参见上面引用的内容,也写到了: ARM 710 Register 7 - IDC flush (write only) Any data written to this location will cause the IDC (Instruction/Data cache) to be flushed. 即,对于ARM7的话,你写同样的这行代码 mcr p15, 0, r0, c7, c7, 0 也还是向register 7中写入了数据0,这也同样满足了其所说的“Any data written to this location”,也会产生同样的效果“cause the IDC (Instruction/Data cache) to be flushed”。 同理,可以看出此行是去操作寄存器8,而对应的各个参数为: rd为r0=0 CRn为C8 CRm为C7 opcode_2为0 对照寄存器8的表: Register 8 - TLB operations (write only) Any data written to this location will cause the selected TLB flush operation. The OPC_2 and CRm co-processor fields select which cache operation should occur: Function OPC_2 CRm Data Flush I + D %0000 %0111 - Flush I %0000 %0101 - Flush D %0000 %0110 - Flush D single %0001 %0110 Virtual address” 其含义为: 向寄存器8中写入数据,会导致对应的TLB被清空。具体是哪个TLB,由opcode_2和CRm组合决定, 此处opcode_2为0,CRm为7=0111b,所以对应的作用是“Flush I + D”,即清空指令和数据的TLB。
上一篇:s3c6410 时钟设置
下一篇:ARM体系架构—ARMv7-A协处理器
推荐阅读
史海拾趣
为了进一步扩大市场份额,Edcon Components Netherlands Cv开始积极拓展国际市场。公司通过对不同国家和地区的市场进行深入分析,制定了精准的市场拓展策略。通过与当地经销商建立合作关系,Edcon的产品逐渐进入国际市场,并在多个国家和地区取得了成功。国际市场的拓展不仅为公司带来了更多的商机,也提升了公司的品牌影响力。
为了保持技术上的领先地位,Barnbrook积极寻求与高校、研究机构的合作。通过与这些机构的深入合作,Barnbrook不仅获得了最新的科研成果和人才支持,还成功研发出了一系列具有创新性的电子产品。这些产品不仅提升了公司的技术实力,也为公司的长期发展注入了新的活力。
在电子产品行业,产品质量和客户服务是企业生存和发展的关键。Barnbrook深知这一点,因此在发展过程中始终坚持严格的品质管理和优质的客户服务。公司建立了完善的质量管理体系,对每一道工序都进行严格把关,确保产品的稳定性和可靠性。同时,Barnbrook也重视客户反馈和需求,不断优化产品和服务,赢得了客户的信任和好评。
Chen Yang Technologies最初是一家专注于半导体芯片研发的小型公司。在某个关键时期,公司成功研发出了一种低功耗、高性能的芯片技术,这一技术突破立即引起了市场的广泛关注。凭借这一技术,Chen Yang Technologies迅速扩大了其产品线,并开始向全球范围内的电子设备制造商供应芯片。随着市场份额的逐步增长,公司逐渐在电子行业中建立了自己的地位。
随着国内市场的饱和,ABCO公司开始将目光投向海外市场。公司制定了国际化战略,通过在海外设立分支机构、建立销售网络等方式,逐步拓展国际市场。同时,ABCO公司还积极与国际知名企业进行合作与交流,学习先进的管理经验和技术,为公司的国际化发展提供了有力支持。
这五个故事展示了ABCO公司在电子行业发展中不断挑战自我、追求卓越的过程。通过技术创新、市场拓展、质量管理以及国际化战略的实施,ABCO公司逐渐发展成为一家具有竞争力的电子企业。
ABCO公司初创时,电子市场竞争激烈,众多企业争夺市场份额。面对这样的环境,ABCO公司创始人凭借对电子技术的深刻理解,以及敏锐的市场洞察力,选择了专注于某一细分领域——高精度传感器的研发与生产。通过不断优化产品设计,提升产品性能,ABCO公司的传感器逐渐在市场上获得认可,为公司的起步奠定了坚实基础。
摘要:进入后PC 时代以后,嵌入式操作系统成为目前已经成为了最热门的技术之一,在嵌入式系统的应用中,微型大容量存储器的 文件管理系统的重要性越来越突出,其中uC/ FS 以源码开放,价格低廉,兼容性好,效率高等特点受到越来越高的重视。… 查看全部问答∨ |
|
以下是我写的程序 用来从AD读出数据再在P0口的数码管显示 可是一直不能通过编译 但是我又真的查不出在哪错了 希望指教 谢谢 程序后面有提示的错误信息 #include<reg52.h> #define ...… 查看全部问答∨ |
我想学习一下WINCE操作系统的定制,安装了PB5.0,硬件设备也有,2440跑WINCE5.0的板子。我想学习一下,自己定制一个系统,下进去跑跑。如何使用PB生成系统映像的大体流程我已经清楚了。现在想系统的学习一下,比如那些特性我该怎么去选择等等。我现 ...… 查看全部问答∨ |
为何pb5中用x86debug可以模拟运行wince,用ARMV4I就不行 我在pb中定制内核,先按一本书上讲的,使用了x86_debug来编译内核镜像,无错误,可仿真运行。 后来我用armv4i来编译,就会报错呢。 我的板是QQ2440V3的。已经装好了相应的bsp。 在安装pb5是也选择了支持2440的内容啊。 请各位高手指点。 书名 ...… 查看全部问答∨ |
EVC怎么读取SQLCE数据库中Image字段的数据,并通过一系列处理在控件上画出图形。 已经通过RDA将SQL SERVER2000 上的一个表数据下载到SQLCE 中,现在需要在应用程序中将表中的Image字段读出,并经过转化,转化为图像,显示出来。这个跟VC 中的好像不大一样,VC有getchunk等函数,EVC好像没有啊,还是我没找到?用EVC4.0开发,求助 ...… 查看全部问答∨ |
刚买了GT2440开发板,将USB转串口接笔记本上时,找不到驱动安装程序,不知道如何解决。而且连USB时也是这样。 我也知道win7在应用软件兼容性上没xp好,但是我装的是正版的,舍不得换! ...… 查看全部问答∨ |