hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
kernel/Documentation/devicetree/bindings/clock/exynos5433-clock.txt
....@@ -50,6 +50,8 @@
5050 IPs.
5151 - "samsung,exynos5433-cmu-cam1" - clock controller compatible for CMU_CAM1
5252 which generates clocks for Cortex-A5/MIPI_CSIS2/FIMC-LITE_C/FIMC-FD IPs.
53
+ - "samsung,exynos5433-cmu-imem" - clock controller compatible for CMU_IMEM
54
+ which generates clocks for SSS (Security SubSystem) and SlimSSS IPs.
5355
5456 - reg: physical base address of the controller and length of memory mapped
5557 region.
....@@ -167,6 +169,12 @@
167169 - aclk_cam1_333
168170 - aclk_cam1_400
169171 - aclk_cam1_552
172
+
173
+ Input clocks for imem clock controller:
174
+ - oscclk
175
+ - aclk_imem_sssx_266
176
+ - aclk_imem_266
177
+ - aclk_imem_200
170178
171179 Optional properties:
172180 - power-domains: a phandle to respective power domain node as described by
....@@ -469,6 +477,21 @@
469477 power-domains = <&pd_cam1>;
470478 };
471479
480
+ cmu_imem: clock-controller@11060000 {
481
+ compatible = "samsung,exynos5433-cmu-imem";
482
+ reg = <0x11060000 0x1000>;
483
+ #clock-cells = <1>;
484
+
485
+ clock-names = "oscclk",
486
+ "aclk_imem_sssx_266",
487
+ "aclk_imem_266",
488
+ "aclk_imem_200";
489
+ clocks = <&xxti>,
490
+ <&cmu_top CLK_DIV_ACLK_IMEM_SSSX_266>,
491
+ <&cmu_top CLK_DIV_ACLK_IMEM_266>,
492
+ <&cmu_top CLK_DIV_ACLK_IMEM_200>;
493
+ };
494
+
472495 Example 3: UART controller node that consumes the clock generated by the clock
473496 controller.
474497