sirf-usp.txt 877 B

123456789101112131415161718192021222324252627
  1. * SiRF SoC USP module
  2. Required properties:
  3. - compatible: "sirf,prima2-usp-pcm"
  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. - clocks: USP controller clock source
  11. - pinctrl-names: Must contain a "default" entry.
  12. - pinctrl-NNN: One property must exist for each entry in pinctrl-names.
  13. Example:
  14. usp0: usp@b0080000 {
  15. compatible = "sirf,prima2-usp-pcm";
  16. reg = <0xb0080000 0x10000>;
  17. clocks = <&clks 28>;
  18. dmas = <&dmac1 1>, <&dmac1 2>;
  19. dma-names = "rx", "tx";
  20. pinctrl-names = "default";
  21. pinctrl-0 = <&usp0_only_utfs_pins_a>;
  22. };