cdns,xtfpga-i2s.txt 500 B

123456789101112131415161718
  1. Bindings for I2S controller built into xtfpga Xtensa bitstreams.
  2. Required properties:
  3. - compatible: shall be "cdns,xtfpga-i2s".
  4. - reg: memory region (address and length) with device registers.
  5. - interrupts: interrupt for the device.
  6. - clocks: phandle to the clk used as master clock. I2S bus clock
  7. is derived from it.
  8. Examples:
  9. i2s0: xtfpga-i2s@0d080000 {
  10. #sound-dai-cells = <0>;
  11. compatible = "cdns,xtfpga-i2s";
  12. reg = <0x0d080000 0x40>;
  13. interrupts = <2 1>;
  14. clocks = <&cdce706 4>;
  15. };