cavium-compact-flash.txt 911 B

123456789101112131415161718192021222324252627282930
  1. * Compact Flash
  2. The Cavium Compact Flash device is connected to the Octeon Boot Bus,
  3. and is thus a child of the Boot Bus device. It can read and write
  4. industry standard compact flash devices.
  5. Properties:
  6. - compatible: "cavium,ebt3000-compact-flash";
  7. Compatibility with many Cavium evaluation boards.
  8. - reg: The base address of the CF chip select banks. Depending on
  9. the device configuration, there may be one or two banks.
  10. - cavium,bus-width: The width of the connection to the CF devices. Valid
  11. values are 8 and 16.
  12. - cavium,true-ide: Optional, if present the CF connection is in True IDE mode.
  13. - cavium,dma-engine-handle: Optional, a phandle for the DMA Engine connected
  14. to this device.
  15. Example:
  16. compact-flash@5,0 {
  17. compatible = "cavium,ebt3000-compact-flash";
  18. reg = <5 0 0x10000>, <6 0 0x10000>;
  19. cavium,bus-width = <16>;
  20. cavium,true-ide;
  21. cavium,dma-engine-handle = <&dma0>;
  22. };