gpt4 book ai didi

ARM sleep 模式进入和退出差异WFE、WFI

转载 作者:行者123 更新时间:2023-12-02 03:28:26 25 4
gpt4 key购买 nike

我对 ARM 架构相当陌生,我正在尝试了解唤醒机制。

首先,我发现很难找到这方面的好信息。 ARM 的文档似乎对该主题非常简洁。

我想了解的是皮质(特别是我正在使用的 M0)何时会醒来。

作为引用,我还查阅了以下内容:

WFE 说明的文档是:

    3.7.11. WFE
Wait For Event.
Syntax
WFE
Operation
If the event register is 0, WFE suspends execution until
one of the following events occurs:
an exception, unless masked by the exception mask registers or the current
priority level
an exception enters the Pending state, if SEVONPEND in the
System Control Register is set
a Debug Entry request, if debug is enabled
an event signaled by a peripheral or another processor in a
multiprocessor system using the SEV instruction.
If the event register is 1, WFE clears it to 0 and completes immediately.
For more information see Power management.
Note
WFE is intended for power saving only. When writing software assume
that WFE might behave as NOP.
Restrictions
There are no restrictions.
Condition flags
This instruction does not change the flags.
Examples
WFE ; Wait for event

世界金融协会:

    3.7.12. WFI
Wait for Interrupt.
Syntax
WFI
Operation
WFI suspends execution until one of the following events occurs:
an exception
an interrupt becomes pending, which would preempt if PRIMASK was clear
a Debug Entry request, regardless of whether debug is enabled.
Note
WFI is intended for power saving only. When writing software assume
that WFI might behave as a NOP operation.
Restrictions
There are no restrictions.
Condition flags
This instruction does not change the flags.
Examples
WFI ; Wait for interrupt

所以,有一些问题:

1)首先,有人可以澄清一下以下之间的区别:

a) 系统处理程序优先级寄存器

b) 中断优先级寄存器。难道 b) 用于与系统无关的中断,例如 pendSv?

现在来看一些场景。我真的很想了解这些场景是如何由以下因素控制的:NVIC 中断请求使能NVIC 待定PRIMASK

影响WFE和WFI的进出。

因此这些位的各种组合会产生 8 种不同的场景{NVIC_IRQ 启用、NVIC 待定、PRIMASK}。

我已经补充了目前为止我的模糊理解。请帮我整理一下这张 table 。

  • 000 - 不阻止 WFE 或 WFI 进入,但也没有唤醒条件
  • 001 - 作为 000
  • 010 - 挂起如何影响 WFE 和 WFI 进入休眠模式?
  • 011 - 我猜这里的答案是 010,但唤醒条件可能不同?
  • 100 - 我猜 WFE 和 WFI 进入低功耗模式和退出低功耗模式都没有问题。
  • 101 - WFE 和 WFI 电源模式在此处退出有什么区别吗?
  • 110 - 不知道!
  • 111 - 不知道!

我在这里排除了优先级,因为我还不太关心异常处理顺序。

排除 SEV 和事件信号,如果 SEVONPEND 为 0,WFE 的行为是否与 WFI 相同?

最佳答案

您将在 Cortex-M 上看到的主要唤醒机制是中断,即 WFI(等待中断)。在我见过的所有实现中,都会导致内核时钟门控,尽管如果设计支持的话,有时可以使用更深的 sleep /更高的延迟模式。

WFE 在多处理器设计中更为相关。

关于问题 -1. Cortex-M 中的中断和系统处理程序非常相似,主要区别在于它们的触发方式。它们之间的架构有所区别,但实际上它们是相同的。

用于您的位表,它们实际上没有意义。每个 Cortex-M 实现对 WFI 期间发生的情况都有自己的解释。它可以从基本时钟门控到深度 sleep 模式有所不同。有关真实情况,请参阅微处理器文档。

PRIMASK 不会影响从 sleep 行为中唤醒。

关于 ARM sleep 模式进入和退出差异WFE、WFI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27188807/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com