当前位置:网站首页>Armv8-a programming guide MMU (2)
Armv8-a programming guide MMU (2)
2022-07-06 10:58:00 【Linux decoder】
1.1 TLB
TLB yes MMU Cache of recently accessed page transformations in . For each memory access of the processor ,MMU Check TLB Whether the conversion is cached . If the requested address translation is TLB Hit in the middle , Address translation is effective immediately .
Every TLB Items usually contain more than physical and virtual addresses , It also contains attributes such as memory type ,cache Strategy , Access right ,ASID, and VMID. If TLB Does not contain a valid translation of the virtual address issued by the processor (TLB Not hit ), Issue an external conversion table walk Or transform table lookup .MMU The hardware in makes it read the conversion table in memory . If the conversion table walk Did not lead to page fault, The newly loaded transformation may be cached in TLB in .TLB The specific structure of is based on ARM There are differences in the implementation of processors .
If OS Revised TLB Cached transformation table entries in ,OS Responsible for invalidation stale TLB term .
When executed A64 Code ,TLBI by TLB Invalidation instructions .
TLBI <type><level>{IS}{,<Xt>}The following list give type Some public choices for domains .
ALL all TLB term
VMALL all TLB term . At present guest OS Of stage1
VMALLS12 all TLB term . At present guest OS Of stage1 and stage2
ASID stay Xt Match ASID term
VA Xt in VA and ASID Specified item
VAA Xt in VA Specified item , arbitrarily ASID
EL3,EL2,EL1 The exception level operation of is applied to its own virtual address space .IS The domain indicates that this applies only to inner shareable term .
NOTE: see Context Switching About ASID And transformation table configuration .
<level> The domain simply indicates the exception level virtual address space of the operation application .
IS The field indicates that this is only for inner shareable term .
| TLB Invalidate command | Parameters | describe |
| ALLEn | TLB Invalidate all ,ELn | |
| ALLEnIS | TLB Invalidate all ,ELn,inner shareable | |
| ASIDE1 | adopt ASID Of TLB To invalidate ,EL1 | |
| ASIDE1IS | adopt ASID Of TLB To invalidate ,EL1,inner shareable | |
| IPAS2E1 | adopt IPA Of TLB To invalidate ,stage2,EL1 | |
| IPAS2E1IS | adopt IPA Of TLB To invalidate ,stage2,EL1,inner shareable | |
| VAAE1 | adopt VA Of TLB To invalidate , all ASID,EL1 | |
| VAAE1IS | adopt VA Of TLB To invalidate , all ASID,EL1,inner shareable | |
| VAALE1IS | adopt VA The last level of TLB To invalidate , all ASID,EL1,inner shareable | |
| VAEn | adopt VA Of TLB To invalidate ,ELn | |
| VAEnIS | adopt VA Of TLB To invalidate ,ELn,inner shareable | |
| VALEn | adopt VA The last level of TLB To invalidate ,ELn | |
| VALEnIS | adopt VA The last level of TLB To invalidate ,ELn,inner shareable | |
| VMALLE1 | adopt VMID Of TLB To invalidate ,stage1, EL1 | |
| VMALLE1IS | adopt VMID Of TLB To invalidate ,stage1, EL1,inner shareable | |
| VMALLS12E1 | adopt VMID Of TLB To invalidate ,stage1 and stage2,EL1 | |
| VMALLS12E1IS | adopt VMID Of TLB To invalidate ,stage1 and stage2,EL1,inner shareable |
The following code example shows writing a code by inner shareable Timing of memory post conversion table :
<writes to translation tables>
DSB ISHST
TLBI ALLE1
DSB ISH
ISBsuch as , Modify the conversion table entry , Use instruction :
TLBI VAE1,X0This will invalidate X0 Register specified address related conversion table entry .
TLB The conversion table items that can be cached are fixed . You can minimize the external memory access caused by conversion table traversal and get higher TLB Hit rate to get higher performance .ARMv8-A Architecture provides contiguous block Features to use effectively TLB Space . Each conversion table block Item contains one contiguous position . When setting , This bit tells TLB It can cache only one table item to cover multiple block. Find and index one at a time contigous Address range covered by the block . therefore TLB You can cache a table entry with a defined address range , Enable it to TLB Store a wider range of virtual addresses in .
In order to use contiguous position , These continuous block Must be connected , That is, they must be related to the continuous range of virtual addresses . They must start at the aligned boundary , Consistent properties , And point to the continuous output address range of the same level of conversion . The required alignment is 4KB Granular VA[20:16] or 64KB Granular VA[28:21] For all addresses the same . The following requirements :
(1)16*4KB The connected blocks give 4KB Granular 64KB term ;
(2)32*32MB The connected blocks give L2 Descriptors 1GB Table item ,128*16KB Give when using 16KB when L3 Descriptors 2MB Table item ;
(3)32*64KB The connected blocks give 64KB Granular 2MB Table item .
If these conditions are met , A program error occurs , This can lead to TLB abort Or look for a run . These errors include :
(1) One or more table entries do not contain contiguous position ;
(2) The output of one of the entries exceeds the alignment range .
about ARMv8 framework , Wrong use is not allowed EL0 and EL1 Check the permissions of valid address range , or EL3 Wrong access to space .
边栏推荐
- Win10: how to modify the priority of dual network cards?
- [Thesis Writing] how to write function description of jsp online examination system
- CSDN question and answer tag skill tree (II) -- effect optimization
- CSDN question and answer module Title Recommendation task (I) -- Construction of basic framework
- SSM integrated notes easy to understand version
- MySQL27-索引优化与查询优化
- Nanny hand-in-hand teaches you to write Gobang in C language
- MySQL18-MySQL8其它新特性
- MySQL master-slave replication, read-write separation
- Timestamp with implicit default value is deprecated error in MySQL 5.6
猜你喜欢

