-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'sunxi-clk-for-5.2' of https://git.kernel.org/pub/scm/linux…
…/kernel/git/sunxi/linux into clk-allwinner Pull Allwinner clk driver updates from Maxime Ripard: Our usual bunch of changes, this time, it's mainly: - Export a new clock for the MBUS controller on the A13 - H6 fixes to support a finer clocking of the video and VPU engines - Add some Kconfig options - Some bit offset fixes * tag 'sunxi-clk-for-5.2' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux: clk: sunxi-ng: sun5i: Export the MBUS clock clk: sunxi-ng: a83t: Add pll-video0 as parent of csi-mclk clk: sunxi-ng: h6: Allow video & vpu clocks to change parent rate clk: sunxi-ng: h6: Preset hdmi-cec clock parent clk: sunxi: Add Kconfig options clk: sunxi-ng: f1c100s: fix USB PHY gate bit offset clk: sunxi-ng: Allow DE clock to set parent rate
- Loading branch information
Showing
10 changed files
with
95 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
menuconfig CLK_SUNXI | ||
bool "Legacy clock support for Allwinner SoCs" | ||
depends on ARCH_SUNXI || COMPILE_TEST | ||
default y | ||
|
||
if CLK_SUNXI | ||
|
||
config CLK_SUNXI_CLOCKS | ||
bool "Legacy clock drivers" | ||
default y | ||
help | ||
Legacy clock drivers being used on older (A10, A13, A20, | ||
A23, A31, A80) SoCs. These drivers are kept around for | ||
Device Tree backward compatibility issues, in case one would | ||
still use a Device Tree with one clock provider by | ||
node. Newer Device Trees and newer SoCs use the drivers | ||
controlled by CONFIG_SUNXI_CCU. | ||
|
||
config CLK_SUNXI_PRCM_SUN6I | ||
bool "Legacy A31 PRCM driver" | ||
select MFD_SUN6I_PRCM | ||
default y | ||
help | ||
Legacy clock driver for the A31 PRCM clocks. Those are | ||
usually needed for the PMIC communication, mostly. | ||
|
||
config CLK_SUNXI_PRCM_SUN8I | ||
bool "Legacy sun8i PRCM driver" | ||
select MFD_SUN6I_PRCM | ||
default y | ||
help | ||
Legacy clock driver for the sun8i family PRCM clocks. | ||
Those are usually needed for the PMIC communication, | ||
mostly. | ||
|
||
config CLK_SUNXI_PRCM_SUN9I | ||
bool "Legacy A80 PRCM driver" | ||
default y | ||
help | ||
Legacy clock driver for the A80 PRCM clocks. Those are | ||
usually needed for the PMIC communication, mostly. | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters