ingenic,jz4740-i2s.txt 584 B

1234567891011121314151617181920212223
  1. Ingenic JZ4740 I2S controller
  2. Required properties:
  3. - compatible : "ingenic,jz4740-i2s" or "ingenic,jz4780-i2s"
  4. - reg : I2S registers location and length
  5. - clocks : AIC and I2S PLL clock specifiers.
  6. - clock-names: "aic" and "i2s"
  7. - dmas: DMA controller phandle and DMA request line for I2S Tx and Rx channels
  8. - dma-names: Must be "tx" and "rx"
  9. Example:
  10. i2s: i2s@10020000 {
  11. compatible = "ingenic,jz4740-i2s";
  12. reg = <0x10020000 0x94>;
  13. clocks = <&cgu JZ4740_CLK_AIC>, <&cgu JZ4740_CLK_I2SPLL>;
  14. clock-names = "aic", "i2s";
  15. dmas = <&dma 2>, <&dma 3>;
  16. dma-names = "tx", "rx";
  17. };