我是靠谱客的博主 典雅大山,最近开发中收集的这篇文章主要介绍一点点读懂regulator(二)1、Registration​​​​​​​2、Regulator Events,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

目录

1、Registration

2、Regulator Events


本章我们介绍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)
 

最后

以上就是典雅大山为你收集整理的一点点读懂regulator(二)1、Registration​​​​​​​2、Regulator Events的全部内容,希望文章能够帮你解决一点点读懂regulator(二)1、Registration​​​​​​​2、Regulator Events所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(71)

评论列表共有 0 条评论

立即
投稿
返回
顶部