flctl-nand.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. FLCTL NAND controller
  2. Required properties:
  3. - compatible : "renesas,shmobile-flctl-sh7372"
  4. - reg : Address range of the FLCTL
  5. - interrupts : flste IRQ number
  6. - nand-bus-width : bus width to NAND chip
  7. Optional properties:
  8. - dmas: DMA specifier(s)
  9. - dma-names: name for each DMA specifier. Valid names are
  10. "data_tx", "data_rx", "ecc_tx", "ecc_rx"
  11. The DMA fields are not used yet in the driver but are listed here for
  12. completing the bindings.
  13. The device tree may optionally contain sub-nodes describing partitions of the
  14. address space. See partition.txt for more detail.
  15. Example:
  16. flctl@e6a30000 {
  17. #address-cells = <1>;
  18. #size-cells = <1>;
  19. compatible = "renesas,shmobile-flctl-sh7372";
  20. reg = <0xe6a30000 0x100>;
  21. interrupts = <0x0d80>;
  22. nand-bus-width = <16>;
  23. dmas = <&dmac 1 /* data_tx */
  24. &dmac 2;> /* data_rx */
  25. dma-names = "data_tx", "data_rx";
  26. system@0 {
  27. label = "system";
  28. reg = <0x0 0x8000000>;
  29. };
  30. userdata@8000000 {
  31. label = "userdata";
  32. reg = <0x8000000 0x10000000>;
  33. };
  34. cache@18000000 {
  35. label = "cache";
  36. reg = <0x18000000 0x8000000>;
  37. };
  38. };