sirf-audio-port.txt 631 B

1234567891011121314151617181920
  1. * SiRF SoC audio port
  2. Required properties:
  3. - compatible: "sirf,audio-port"
  4. - reg: Base address and size entries:
  5. - dmas: List of DMA controller phandle and DMA request line ordered pairs.
  6. - dma-names: Identifier string for each DMA request line in the dmas property.
  7. These strings correspond 1:1 with the ordered pairs in dmas.
  8. One of the DMA channels will be responsible for transmission (should be
  9. named "tx") and one for reception (should be named "rx").
  10. Example:
  11. audioport: audioport@b0040000 {
  12. compatible = "sirf,audio-port";
  13. reg = <0xb0040000 0x10000>;
  14. dmas = <&dmac1 3>, <&dmac1 8>;
  15. dma-names = "rx", "tx";
  16. };