M7350/kernel/Documentation/devicetree/bindings/net/can/fsl-flexcan.txt

30 lines
764 B
Plaintext
Raw Normal View History

2024-09-09 08:57:42 +00:00
Flexcan CAN controller on Freescale's ARM and PowerPC system-on-a-chip (SOC).
2024-09-09 08:52:07 +00:00
Required properties:
- compatible : Should be "fsl,<processor>-flexcan"
An implementation should also claim any of the following compatibles
that it is fully backwards compatible with:
- fsl,p1010-flexcan
- reg : Offset and length of the register set for this device
- interrupts : Interrupt tuple for this device
2024-09-09 08:57:42 +00:00
Optional properties:
2024-09-09 08:52:07 +00:00
- clock-frequency : The oscillator frequency driving the flexcan device
2024-09-09 08:57:42 +00:00
- xceiver-supply: Regulator that powers the CAN transceiver
2024-09-09 08:52:07 +00:00
Example:
can@1c000 {
compatible = "fsl,p1010-flexcan";
reg = <0x1c000 0x1000>;
interrupts = <48 0x2>;
interrupt-parent = <&mpic>;
clock-frequency = <200000000>; // filled in by bootloader
};