hc
2023-10-25 6c2073b7aa40e29d0eca7d571dd7bc590c7ecaa7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Rockchip SFC Controller for SOC
 
Required properties:
- compatible : "rockchip,sfc".
- reg : shall contain registers location and length for data and reg.
- interrupts : shall define the nand controller interrupt.
- clocks : shall reference sfc controller clocks.
- clock-names : sfc controller internal clock names. Shall contain :
    * "clk_sfc" : sfc controller clock
    * "hclk_sfc" : sfc ahb clock gate
- assigned-clocks : sclk preset by dts
- assigned-clock-frequency : sclk frequency, io clk = sclk/2;
 
Examples:
sfc: sfc@301c0000 {
   compatible = "rockchip,sfc";
   reg = <0x301c0000 0x200>;
   interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
   clocks = <&clk_sfc>, <&clk_gates15 10>;
   clock-names = "clk_sfc", "hclk_sfc";
   assigned-clocks = <&cru SCLK_SFC>;
   assigned-clock-frequency = <100000000>;
   status = "okay";
};