-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clk: starfive: Add JH7100 clock generator driver
Add a driver for the StarFive JH7100 clock generator. Reviewed-by: Andy Shevchenko <[email protected]> Acked-by: Stephen Boyd <[email protected]> Signed-off-by: Geert Uytterhoeven <[email protected]> Co-developed-by: Emil Renner Berthing <[email protected]> Signed-off-by: Emil Renner Berthing <[email protected]>
- Loading branch information
Showing
6 changed files
with
710 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18130,6 +18130,13 @@ M: Ion Badulescu <[email protected]> | |
S: Odd Fixes | ||
F: drivers/net/ethernet/adaptec/starfire* | ||
|
||
STARFIVE JH7100 CLOCK DRIVER | ||
M: Emil Renner Berthing <[email protected]> | ||
S: Maintained | ||
F: Documentation/devicetree/bindings/clock/starfive,jh7100-clkgen.yaml | ||
F: drivers/clk/starfive/clk-starfive-jh7100.c | ||
F: include/dt-bindings/clock/starfive-jh7100.h | ||
|
||
STATIC BRANCH/CALL | ||
M: Peter Zijlstra <[email protected]> | ||
M: Josh Poimboeuf <[email protected]> | ||
|
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,9 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
|
||
config CLK_STARFIVE_JH7100 | ||
bool "StarFive JH7100 clock support" | ||
depends on SOC_STARFIVE || COMPILE_TEST | ||
default SOC_STARFIVE | ||
help | ||
Say yes here to support the clock controller on the StarFive JH7100 | ||
SoC. |
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,3 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# StarFive Clock | ||
obj-$(CONFIG_CLK_STARFIVE_JH7100) += clk-starfive-jh7100.o |
Oops, something went wrong.