qcom,dummycc.txt 835 B

12345678910111213141516171819202122232425
  1. Qualcomm Technologies Dummy Clock controller
  2. Qualcomm Technologies Dummy Clock controller devices provide a dummy clock
  3. for driver development during pre-silicon stage. The driver will always
  4. return a dummy clock that has no effect on hardware.
  5. Required properties:
  6. - compatible: Must be "qcom,dummycc"
  7. - #clock-cells: Must be <1>. This will allow the common clock device
  8. tree framework to recognize _this_ device node as a
  9. clock provider.
  10. Optional properties:
  11. - clock-output-names: Name of the clock or the clock type.
  12. - #reset-cells: Must be <1>. This will allow the common reset device
  13. tree framework to recognize _this_ device node as a
  14. reset controller provider.
  15. Example:
  16. clock_gcc: qcom,gcc {
  17. compatible = "qcom,dummycc";
  18. clock-output-names = "gcc_clocks";
  19. #clock-cells = <1>;
  20. #reset-cells = <1>;
  21. };