fsl-flexcan.txt 703 B

123456789101112131415161718192021222324252627
  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. Example:
  12. can@1c000 {
  13. compatible = "fsl,p1010-flexcan";
  14. reg = <0x1c000 0x1000>;
  15. interrupts = <48 0x2>;
  16. interrupt-parent = <&mpic>;
  17. clock-frequency = <200000000>; // filled in by bootloader
  18. };