···2020 #address-cells = <1>;2121 #size-cells = <0>;2222 };2323+2424+* SPICC (SPI Communication Controller)2525+2626+The Meson SPICC is generic SPI controller for general purpose Full-Duplex2727+communications with dedicated 16 words RX/TX PIO FIFOs.2828+2929+Required properties:3030+ - compatible: should be "amlogic,meson-gx-spicc" on Amlogic GX SoCs.3131+ - reg: physical base address and length of the controller registers3232+ - interrupts: The interrupt specifier3333+ - clock-names: Must contain "core"3434+ - clocks: phandle of the input clock for the baud rate generator3535+ - #address-cells: should be 13636+ - #size-cells: should be 03737+3838+Optional properties:3939+ - resets: phandle of the internal reset line4040+4141+See ../spi/spi-bus.txt for more details on SPI bus master and slave devices4242+required and optional properties.4343+4444+Example :4545+ spi@c1108d80 {4646+ compatible = "amlogic,meson-gx-spicc";4747+ reg = <0xc1108d80 0x80>;4848+ interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;4949+ clock-names = "core";5050+ clocks = <&clk81>;5151+ #address-cells = <1>;5252+ #size-cells = <0>;5353+ };