Documentation\cpu-freq\core.txt

2024-06-22 07:48
文章标签 core cpu txt freq documentation

本文主要是介绍Documentation\cpu-freq\core.txt,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

    如果想评论或更新本文的内容,请直接联系原文档的维护者。

如果你使用英文交流有困难的话,也可以向中文版维护者求助。

如果本翻译更新不及时或者翻译存在问题,请联系中文版维护者。

中文版维护者: 陶莹莉  tyl18768122426@163.com

中文版翻译者:  陶莹莉  tyl18768122426@163.com

中文版校译者:  陶莹莉  tyl18768122426@163.com

 

 CPU frequency and voltage scaling code in the Linux(TM) kernel
  在Linux(TM)内核的CPU频率和缩放代码

           L i n u x    C P U F r e q

     C P U F r e q    C o r e


      Dominik Brodowski  <linux@brodo.de>
       David Kimdon <dwhedon@debian.org>

 

   Clock scaling allows you to change the clock speed of the CPUs on the
    fly. This is a nice method to save battery power, because the lower
            the clock speed, the less power the CPU consumes.

 时钟分频,可以让你改变CPU的时钟飞逝速度。这是一个很好的节省电池电量方法,因为
           时钟速度越低,CPU消耗功率越少。
Contents:
---------
1.  CPUFreq core and interfaces
2.  CPUFreq notifiers

1. General Information

=======================
目录:
---------
1.CPUFreq的核心和接口
2.CPUFreq通知

1.一般信息
=======================

The CPUFreq core code is located in drivers/cpufreq/cpufreq.c. This
cpufreq code offers a standardized interface for the CPUFreq
architecture drivers (those pieces of code that do actual
frequency transitions), as well as to "notifiers". These are device
drivers or other part of the kernel that need to be informed of
policy changes (ex. thermal modules like ACPI) or of all
frequency changes (ex. timing code) or even need to force certain
speed limits (like LCD drivers on ARM architecture). Additionally, the
kernel "constant" loops_per_jiffy is updated on frequency changes
here.

CPUFreq的核心代码位于drivers/cpufreq/cpufreq.c。CPU频率代码为CPUFreq
架构驱动程序提供了一个标准化接口(这部分代码,实际一直在做频率转换),
以及“通知”。这些设备驱动程序或其他内核的一部分,需要被告知策略的变化
(例如热模块,如ACPI)或频率的变化(例如:计时码),甚至需要强制某些
速度限制(如LCD驱动器在ARM架构)。此外,该内核“常数”loops_per_jiffy在频繁的更新变化。

Reference counting is done by cpufreq_get_cpu and cpufreq_put_cpu,
which make sure that the cpufreq processor driver is correctly
registered with the core, and will not be unloaded until
cpufreq_put_cpu is called.
引用计数由cpufreq_get_cpu 和cpufreq_put_cpu完成,确保CPU频率的处理器驱动程序是正确
被注册到核心的,并且不会被卸载,直到被称cpufreq_put_cpu调用。

2. CPUFreq notifiers
====================
2.CPUFreq 通知
====================
CPUFreq notifiers conform to the standard kernel notifier interface.
See linux/include/linux/notifier.h for details on notifiers.

CPUFreq通知程序符合标准内核通知接口。
详细信息请参阅linux/include/linux/notifier.h。

There are two different CPUFreq notifiers - policy notifiers and
transition notifiers.

有两种不同的CPUFreq通知 - 策略通知和过渡通知。

2.1 CPUFreq policy notifiers
----------------------------
2.1 CPUFreq 策略通知
----------------------------

These are notified when a new policy is intended to be set. Each
CPUFreq policy notifier is called three times for a policy transition:

1.) During CPUFREQ_ADJUST all CPUFreq notifiers may change the limit if
    they see a need for this - may it be thermal considerations or
    hardware limitations.

2.) During CPUFREQ_INCOMPATIBLE only changes may be done in order to avoid
    hardware failure.

3.) And during CPUFREQ_NOTIFY all notifiers are informed of the new policy
   - if two hardware drivers failed to agree on a new policy before this
   stage, the incompatible hardware shall be shut down, and the user
   informed of this.
  
当一个新策略的打算实施时需要通知。为了策略的过渡,每个CPUFreq策略通知会被调用三次:
1)在CPUFREQ调整期间,所有的CPUFreq通知可能会改变限制,如果
    他们认为这一点有必要 - 这可能出于导热的考虑或硬件的限制。

2)在CPUFREQ不兼容时,可能做些改变,以避免硬件故障。

3)在CPUFREQ通知时,所有通知会被告知新的策略
    - 如果两个硬件驱动程序在此之前未能达成了新的政策,这个不兼容的硬件应该关机,用户会被
   通知这个。
  
The phase is specified in the second argument to the notifier.

The third argument, a void *pointer, points to a struct cpufreq_policy
consisting of five values: cpu, min, max, policy and max_cpu_freq. min
and max are the lower and upper frequencies (in kHz) of the new
policy, policy the new policy, cpu the number of the affected CPU; and
max_cpu_freq the maximum supported CPU frequency. This value is given
for informational purposes only.

这个阶段被指定为通知的第二个参数。

