mediatek,audsys.txt 763 B

1234567891011121314151617181920212223242526272829303132
  1. MediaTek AUDSYS controller
  2. ============================
  3. The MediaTek AUDSYS controller provides various clocks to the system.
  4. Required Properties:
  5. - compatible: Should be one of:
  6. - "mediatek,mt2701-audsys", "syscon"
  7. - "mediatek,mt7622-audsys", "syscon"
  8. - #clock-cells: Must be 1
  9. The AUDSYS controller uses the common clk binding from
  10. Documentation/devicetree/bindings/clock/clock-bindings.txt
  11. The available clocks are defined in dt-bindings/clock/mt*-clk.h.
  12. Required sub-nodes:
  13. -------
  14. For common binding part and usage, refer to
  15. ../sonud/mt2701-afe-pcm.txt.
  16. Example:
  17. audsys: clock-controller@11220000 {
  18. compatible = "mediatek,mt7622-audsys", "syscon";
  19. reg = <0 0x11220000 0 0x2000>;
  20. #clock-cells = <1>;
  21. afe: audio-controller {
  22. ...
  23. };
  24. };