amlogic,axg-fifo.txt 741 B

1234567891011121314151617181920212223
  1. * Amlogic Audio FIFO controllers
  2. Required properties:
  3. - compatible: 'amlogic,axg-toddr' or
  4. 'amlogic,axg-frddr'
  5. - reg: physical base address of the controller and length of memory
  6. mapped region.
  7. - interrupts: interrupt specifier for the fifo.
  8. - clocks: phandle to the fifo peripheral clock provided by the audio
  9. clock controller.
  10. - resets: phandle to memory ARB line provided by the arb reset controller.
  11. - #sound-dai-cells: must be 0.
  12. Example of FRDDR A on the A113 SoC:
  13. frddr_a: audio-controller@1c0 {
  14. compatible = "amlogic,axg-frddr";
  15. reg = <0x0 0x1c0 0x0 0x1c>;
  16. #sound-dai-cells = <0>;
  17. interrupts = <GIC_SPI 88 IRQ_TYPE_EDGE_RISING>;
  18. clocks = <&clkc_audio AUD_CLKID_FRDDR_A>;
  19. resets = <&arb AXG_ARB_FRDDR_A>;
  20. };