Linux 4.1.18
[linux/fpc-iii.git] / Documentation / devicetree / bindings / net / can / fsl-flexcan.txt
blob56d6cc336e1cb2adcd842767af4e403f0a9f447b
1 Flexcan CAN controller on Freescale's ARM and PowerPC system-on-a-chip (SOC).
3 Required properties:
5 - compatible : Should be "fsl,<processor>-flexcan"
7   An implementation should also claim any of the following compatibles
8   that it is fully backwards compatible with:
10   - fsl,p1010-flexcan
12 - reg : Offset and length of the register set for this device
13 - interrupts : Interrupt tuple for this device
15 Optional properties:
17 - clock-frequency : The oscillator frequency driving the flexcan device
19 - xceiver-supply: Regulator that powers the CAN transceiver
21 Example:
23         can@1c000 {
24                 compatible = "fsl,p1010-flexcan";
25                 reg = <0x1c000 0x1000>;
26                 interrupts = <48 0x2>;
27                 interrupt-parent = <&mpic>;
28                 clock-frequency = <200000000>; // filled in by bootloader
29         };