forked from u-boot/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARC: clk: introduce HSDK CGU clock driver
Synopsys HSDK clock controller generates and supplies clocks to various controllers and peripherals within the SoC. Each clock has assigned identifier and client device tree nodes can use this identifier to specify the clock which they consume. All available clocks are defined as preprocessor macros in the dt-bindings/clock/snps,hsdk-cgu.h header and can be used in device tree sources. Signed-off-by: Eugeniy Paltsev <[email protected]> Signed-off-by: Alexey Brodkin <[email protected]>
- Loading branch information
Showing
6 changed files
with
654 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 |
---|---|---|
|
@@ -65,6 +65,14 @@ S: Maintained | |
L: [email protected] | ||
F: drivers/gpio/hsdk-creg-gpio.c | ||
|
||
ARC HSDK CGU CLOCK | ||
M: Eugeniy Paltsev <[email protected]> | ||
S: Maintained | ||
L: [email protected] | ||
F: drivers/clk/clk-hsdk-cgu.c | ||
F: include/dt-bindings/clock/snps,hsdk-cgu.h | ||
F: doc/device-tree-bindings/clock/snps,hsdk-cgu.txt | ||
|
||
ARM | ||
M: Albert Aribaud <[email protected]> | ||
S: Maintained | ||
|
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,35 @@ | ||
* Synopsys HSDK clock generation unit | ||
|
||
The Synopsys HSDK clock controller generates and supplies clock to various | ||
controllers and peripherals within the SoC. | ||
|
||
Required Properties: | ||
|
||
- compatible: should be "snps,hsdk-cgu-clock" | ||
- reg: the pair of physical base address and length of clock generation unit | ||
memory mapped region and creg arc core divider memory mapped region. | ||
- #clock-cells: should be 1. | ||
|
||
Each clock is assigned an identifier and client nodes can use this identifier | ||
to specify the clock which they consume. All available clocks are defined as | ||
preprocessor macros in the dt-bindings/clock/snps,hsdk-cgu.h headers and can be | ||
used in device tree sources. | ||
|
||
Example: Clock controller node: | ||
|
||
cgu_clk: cgu-clk@f0000000 { | ||
compatible = "snps,hsdk-cgu-clock"; | ||
reg = <0xf0000000 0x1000>, <0xf00014B8 0x4>; | ||
#clock-cells = <1>; | ||
}; | ||
|
||
Example: UART controller node that consumes the clock generated by the clock | ||
controller: | ||
|
||
uart0: serial0@f0005000 { | ||
compatible = "snps,dw-apb-uart"; | ||
reg = <0xf0005000 0x1000>; | ||
reg-shift = <2>; | ||
reg-io-width = <4>; | ||
clocks = <&cgu_clk CLK_SYS_UART_REF>; | ||
}; |
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
Oops, something went wrong.