spi-meson.txt 632 B

12345678910111213141516171819202122
  1. Amlogic Meson SPI controllers
  2. * SPIFC (SPI Flash Controller)
  3. The Meson SPIFC is a controller optimized for communication with SPI
  4. NOR memories, without DMA support and a 64-byte unified transmit /
  5. receive buffer.
  6. Required properties:
  7. - compatible: should be "amlogic,meson6-spifc"
  8. - reg: physical base address and length of the controller registers
  9. - clocks: phandle of the input clock for the baud rate generator
  10. - #address-cells: should be 1
  11. - #size-cells: should be 0
  12. spi@c1108c80 {
  13. compatible = "amlogic,meson6-spifc";
  14. reg = <0xc1108c80 0x80>;
  15. clocks = <&clk81>;
  16. #address-cells = <1>;
  17. #size-cells = <0>;
  18. };