我是靠谱客的博主 威武哈密瓜,最近开发中收集的这篇文章主要介绍arm remapping控制输入_arm 外设端口映射,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

/* 硬件相关的设置 */

/* Peri port setup

cpu: 外设 | 内存

cpu芯片手册上的外设是0x7000_0000 开始

所有这里告诉cpu ?

我可以骗 cpu 说是0x6000_0000 ?

*/

ldr r0, =0x70000000         @外设端口的地址 peripheral port memory remap register

orr r0, r0, #0x13           @r0=0x70000013

@ [31:12] base address: gives the physical base address of the region of memory

@ for remapping the peripheral port.

@ [11:5] UNP/SBZ

@ [4:0] size: indicates the size of the memory region that the peripheral port is remapped to

@ b10011 256M

mcr p15,0,r0,c15,c2,4       @ 256M(0x70000000-0x7fffffff)

需理解

电灯: 看原理图

最后

以上就是威武哈密瓜为你收集整理的arm remapping控制输入_arm 外设端口映射的全部内容,希望文章能够帮你解决arm remapping控制输入_arm 外设端口映射所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部