第三个参数是void *指针,指向一个cpufreq_policy的结构体,包括五个值:CPU,
最小值,最大值,策略和最大CPU频率的。最小和最大是新
方针频率(千赫)的下限和上限,实现新策略,CPU数量会影响CPU ;
最大CPU频率是支持的最大CPU频率。这个值仅供参考。
2.2 CPUFreq transition notifiers
--------------------------------

These are notified twice when the CPUfreq driver switches the CPU core
frequency and this change has any external implications.

The second argument specifies the phase - CPUFREQ_PRECHANGE or
CPUFREQ_POSTCHANGE.

2.2 CPUFreq过渡通知
这些都是通知两次当cpufreq驱动CPU核心频率而这种变化有对任何外部有影响。

第二个参数指定的阶段是 CPUFREQ_PRECHANGE或CPUFREQ_POSTCHANGE。

The third argument is a struct cpufreq_freqs with the following
values:
cpu - number of the affected CPU
old - old frequency
new - new frequency
CPUFREQ_POSTCHANGE。
第三个参数是一个结构体类型的cpufreq_freqs,含有以下的值:
CPU -受影响的CPU数量
old- 旧频率
new - 新频率
CPUFREQ_POSTCHANGE。

If the cpufreq core detects the frequency has changed while the system
was suspended, these notifiers are called with CPUFREQ_RESUMECHANGE as
second argument.
如果CPU频率核心检测的频率发生了变化,但被系统禁止,这些通知会被称为CPUFREQ_RESUMECHANGE作为
第二个参数。

这篇关于Documentation\cpu-freq\core.txt的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1083694

相关文章

Android如何获取当前CPU频率和占用率

《Android如何获取当前CPU频率和占用率》最近在优化App的性能,需要获取当前CPU视频频率和占用率,所以本文小编就来和大家总结一下如何在Android中获取当前CPU频率和占用率吧... 最近在优化 App 的性能,需要获取当前 CPU视频频率和占用率,通过查询资料,大致思路如下:目前没有标准的

Go使用pprof进行CPU,内存和阻塞情况分析

《Go使用pprof进行CPU,内存和阻塞情况分析》Go语言提供了强大的pprof工具,用于分析CPU、内存、Goroutine阻塞等性能问题,帮助开发者优化程序,提高运行效率,下面我们就来深入了解下... 目录1. pprof 介绍2. 快速上手:启用 pprof3. CPU Profiling:分析 C

Python3脚本实现Excel与TXT的智能转换

《Python3脚本实现Excel与TXT的智能转换》在数据处理的日常工作中,我们经常需要将Excel中的结构化数据转换为其他格式,本文将使用Python3实现Excel与TXT的智能转换,需要的可以... 目录场景应用:为什么需要这种转换技术解析:代码实现详解核心代码展示改进点说明实战演练:从Excel到

MySQL的cpu使用率100%的问题排查流程

《MySQL的cpu使用率100%的问题排查流程》线上mysql服务器经常性出现cpu使用率100%的告警,因此本文整理一下排查该问题的常规流程,文中通过代码示例讲解的非常详细,对大家的学习或工作有一... 目录1. 确认CPU占用来源2. 实时分析mysql活动3. 分析慢查询与执行计划4. 检查索引与表

使用Python检查CPU型号并弹出警告信息

《使用Python检查CPU型号并弹出警告信息》本教程将指导你如何编写一个Python程序,该程序能够在启动时检查计算机的CPU型号,如果检测到CPU型号包含“I3”,则会弹出一个警告窗口,感兴趣的小... 目录教程目标方法一所需库步骤一:安装所需库步骤二:编写python程序步骤三:运行程序注意事项方法二

Python按条件批量删除TXT文件行工具

《Python按条件批量删除TXT文件行工具》这篇文章主要为大家详细介绍了Python如何实现按条件批量删除TXT文件中行的工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1.简介2.运行效果3.相关源码1.简介一个由python编写android的可根据TXT文件按条件批

Python脚本:TXT文档行数统计

count = 0 #计数变量file_dirs = input('请输入您要统计的文件根路径:')filename = open(file_dirs,'r') #以只读方式打开文件file_contents = filename.read() #读取文档内容到file_contentsfor file_content in file_contents:

Java程序到CPU上执行 的步骤

相信很多的小伙伴在最初学习编程的时候会容易产生一个疑惑❓,那就是编写的Java代码究竟是怎么一步一步到CPU上去执行的呢?CPU又是如何执行的呢?今天跟随小编的脚步去化解开这个疑惑❓。 在学习这个过程之前,我们需要先讲解一些与本内容相关的知识点 指令 指令是指导CPU运行的命令,主要由操作码+被操作数组成。 其中操作码用来表示要做什么动作,被操作数是本条指令要操作的数据,可能是内存地址,也

mysql中导入txt文件数据的操作指令

1 表tt的格式:    CREATE TABLE `tt` (   `ind` int NOT NULL auto_increment,   `name` char(100) default NULL,   PRIMARY KEY  (`ind`)  )   2 文件d.txt的内容示例:  1,a  2,b  3,c

win10不用anaconda安装tensorflow-cpu并导入pycharm

记录一下防止忘了 一、前提:已经安装了python3.6.4,想用tensorflow的包 二、在pycharm中File-Settings-Project Interpreter点“+”号导入很慢,所以直接在cmd中使用 pip install -i https://mirrors.aliyun.com/pypi/simple tensorflow-cpu下载好,默认下载的tensorflow