···11+* Hisilicon 6210 i2s controller22+33+Required properties:44+55+- compatible: should be one of the following:66+ - "hisilicon,hi6210-i2s"77+- reg: physical base address of the i2s controller unit and length of88+ memory mapped region.99+- interrupts: should contain the i2s interrupt.1010+- clocks: a list of phandle + clock-specifier pairs, one for each entry1111+ in clock-names.1212+- clock-names: should contain following:1313+ - "dacodec"1414+ - "i2s-base"1515+- dmas: DMA specifiers for tx dma. See the DMA client binding,1616+ Documentation/devicetree/bindings/dma/dma.txt1717+- dma-names: should be "tx" and "rx"1818+- hisilicon,sysctrl-syscon: phandle to sysctrl syscon1919+- #sound-dai-cells: Should be set to 1 (for multi-dai)2020+2121+Example for the hi6210 i2s controller:2222+2323+i2s0: i2s@f7118000{2424+ compatible = "hisilicon,hi6210-i2s";2525+ reg = <0x0 0xf7118000 0x0 0x8000>; /* i2s unit */2626+ interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>; /* 155 "DigACodec_intr"-32 */2727+ clocks = <&sys_ctrl HI6220_DACODEC_PCLK>,2828+ <&sys_ctrl HI6220_BBPPLL0_DIV>;2929+ clock-names = "dacodec", "i2s-base";3030+ dmas = <&dma0 15 &dma0 14>;3131+ dma-names = "rx", "tx";3232+ hisilicon,sysctrl-syscon = <&sys_ctrl>;3333+ #sound-dai-cells = <1>;3434+};