dt-bindings: can: rockchip_can: add can support for rockchip

This patch add the rockchip can to the device tree bindings
documentation.

Signed-off-by: Elaine Zhang <zhangqing@rock-chips.com>
Change-Id: I7a15174dda4a6eec6196fca5e2c386a7844b70ee
This commit is contained in:
Elaine Zhang
2020-02-17 18:04:29 +08:00
committed by Tao Huang
parent 5d41244299
commit 4d2ad93b5c

View File

@@ -0,0 +1,32 @@
Rockchip CAN controller Device Tree Bindings
---------------------------------------------------------
Required properties:
- compatible : Should be:
- "rockchip,can-1.0" for CAN controllers 1.0
- reg : Physical base address and size of the controller
registers map.
- interrupts : Property with a value describing the interrupt
number.
- clock-names : List of input clock names
- "can_clk", "pclk",
(See clock bindings for details).
- clocks : Clock phandles (see clock bindings for details).
- resets : Must contain an entry for each entry in reset-names.
See ../reset/reset.txt for details.
- reset-names : List of input reset names
- "can", "can-apb".
Example:
For Dts file:
can: can@ff250000 {
compatible = "rockchip,can-1.0";
reg = <0x0 0xff610000 0x0 0x1000>;
interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&cru CLK_CAN>, <&cru PCLK_CAN>;
clock-names = "baudclk", "apb_pclk";
resets = <&cru SRST_CAN>, &cru SRST_CAN_P>;
reset-names = "can", "can-apb";
status = "okay";
};