img,spdif-out.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Imagination Technologies SPDIF Output Controller
  2. Required Properties:
  3. - compatible : Compatible list, must contain "img,spdif-out"
  4. - #sound-dai-cells : Must be equal to 0
  5. - reg : Offset and length of the register set for the device
  6. - dmas: Contains an entry for each entry in dma-names.
  7. - dma-names: Must include the following entry:
  8. "tx"
  9. - clocks : Contains an entry for each entry in clock-names.
  10. - clock-names : Includes the following entries:
  11. "sys" The system clock
  12. "ref" The reference clock
  13. - resets: Contains a phandle to the spdif out reset signal
  14. - reset-names: Contains the reset signal name "rst"
  15. Optional Properties:
  16. - interrupts : Contains the parallel out interrupt, if present
  17. Example:
  18. spdif_out: spdif-out@18100d00 {
  19. compatible = "img,spdif-out";
  20. reg = <0x18100D00 0x100>;
  21. interrupts = <GIC_SHARED 21 IRQ_TYPE_LEVEL_HIGH>;
  22. dmas = <&mdc 14 0xffffffff 0>;
  23. dma-names = "tx";
  24. clocks = <&cr_periph SYS_CLK_SPDIF_OUT>,
  25. <&clk_core CLK_SPDIF>;
  26. clock-names = "sys", "ref";
  27. resets = <&pistachio_reset PISTACHIO_RESET_SPDIF_OUT>;
  28. reset-names = "rst";
  29. #sound-dai-cells = <0>;
  30. };