pxa3xx-nand.txt 725 B

12345678910111213141516171819202122232425262728293031
  1. PXA3xx NAND DT bindings
  2. Required properties:
  3. - compatible: Should be "marvell,pxa3xx-nand"
  4. - reg: The register base for the controller
  5. - interrupts: The interrupt to map
  6. - #address-cells: Set to <1> if the node includes partitions
  7. Optional properties:
  8. - marvell,nand-enable-arbiter: Set to enable the bus arbiter
  9. - marvell,nand-keep-config: Set to keep the NAND controller config as set
  10. by the bootloader
  11. - num-cs: Number of chipselect lines to usw
  12. Example:
  13. nand0: nand@43100000 {
  14. compatible = "marvell,pxa3xx-nand";
  15. reg = <0x43100000 90>;
  16. interrupts = <45>;
  17. #address-cells = <1>;
  18. marvell,nand-enable-arbiter;
  19. marvell,nand-keep-config;
  20. num-cs = <1>;
  21. /* partitions (optional) */
  22. };