hc
2023-11-22 9ca5fbcb63a8dcaee0527f96afb91dc4b4bd8fa9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
* Hisilicon Hix5hd2 Clock Controller
 
The hix5hd2 clock controller generates and supplies clock to various
controllers within the hix5hd2 SoC.
 
Required Properties:
 
- compatible: should be "hisilicon,hix5hd2-clock"
- reg: Address and length of the register set
- #clock-cells: Should be <1>
 
Each clock is assigned an identifier and client nodes use this identifier
to specify the clock which they consume.
 
All these identifier could be found in <dt-bindings/clock/hix5hd2-clock.h>.
 
Examples:
   clock: clock@f8a22000 {
       compatible = "hisilicon,hix5hd2-clock";
       reg = <0xf8a22000 0x1000>;
       #clock-cells = <1>;
   };
 
   uart0: uart@f8b00000 {
       compatible = "arm,pl011", "arm,primecell";
       reg = <0xf8b00000 0x1000>;
       interrupts = <0 49 4>;
       clocks = <&clock HIX5HD2_FIXED_83M>;
       clock-names = "apb_pclk";
   };