Mysql30 transaction Basics

Generate PDM file from Navicat export table

CSDN问答模块标题推荐任务(一) —— 基本框架的搭建

csdn-Markdown编辑器

Csdn-nlp: difficulty level classification of blog posts based on skill tree and weak supervised learning (I)
![[Thesis Writing] how to write function description of jsp online examination system](/img/f8/13144e0febf4a576bbcc3290192079.jpg)
[Thesis Writing] how to write function description of jsp online examination system

CSDN博文摘要(一) —— 一个简单的初版实现

MySQL21-用戶與權限管理

【博主推荐】C#生成好看的二维码(附源码)

CSDN question and answer module Title Recommendation task (II) -- effect optimization
随机推荐
February 13, 2022-2-climbing stairs
CSDN问答模块标题推荐任务(一) —— 基本框架的搭建
frp内网穿透那些事
A brief introduction to the microservice technology stack, the introduction and use of Eureka and ribbon
Timestamp with implicit default value is deprecated error in MySQL 5.6
CSDN question and answer tag skill tree (I) -- Construction of basic framework
CSDN问答标签技能树(一) —— 基本框架的构建
windows无法启动MYSQL服务(位于本地计算机)错误1067进程意外终止
Opencv uses freetype to display Chinese
[Thesis Writing] how to write function description of jsp online examination system
Baidu Encyclopedia data crawling and content classification and recognition
Global and Chinese markets of static transfer switches (STS) 2022-2028: Research Report on technology, participants, trends, market size and share
CSDN问答模块标题推荐任务(二) —— 效果优化
MySQL master-slave replication, read-write separation
Mysql24 index data structure
Mysql35 master slave replication
[BMZCTF-pwn] 12-csaw-ctf-2016-quals hungman
NPM an error NPM err code enoent NPM err syscall open
MySQL主从复制、读写分离
A brief introduction to the microservice technology stack, the introduction and use of Eureka and ribbon