denali-nand.txt 701 B

1234567891011121314151617181920212223
  1. * Denali NAND controller
  2. Required properties:
  3. - compatible : should be "denali,denali-nand-dt"
  4. - reg : should contain registers location and length for data and reg.
  5. - reg-names: Should contain the reg names "nand_data" and "denali_reg"
  6. - interrupts : The interrupt number.
  7. - dm-mask : DMA bit mask
  8. The device tree may optionally contain sub-nodes describing partitions of the
  9. address space. See partition.txt for more detail.
  10. Examples:
  11. nand: nand@ff900000 {
  12. #address-cells = <1>;
  13. #size-cells = <1>;
  14. compatible = "denali,denali-nand-dt";
  15. reg = <0xff900000 0x100000>, <0xffb80000 0x10000>;
  16. reg-names = "nand_data", "denali_reg";
  17. interrupts = <0 144 4>;
  18. dma-mask = <0xffffffff>;
  19. };