快速连接
👉👉👉【精选】ARMv8/ARMv9架构入门到精通-目录 👈👈👈
1、异步异常的类型
系统中有哪些异步异常(中断)?
官方文档原话 :In the Armv8-A architecture, asynchronous exceptions that are taken to AArch64 state are also known as interrupts.
谁要是再说中断就是:FIQ、IRQ谁就是小乌龟
正确的说法应该是:产生到aarch64的异步异常(包括IRQ, FIQ, SError) 可看作中断
那么异步异常都包含哪些呢?
其实主要就是:irq, fiq, SError
Physical interrupts Are signals sent to the PE from outside the PE. They are:
- SError. System Error.
- IRQ.
- FIQ.
Virtual interrupts Are interrupts that software executing at EL2 can enable and make pending. A virtual interrupt is taken from EL0 or EL1 to EL1. Virtual interrupts have names that correspond to the physical interrupts:
- vSError.
- vIRQ.
- vFIQ
2、异步异常的路由(routing)
3、异步异常的屏蔽(MASK)
在PSTATE中,A/I/F比特分别可以对SError、IRQ、FIQ进行MASK
- SError : PSTATE.A
- IRQ : PSTATE.I
- FIQ : PSTATE.F
但是在有些场景下,MASK将会失效,如在一些中断被强制target到EL3的配置下,中断的taken就不在关系PSTATE的mask位了。
以下表格做出了详细的说明:
其中:
- A 表示 中断的taken 将忽略 PSTATE的MASK位
- B 表示 中断的taken 不会忽略 PSTATE的MASK位,如果MASK了,就不会taken了。
- C 表示 中断不会被
- A/B是 描述serror且和
FEAT_DoubleFault
相关的,暂不介绍
关注"Arm精选"公众号,备注进ARM交流讨论区。