Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
39fe3b45
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
39fe3b45
编写于
9月 01, 2013
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'regulator/topic/palmas' into regulator-next
上级
f27a5fb4
0416ea13
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
31 addition
and
12 deletion
+31
-12
Documentation/devicetree/bindings/regulator/palmas-pmic.txt
Documentation/devicetree/bindings/regulator/palmas-pmic.txt
+2
-2
drivers/regulator/palmas-regulator.c
drivers/regulator/palmas-regulator.c
+24
-6
include/linux/mfd/palmas.h
include/linux/mfd/palmas.h
+5
-4
未找到文件。
Documentation/devicetree/bindings/regulator/palmas-pmic.txt
浏览文件 @
39fe3b45
...
...
@@ -25,8 +25,8 @@ Optional nodes:
Additional custom properties are listed below.
For ti,palmas-pmic - smps12, smps123, smps3 depending on OTP,
smps45, smps457, smps7 depending on variant, smps6, smps[8-
10
],
l
do[1-9], ldoln, ldousb.
smps45, smps457, smps7 depending on variant, smps6, smps[8-
9
],
smps10_out2, smps10_out1,
do[1-9], ldoln, ldousb.
Optional sub-node properties:
ti,warm-reset - maintain voltage during warm reset(boolean)
...
...
drivers/regulator/palmas-regulator.c
浏览文件 @
39fe3b45
...
...
@@ -97,10 +97,15 @@ static const struct regs_info palmas_regs_info[] = {
.
ctrl_addr
=
PALMAS_SMPS9_CTRL
,
},
{
.
name
=
"SMPS10"
,
.
name
=
"SMPS10
_OUT2
"
,
.
sname
=
"smps10-in"
,
.
ctrl_addr
=
PALMAS_SMPS10_CTRL
,
},
{
.
name
=
"SMPS10_OUT1"
,
.
sname
=
"smps10-out2"
,
.
ctrl_addr
=
PALMAS_SMPS10_CTRL
,
},
{
.
name
=
"LDO1"
,
.
sname
=
"ldo1-in"
,
...
...
@@ -487,6 +492,8 @@ static struct regulator_ops palmas_ops_smps10 = {
.
set_voltage_sel
=
regulator_set_voltage_sel_regmap
,
.
list_voltage
=
regulator_list_voltage_linear
,
.
map_voltage
=
regulator_map_voltage_linear
,
.
set_bypass
=
regulator_set_bypass_regmap
,
.
get_bypass
=
regulator_get_bypass_regmap
,
};
static
int
palmas_is_enabled_ldo
(
struct
regulator_dev
*
dev
)
...
...
@@ -538,7 +545,8 @@ static int palmas_smps_init(struct palmas *palmas, int id,
return
ret
;
switch
(
id
)
{
case
PALMAS_REG_SMPS10
:
case
PALMAS_REG_SMPS10_OUT1
:
case
PALMAS_REG_SMPS10_OUT2
:
reg
&=
~
PALMAS_SMPS10_CTRL_MODE_SLEEP_MASK
;
if
(
reg_init
->
mode_sleep
)
reg
|=
reg_init
->
mode_sleep
<<
...
...
@@ -681,7 +689,8 @@ static struct of_regulator_match palmas_matches[] = {
{
.
name
=
"smps7"
,
},
{
.
name
=
"smps8"
,
},
{
.
name
=
"smps9"
,
},
{
.
name
=
"smps10"
,
},
{
.
name
=
"smps10_out2"
,
},
{
.
name
=
"smps10_out1"
,
},
{
.
name
=
"ldo1"
,
},
{
.
name
=
"ldo2"
,
},
{
.
name
=
"ldo3"
,
},
...
...
@@ -838,7 +847,8 @@ static int palmas_regulators_probe(struct platform_device *pdev)
continue
;
ramp_delay_support
=
true
;
break
;
case
PALMAS_REG_SMPS10
:
case
PALMAS_REG_SMPS10_OUT1
:
case
PALMAS_REG_SMPS10_OUT2
:
if
(
!
PALMAS_PMIC_HAS
(
palmas
,
SMPS10_BOOST
))
continue
;
}
...
...
@@ -872,7 +882,8 @@ static int palmas_regulators_probe(struct platform_device *pdev)
pmic
->
desc
[
id
].
id
=
id
;
switch
(
id
)
{
case
PALMAS_REG_SMPS10
:
case
PALMAS_REG_SMPS10_OUT1
:
case
PALMAS_REG_SMPS10_OUT2
:
pmic
->
desc
[
id
].
n_voltages
=
PALMAS_SMPS10_NUM_VOLTAGES
;
pmic
->
desc
[
id
].
ops
=
&
palmas_ops_smps10
;
pmic
->
desc
[
id
].
vsel_reg
=
...
...
@@ -882,7 +893,14 @@ static int palmas_regulators_probe(struct platform_device *pdev)
pmic
->
desc
[
id
].
enable_reg
=
PALMAS_BASE_TO_REG
(
PALMAS_SMPS_BASE
,
PALMAS_SMPS10_CTRL
);
pmic
->
desc
[
id
].
enable_mask
=
SMPS10_BOOST_EN
;
if
(
id
==
PALMAS_REG_SMPS10_OUT1
)
pmic
->
desc
[
id
].
enable_mask
=
SMPS10_SWITCH_EN
;
else
pmic
->
desc
[
id
].
enable_mask
=
SMPS10_BOOST_EN
;
pmic
->
desc
[
id
].
bypass_reg
=
PALMAS_BASE_TO_REG
(
PALMAS_SMPS_BASE
,
PALMAS_SMPS10_CTRL
);
pmic
->
desc
[
id
].
bypass_mask
=
SMPS10_BYPASS_EN
;
pmic
->
desc
[
id
].
min_uV
=
3750000
;
pmic
->
desc
[
id
].
uV_step
=
1250000
;
break
;
...
...
include/linux/mfd/palmas.h
浏览文件 @
39fe3b45
...
...
@@ -160,7 +160,8 @@ enum palmas_regulators {
PALMAS_REG_SMPS7
,
PALMAS_REG_SMPS8
,
PALMAS_REG_SMPS9
,
PALMAS_REG_SMPS10
,
PALMAS_REG_SMPS10_OUT2
,
PALMAS_REG_SMPS10_OUT1
,
/* LDO regulators */
PALMAS_REG_LDO1
,
PALMAS_REG_LDO2
,
...
...
@@ -355,9 +356,9 @@ struct palmas_pmic {
int
smps123
;
int
smps457
;
int
range
[
PALMAS_REG_SMPS10
];
unsigned
int
ramp_delay
[
PALMAS_REG_SMPS10
];
unsigned
int
current_reg_mode
[
PALMAS_REG_SMPS10
];
int
range
[
PALMAS_REG_SMPS10
_OUT1
];
unsigned
int
ramp_delay
[
PALMAS_REG_SMPS10
_OUT1
];
unsigned
int
current_reg_mode
[
PALMAS_REG_SMPS10
_OUT1
];
};
struct
palmas_resource
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录