hisilicon,fmc-spi-nor.txt 765 B

12345678910111213141516171819202122232425
  1. HiSilicon SPI-NOR Flash Controller
  2. Required properties:
  3. - compatible : Should be "hisilicon,fmc-spi-nor" and one of the following strings:
  4. "hisilicon,hi3519-spi-nor"
  5. - address-cells : Should be 1.
  6. - size-cells : Should be 0.
  7. - reg : Offset and length of the register set for the controller device.
  8. - reg-names : Must include the following two entries: "control", "memory".
  9. - clocks : handle to spi-nor flash controller clock.
  10. Example:
  11. spi-nor-controller@10000000 {
  12. compatible = "hisilicon,hi3519-spi-nor", "hisilicon,fmc-spi-nor";
  13. #address-cells = <1>;
  14. #size-cells = <0>;
  15. reg = <0x10000000 0x1000>, <0x14000000 0x1000000>;
  16. reg-names = "control", "memory";
  17. clocks = <&clock HI3519_FMC_CLK>;
  18. spi-nor@0 {
  19. compatible = "jedec,spi-nor";
  20. reg = <0>;
  21. };
  22. };