upm-nand.txt 650 B

12345678910111213141516171819202122232425262728
  1. Freescale Localbus UPM programmed to work with NAND flash
  2. Required properties:
  3. - compatible : "fsl,upm-nand".
  4. - reg : should specify localbus chip select and size used for the chip.
  5. - fsl,upm-addr-offset : UPM pattern offset for the address latch.
  6. - fsl,upm-cmd-offset : UPM pattern offset for the command latch.
  7. - gpios : may specify optional GPIO connected to the Ready-Not-Busy pin.
  8. Example:
  9. upm@1,0 {
  10. compatible = "fsl,upm-nand";
  11. reg = <1 0 1>;
  12. fsl,upm-addr-offset = <16>;
  13. fsl,upm-cmd-offset = <8>;
  14. gpios = <&qe_pio_e 18 0>;
  15. flash {
  16. #address-cells = <1>;
  17. #size-cells = <1>;
  18. compatible = "...";
  19. partition@0 {
  20. ...
  21. };
  22. };
  23. };