microchip,mchp23k256.txt 537 B

123456789101112131415161718
  1. * MTD SPI driver for Microchip 23K256 (and similar) serial SRAM
  2. Required properties:
  3. - #address-cells, #size-cells : Must be present if the device has sub-nodes
  4. representing partitions.
  5. - compatible : Must be one of "microchip,mchp23k256" or "microchip,mchp23lcv1024"
  6. - reg : Chip-Select number
  7. - spi-max-frequency : Maximum frequency of the SPI bus the chip can operate at
  8. Example:
  9. spi-sram@0 {
  10. #address-cells = <1>;
  11. #size-cells = <1>;
  12. compatible = "microchip,mchp23k256";
  13. reg = <0>;
  14. spi-max-frequency = <20000000>;
  15. };