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
3c67d116
Commit
3c67d116
authored
Jul 11, 2016
by
Michael Turquette
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'clk-sunxi-ng' into clk-next
parents
7adb7695
f38f5199
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
255 deletions
+63
-255
arch/arm/boot/dts/sun8i-h3.dtsi
arch/arm/boot/dts/sun8i-h3.dtsi
+60
-252
drivers/clk/sunxi-ng/Kconfig
drivers/clk/sunxi-ng/Kconfig
+1
-1
drivers/clk/sunxi-ng/ccu-sun8i-h3.c
drivers/clk/sunxi-ng/ccu-sun8i-h3.c
+2
-2
No files found.
arch/arm/boot/dts/sun8i-h3.dtsi
View file @
3c67d116
This diff is collapsed.
Click to expand it.
drivers/clk/sunxi-ng/Kconfig
View file @
3c67d116
...
@@ -60,6 +60,6 @@ config SUN8I_H3_CCU
...
@@ -60,6 +60,6 @@ config SUN8I_H3_CCU
select SUNXI_CCU_NM
select SUNXI_CCU_NM
select SUNXI_CCU_MP
select SUNXI_CCU_MP
select SUNXI_CCU_PHASE
select SUNXI_CCU_PHASE
default
AR
CH_SUN8I
default
MA
CH_SUN8I
endif
endif
drivers/clk/sunxi-ng/ccu-sun8i-h3.c
View file @
3c67d116
...
@@ -817,8 +817,8 @@ static void __init sun8i_h3_ccu_setup(struct device_node *node)
...
@@ -817,8 +817,8 @@ static void __init sun8i_h3_ccu_setup(struct device_node *node)
/* Force the PLL-Audio-1x divider to 4 */
/* Force the PLL-Audio-1x divider to 4 */
val
=
readl
(
reg
+
SUN8I_H3_PLL_AUDIO_REG
);
val
=
readl
(
reg
+
SUN8I_H3_PLL_AUDIO_REG
);
val
&=
~
GENMASK
(
4
,
0
);
val
&=
~
GENMASK
(
19
,
16
);
writel
(
val
|
3
,
reg
+
SUN8I_H3_PLL_AUDIO_REG
);
writel
(
val
|
(
3
<<
16
)
,
reg
+
SUN8I_H3_PLL_AUDIO_REG
);
sunxi_ccu_probe
(
node
,
reg
,
&
sun8i_h3_ccu_desc
);
sunxi_ccu_probe
(
node
,
reg
,
&
sun8i_h3_ccu_desc
);
}
}
...
...
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