fsl-flexcan.txt 679 B

12345678910111213141516171819202122232425
  1. Flexcan CAN contoller 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. - clock-frequency : The oscillator frequency driving the flexcan device
  10. Example:
  11. can@1c000 {
  12. compatible = "fsl,p1010-flexcan";
  13. reg = <0x1c000 0x1000>;
  14. interrupts = <48 0x2>;
  15. interrupt-parent = <&mpic>;
  16. clock-frequency = <200000000>; // filled in by bootloader
  17. };