Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
cortex-A
rt-smart
[rt-smart] 对于armv7a 在mmu映射改变后的操作讨论
发布于 2021-07-02 17:24:24 浏览:1591
订阅该版
之前一直拿a核跑的rtthread,对mmu,tlb,cache没有太多深究。 这礼拜又仔细看了下相关文档,cortex-a PG,armv7架构手册这些,看到rt-smart源码这部分代码有些困惑 ```asm switch_mmu: orr r0, #0x18 mcr p15, 0, r0, c2, c0, 0 /* ttbr0 */ /* invalid tlb */ mov r0, #0 mcr p15, 0, r0, c8, c7, 0 mcr p15, 0, r0, c7, c5, 0 /* iciallu */ mcr p15, 0, r0, c7, c5, 6 /* bpiall */ dsb isb mov pc, lr ``` 似乎进程切换会调用switch_mmu,而这里会清除整个icache。我在我的平台测试过,L1 hit时一条简单指令执行可能需要十个cycle,而如果L1 L2 全部miss可能就需要上百个cycle,在实际项目中就可能导致中断执行时间的不确定,控制的电机抖动等后果 而我从arm的手册看到 icache cortex a8 a9 a7 已经采用vipt ,a15已经是pipt,似乎不需要软件进行维护, PG上的原话是 > Early ARM processors such as the ARM720T or > ARM926EJ-S processors used virtual addresses to provide both the index and tag values. This > has the advantage that the core can do a cache look-up without the need for a virtual to physical > address translation. The drawback is that changing the virtual to physical mappings in the > system means that the cache must first be cleaned and invalidated, and this can have a significant > performance impact. Invalidating and cleaning cache memory on page 8-17 goes into more > detail about these terms > ARM11 family processors use a different cache tag scheme. Here, the cache index is still > derived from a virtual address, but the tag is taken from the physical address. The advantage of > a physical tagging scheme is that changes in virtual to physical mappings do not now require > the cache to be invalidated. This can have significant benefits for complex multi-tasking > operating systems that can frequently modify translation table mappings. Using a virtual index > has some hardware advantages. It means that the cache hardware can read the tag value from > the appropriate line in each way in parallel without actually performing the virtual to physical > address translation, giving a fast cache response. Such a cache is often described as Virtually > Indexed, Physically Tagged (VIPT). Cache properties of Cortex-A series processors, including > the use of these tagged caches are given in Table 8-1. Other properties of the Cortex-A series > processors are listed in Table 2-3 on page 2-9. 早期的 ARM 处理器(例如 ARM720T 或 ARM926EJ-S 处理器)使用虚拟地址来提供索引和标记值。 这样做的优点是内核可以进行高速缓存查找,而无需进行虚拟到物理地址的转换。 缺点是更改系统中的虚拟到物理映射意味着必须首先清除缓存并使缓存失效,这会对性能产生重大影响。 ARM11 系列处理器使用不同的缓存标记方案。 在这里,缓存索引仍然来自虚拟地址,但标签来自物理地址。 物理标记方案的优点是虚拟到物理映射的更改现在不需要缓存失效。 这对于可以频繁修改转换表映射的复杂多任务操作系统具有显着优势。 使用虚拟索引有一些硬件优势。 这意味着缓存硬件可以并行地从每条路径中读取标签值,而无需实际执行虚拟到物理地址的转换,从而提供快速的缓存响应。 这种缓存通常被描述为虚拟索引、物理标记 (VIPT)。 我的理解是软件只需要解决vipt不同虚拟地址映射同一物理地址时数据不统一的问题(简单处理的话共享内存mmu不设置cache属性) 同样的,对于是否要清除tlb似乎也可以优化,通过nG,asid的合理设置。实际工程要用到的进程也不需要太多 不知道我的理解是不是有问题,如果我对的话rt-smart是否有后续的优化计划?
查看更多
shjic
2021-07-03
这家伙很懒,什么也没写!
你说的是对的,vipt只要小心安排虚拟地址就可以, 而且目前用户态也并没有使用nG, 导致在切进程时需要invalid tlb, 这一部分是可以优化的, 下一步是会做这方面的优化工作.
2
个回答
默认排序
按发布时间排序
小鳄鱼
2021-07-03
rt-thread脑残粉
大佬,我看了下 cortex-a7和cortex-a53的手册,发现Icache使用的是VIPT, Dcache使用的是PIPT, cortex-a72好像全部采用PIPT(`没看到VIPT的影子`)。
撰写答案
登录
注册新账号
关注者
0
被浏览
1.6k
关于作者
按时计划
这家伙很懒,什么也没写!
提问
3
回答
3
被采纳
1
关注TA
发私信
相关问题
1
Cortex-A+M共通的版本
2
rk3308 armv8a多核有没有推荐的参考移植模版
3
请问有没有支持arm A7的移植案例。
4
将rt-thread移植到sama5d2上从现有的哪个板子入手比较接近?
5
undefined instruction 错误
6
Zynq7000的Rt-thread移植
7
请问rtthread移植cortex-a7多核的参考案例有吗?
8
GIC 默认使用group0,需要处理器进入secure状态才可以访问么?
9
Cortex-A7, 如果使用结构体直接赋值,或者memcpy,CPU就崩溃
10
关于cortex-a9多核情况下interrupt_disable定义
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
8
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
KunYi
6
个答案
1
次被采纳
本月文章贡献
程序员阿伟
5
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部