Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
07761baf
Commit
07761baf
authored
Jul 25, 2014
by
Mike Turquette
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-v3.17/ti-clk-driver' of github.com:t-kristo/linux-pm into clk-next-ti
parents
86be408b
94e72ae5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
MAINTAINERS
MAINTAINERS
+7
-0
drivers/clk/ti/clk-7xx.c
drivers/clk/ti/clk-7xx.c
+11
-0
No files found.
MAINTAINERS
View file @
07761baf
...
...
@@ -8997,6 +8997,13 @@ L: linux-pm@vger.kernel.org
S: Supported
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
M: Alex Dubov <oakad@yahoo.com>
S: Maintained
...
...
drivers/clk/ti/clk-7xx.c
View file @
07761baf
...
...
@@ -18,6 +18,7 @@
#define DRA7_DPLL_ABE_DEFFREQ 361267200
#define DRA7_DPLL_GMAC_DEFFREQ 1000000000
#define DRA7_DPLL_USB_DEFFREQ 960000000
static
struct
ti_dt_clk
dra7xx_clks
[]
=
{
...
...
@@ -327,5 +328,15 @@ int __init dra7xx_dt_clk_init(void)
if
(
rc
)
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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment