-
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 branches 'clk-actions-s700', 'clk-exynos-unused', 'clk-qcom-dis…
…pcc-845', 'clk-scmi-round' and 'clk-cs2000-spdx' into clk-next * clk-actions-s700: : - Actions Semi Owl series S700 SoC clk driver clk: actions: Add S700 SoC clock support dt-bindings: clock: Add S700 support for Actions Semi Soc's clk: actions: Add missing REGMAP_MMIO dependency * clk-exynos-unused: : - Remove an unused variable from Exynos4412 ISP driver clk: samsung: Remove unused mout_user_aclk400_mcuisp_p4x12 variable * clk-qcom-dispcc-845: : - Qualcomm SDM845 display clock controller clk: qcom: Add display clock controller driver for SDM845 dt-bindings: clock: Introduce QCOM Display clock bindings clk: qcom: Move frequency table macro to common file * clk-scmi-round: : - Fix a thinko bug in SCMI clk division logic clk: scmi: Fix the rounding of clock rate * clk-cs2000-spdx: clk: cs2000-cp: convert to SPDX identifiers
- Loading branch information
Showing
27 changed files
with
1,508 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Qualcomm Technologies, Inc. Display Clock Controller Binding | ||
------------------------------------------------------------ | ||
|
||
Required properties : | ||
|
||
- compatible : shall contain "qcom,sdm845-dispcc" | ||
- reg : shall contain base register location and length. | ||
- #clock-cells : from common clock binding, shall contain 1. | ||
- #reset-cells : from common reset binding, shall contain 1. | ||
- #power-domain-cells : from generic power domain binding, shall contain 1. | ||
|
||
Example: | ||
dispcc: clock-controller@af00000 { | ||
compatible = "qcom,sdm845-dispcc"; | ||
reg = <0xaf00000 0x100000>; | ||
#clock-cells = <1>; | ||
#reset-cells = <1>; | ||
#power-domain-cells = <1>; | ||
}; |
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 |
---|---|---|
@@ -1,14 +1,21 @@ | ||
config CLK_ACTIONS | ||
bool "Clock driver for Actions Semi SoCs" | ||
depends on ARCH_ACTIONS || COMPILE_TEST | ||
select REGMAP_MMIO | ||
default ARCH_ACTIONS | ||
|
||
if CLK_ACTIONS | ||
|
||
# SoC Drivers | ||
|
||
config CLK_OWL_S700 | ||
bool "Support for the Actions Semi OWL S700 clocks" | ||
depends on (ARM64 && ARCH_ACTIONS) || COMPILE_TEST | ||
default ARM64 && ARCH_ACTIONS | ||
|
||
config CLK_OWL_S900 | ||
bool "Support for the Actions Semi OWL S900 clocks" | ||
depends on (ARM64 && ARCH_ACTIONS) || COMPILE_TEST | ||
default ARM64 && ARCH_ACTIONS | ||
|
||
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
Oops, something went wrong.