holt_hi311x.txt 663 B

1234567891011121314151617181920212223
  1. * Holt HI-311X stand-alone CAN controller device tree bindings
  2. Required properties:
  3. - compatible: Should be one of the following:
  4. - "holt,hi3110" for HI-3110
  5. - reg: SPI chip select.
  6. - clocks: The clock feeding the CAN controller.
  7. - interrupts: Should contain IRQ line for the CAN controller.
  8. Optional properties:
  9. - vdd-supply: Regulator that powers the CAN controller.
  10. - xceiver-supply: Regulator that powers the CAN transceiver.
  11. Example:
  12. can0: can@1 {
  13. compatible = "holt,hi3110";
  14. reg = <1>;
  15. clocks = <&clk32m>;
  16. interrupt-parent = <&gpio4>;
  17. interrupts = <13 IRQ_TYPE_LEVEL_HIGH>;
  18. vdd-supply = <&reg5v0>;
  19. xceiver-supply = <&reg5v0>;
  20. };