ahci-ceva.txt 612 B

1234567891011121314151617181920
  1. Binding for CEVA AHCI SATA Controller
  2. Required properties:
  3. - reg: Physical base address and size of the controller's register area.
  4. - compatible: Compatibility string. Must be 'ceva,ahci-1v84'.
  5. - clocks: Input clock specifier. Refer to common clock bindings.
  6. - interrupts: Interrupt specifier. Refer to interrupt binding.
  7. Optional properties:
  8. - ceva,broken-gen2: limit to gen1 speed instead of gen2.
  9. Examples:
  10. ahci@fd0c0000 {
  11. compatible = "ceva,ahci-1v84";
  12. reg = <0xfd0c0000 0x200>;
  13. interrupt-parent = <&gic>;
  14. interrupts = <0 133 4>;
  15. clocks = <&clkc SATA_CLK_ID>;
  16. ceva,broken-gen2;
  17. };