···11+* SiRF SoC USP module22+33+Required properties:44+- compatible: "sirf,prima2-usp-pcm"55+- reg: Base address and size entries:66+- dmas: List of DMA controller phandle and DMA request line ordered pairs.77+- dma-names: Identifier string for each DMA request line in the dmas property.88+ These strings correspond 1:1 with the ordered pairs in dmas.99+1010+ One of the DMA channels will be responsible for transmission (should be1111+ named "tx") and one for reception (should be named "rx").1212+1313+- clocks: USP controller clock source1414+- pinctrl-names: Must contain a "default" entry.1515+- pinctrl-NNN: One property must exist for each entry in pinctrl-names.1616+1717+Example:1818+usp0: usp@b0080000 {1919+ compatible = "sirf,prima2-usp-pcm";2020+ reg = <0xb0080000 0x10000>;2121+ clocks = <&clks 28>;2222+ dmas = <&dmac1 1>, <&dmac1 2>;2323+ dma-names = "rx", "tx";2424+ pinctrl-names = "default";2525+ pinctrl-0 = <&usp0_only_utfs_pins_a>;2626+};2727+