当前位置:网站首页>一点点读懂regulator(二)
一点点读懂regulator(二)
2022-08-04 22:50:00 【szembed】
目录
本章我们介绍Regulator Driver Interface相关接口使用。The regulator driver interface相对简单,旨在允许Regulator Driver向核心框架注册其服务。代码实现在regulator/core.c中
1、Registration
驱动程序可以通过调用以下接口注册调节器:
struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
const struct regulator_config *config);
This will register the regulator’s capabilities and operations to the regulator core.
Regulators可以通过调用以下接口来unregister:
void regulator_unregister(struct regulator_dev *rdev);
2、Regulator Events
Regulators可以通过调用以下接口向consumer drivers发送事件(例如过热、欠压等):
int regulator_notifier_call_chain(struct regulator_dev *rdev,
unsigned long event, void *data);
要想被regulator_notifier_call_chain调用到,则需要相关模块来注册notifier_call_chain才行。core.c同样提供了注册和去注册接口
int regulator_register_notifier(struct regulator *regulator,
struct notifier_block *nb)
int regulator_unregister_notifier(struct regulator *regulator,
struct notifier_block *nb)
边栏推荐
猜你喜欢
随机推荐
一招包治pycharm DEBUG报错 UnicodeDecodeError: ‘utf-8‘ codec can‘t decode
边缘检测——(纯享版)
temp7777
祝福一路顺风
今天是七夕,来看看程序员的土味情话。
Shell编程之循环语句与函数的使用
得不到你的心,就用“分布式锁”锁住你的人
2022/8/3
Autowired autowiring
【无标题】
【3D建模制作技巧分享】ZBrush模型如何添加不同材质
Reconfigure the ffmpeg plugin in chrome
【模拟面试-10年工作】项目多一定是优势吗?
DREAMWEAVER8 part of the problem solution
后排乘客不系安全带?事故瞬间被甩出
typeScript-部分应用函数
PAN3020 Sub-1G无线收发芯片
1、网页结构
Deep Learning RNN Architecture Analysis
MySQL的JSON 数据类型2