fsl-flexcan.txt 764 B

1234567891011121314151617181920212223242526272829
  1. Flexcan CAN controller on Freescale's ARM and PowerPC system-on-a-chip (SOC).
  2. Required properties:
  3. - compatible : Should be "fsl,<processor>-flexcan"
  4. An implementation should also claim any of the following compatibles
  5. that it is fully backwards compatible with:
  6. - fsl,p1010-flexcan
  7. - reg : Offset and length of the register set for this device
  8. - interrupts : Interrupt tuple for this device
  9. Optional properties:
  10. - clock-frequency : The oscillator frequency driving the flexcan device
  11. - xceiver-supply: Regulator that powers the CAN transceiver
  12. Example:
  13. can@1c000 {
  14. compatible = "fsl,p1010-flexcan";
  15. reg = <0x1c000 0x1000>;
  16. interrupts = <48 0x2>;
  17. interrupt-parent = <&mpic>;
  18. clock-frequency = <200000000>; // filled in by bootloader
  19. };