[linux thermal] cpufreq_cooling_device

/*************cpufreq冷却设备数据结构******************/
//源码路径kernel4.14/drivers/thermal/cpu_cooling.c
struct cpufreq_cooling_device {
	int id; //每个已注册的cpufreq_cooling_device都有一个id
	u32 last_load; //最近一次调用cpufreq_get_requested_power()时获得的cpu load,如下代码段(1)
	unsigned int cpufreq_state; //当前cpufreq冷却设备的冷却级别
	unsigned int clipped_freq; //
	unsigned int max_level; //最大冷却等级
	struct freq_table *freq_table;	/* In descending order */ //VF列表数据结构的指针,降序排列
	struct thermal_cooling_device *cdev; //与thermal绑定的冷却设备指针
	struct cpufreq_policy *policy; //cpufreq的策略
	struct list_head node;
	struct time_in_idle *idle_time;
	get_static_t plat_get_static_power; //获取静态功耗的回调函数
};


/*********************代码段(1)********************/
static int cpufreq_get_requested_power(struct thermal_cooling_device *cdev,
				       struct thermal_zone_device *tz,
				       u32 *power)
{
    //.......
	for_each_cpu(cpu, policy->related_cpus) {
		u32 load;

		if (cpu_online(cpu))
			load = get_load(cpufreq_cdev, cpu, i);
		else
			load = 0;

		total_load += load;
		if (load_cpu)
			load_cpu[i] = load;

		i++;
	}
    //.......
}

参考资料:cpu_cooling.c - drivers/thermal/cpu_cooling.c - Linux source code (v4.14.198) - Bootlin

【声明】本博文为个人学习笔记,仅供参考。转发请注明出处。如发现有误,还请不吝赐教,谢谢!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值