Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
979268cd
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
979268cd
编写于
11月 28, 2011
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branches 'regulator/topic/dt' and 'regulator/for-linus' into regulator-next
上级
12f457dd
7728c14a
ba305e31
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
49 addition
and
7 deletion
+49
-7
Documentation/devicetree/bindings/regulator/regulator.txt
Documentation/devicetree/bindings/regulator/regulator.txt
+5
-5
drivers/regulator/twl-regulator.c
drivers/regulator/twl-regulator.c
+44
-2
未找到文件。
Documentation/devicetree/bindings/regulator/regulator.txt
浏览文件 @
979268cd
...
...
@@ -32,15 +32,15 @@ its just seen as a special case of a regulator being a
consumer itself.
Example of a consumer device node (mmc) referencing two
regulators (twl
-reg1 and twl-
reg2),
regulators (twl
_reg1 and twl_
reg2),
twl
-
reg1: regulator@0 {
twl
_
reg1: regulator@0 {
...
...
...
};
twl
-
reg2: regulator@1 {
twl
_
reg2: regulator@1 {
...
...
...
...
...
@@ -49,6 +49,6 @@ regulators (twl-reg1 and twl-reg2),
mmc: mmc@0x0 {
...
...
vmmc-supply = <&twl
-
reg1>;
vmmcaux-supply = <&twl
-
reg2>;
vmmc-supply = <&twl
_
reg1>;
vmmcaux-supply = <&twl
_
reg2>;
};
drivers/regulator/twl-regulator.c
浏览文件 @
979268cd
...
...
@@ -71,6 +71,7 @@ struct twlreg_info {
#define VREG_TYPE 1
#define VREG_REMAP 2
#define VREG_DEDICATED 3
/* LDO control */
#define VREG_VOLTAGE_SMPS_4030 9
/* TWL6030 register offsets */
#define VREG_TRANS 1
#define VREG_STATE 2
...
...
@@ -514,6 +515,32 @@ static struct regulator_ops twl4030ldo_ops = {
.
get_status
=
twl4030reg_get_status
,
};
static
int
twl4030smps_set_voltage
(
struct
regulator_dev
*
rdev
,
int
min_uV
,
int
max_uV
,
unsigned
*
selector
)
{
struct
twlreg_info
*
info
=
rdev_get_drvdata
(
rdev
);
int
vsel
=
DIV_ROUND_UP
(
min_uV
-
600000
,
12500
);
twlreg_write
(
info
,
TWL_MODULE_PM_RECEIVER
,
VREG_VOLTAGE_SMPS_4030
,
vsel
);
return
0
;
}
static
int
twl4030smps_get_voltage
(
struct
regulator_dev
*
rdev
)
{
struct
twlreg_info
*
info
=
rdev_get_drvdata
(
rdev
);
int
vsel
=
twlreg_read
(
info
,
TWL_MODULE_PM_RECEIVER
,
VREG_VOLTAGE_SMPS_4030
);
return
vsel
*
12500
+
600000
;
}
static
struct
regulator_ops
twl4030smps_ops
=
{
.
set_voltage
=
twl4030smps_set_voltage
,
.
get_voltage
=
twl4030smps_get_voltage
,
};
static
int
twl6030ldo_list_voltage
(
struct
regulator_dev
*
rdev
,
unsigned
index
)
{
struct
twlreg_info
*
info
=
rdev_get_drvdata
(
rdev
);
...
...
@@ -856,6 +883,21 @@ static struct regulator_ops twlsmps_ops = {
}, \
}
#define TWL4030_ADJUSTABLE_SMPS(label, offset, num, turnon_delay, remap_conf) \
{ \
.base = offset, \
.id = num, \
.delay = turnon_delay, \
.remap = remap_conf, \
.desc = { \
.name = #label, \
.id = TWL4030_REG_##label, \
.ops = &twl4030smps_ops, \
.type = REGULATOR_VOLTAGE, \
.owner = THIS_MODULE, \
}, \
}
#define TWL6030_ADJUSTABLE_LDO(label, offset, min_mVolts, max_mVolts) { \
.base = offset, \
.min_mV = min_mVolts, \
...
...
@@ -947,8 +989,8 @@ static struct twlreg_info twl_regs[] = {
TWL4030_ADJUSTABLE_LDO
(
VINTANA2
,
0x43
,
12
,
100
,
0x08
),
TWL4030_FIXED_LDO
(
VINTDIG
,
0x47
,
1500
,
13
,
100
,
0x08
),
TWL4030_ADJUSTABLE_LDO
(
VIO
,
0x4b
,
14
,
1000
,
0x08
),
TWL4030_ADJUSTABLE_
LDO
(
VDD1
,
0x55
,
15
,
1000
,
0x08
),
TWL4030_ADJUSTABLE_
LDO
(
VDD2
,
0x63
,
16
,
1000
,
0x08
),
TWL4030_ADJUSTABLE_
SMPS
(
VDD1
,
0x55
,
15
,
1000
,
0x08
),
TWL4030_ADJUSTABLE_
SMPS
(
VDD2
,
0x63
,
16
,
1000
,
0x08
),
TWL4030_FIXED_LDO
(
VUSB1V5
,
0x71
,
1500
,
17
,
100
,
0x08
),
TWL4030_FIXED_LDO
(
VUSB1V8
,
0x74
,
1800
,
18
,
100
,
0x08
),
TWL4030_FIXED_LDO
(
VUSB3V1
,
0x77
,
3100
,
19
,
150
,
0x08
),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录