Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
07761baf
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
07761baf
编写于
7月 25, 2014
作者:
M
Mike Turquette
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-v3.17/ti-clk-driver' of github.com:t-kristo/linux-pm into clk-next-ti
上级
86be408b
94e72ae5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
18 addition
and
0 deletion
+18
-0
MAINTAINERS
MAINTAINERS
+7
-0
drivers/clk/ti/clk-7xx.c
drivers/clk/ti/clk-7xx.c
+11
-0
未找到文件。
MAINTAINERS
浏览文件 @
07761baf
...
@@ -8997,6 +8997,13 @@ L: linux-pm@vger.kernel.org
...
@@ -8997,6 +8997,13 @@ L: linux-pm@vger.kernel.org
S: Supported
S: Supported
F: drivers/thermal/ti-soc-thermal/
F: drivers/thermal/ti-soc-thermal/
TI CLOCK DRIVER
M: Tero Kristo <t-kristo@ti.com>
L: linux-omap@vger.kernel.org
S: Maintained
F: drivers/clk/ti/
F: include/linux/clk/ti.h
TI FLASH MEDIA INTERFACE DRIVER
TI FLASH MEDIA INTERFACE DRIVER
M: Alex Dubov <oakad@yahoo.com>
M: Alex Dubov <oakad@yahoo.com>
S: Maintained
S: Maintained
...
...
drivers/clk/ti/clk-7xx.c
浏览文件 @
07761baf
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
#define DRA7_DPLL_ABE_DEFFREQ 361267200
#define DRA7_DPLL_ABE_DEFFREQ 361267200
#define DRA7_DPLL_GMAC_DEFFREQ 1000000000
#define DRA7_DPLL_GMAC_DEFFREQ 1000000000
#define DRA7_DPLL_USB_DEFFREQ 960000000
static
struct
ti_dt_clk
dra7xx_clks
[]
=
{
static
struct
ti_dt_clk
dra7xx_clks
[]
=
{
...
@@ -327,5 +328,15 @@ int __init dra7xx_dt_clk_init(void)
...
@@ -327,5 +328,15 @@ int __init dra7xx_dt_clk_init(void)
if
(
rc
)
if
(
rc
)
pr_err
(
"%s: failed to configure GMAC DPLL!
\n
"
,
__func__
);
pr_err
(
"%s: failed to configure GMAC DPLL!
\n
"
,
__func__
);
dpll_ck
=
clk_get_sys
(
NULL
,
"dpll_usb_ck"
);
rc
=
clk_set_rate
(
dpll_ck
,
DRA7_DPLL_USB_DEFFREQ
);
if
(
rc
)
pr_err
(
"%s: failed to configure USB DPLL!
\n
"
,
__func__
);
dpll_ck
=
clk_get_sys
(
NULL
,
"dpll_usb_m2_ck"
);
rc
=
clk_set_rate
(
dpll_ck
,
DRA7_DPLL_USB_DEFFREQ
/
2
);
if
(
rc
)
pr_err
(
"%s: failed to set USB_DPLL M2 OUT
\n
"
,
__func__
);
return
rc
;
return
rc
;
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录