diff options
| author | Angelo Dureghello <[email protected]> | 2019-03-13 21:46:41 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-05-23 23:14:38 -0400 |
| commit | b5867b1a7a4c45c6a5a6a97f866dd180631ebf2b (patch) | |
| tree | 4949699a268aad5c2b143bf296d47084c0354e08 /doc/device-tree-bindings/serial | |
| parent | 40920bdecc4e1b7096de6f546d7b5c2185554ba6 (diff) | |
m68k: add basic set of devicetrees
This patch adds a basic group of devicetrees, one for each
cpu family, including actually just uart and dspi devices,
since these are the drivers supporting devicetree (support
added in this patch-set).
Acked-by: Jagan Teki <[email protected]>
Signed-off-by: Angelo Dureghello <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
Diffstat (limited to 'doc/device-tree-bindings/serial')
| -rw-r--r-- | doc/device-tree-bindings/serial/mcf-uart.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/serial/mcf-uart.txt b/doc/device-tree-bindings/serial/mcf-uart.txt new file mode 100644 index 00000000000..d73f764c019 --- /dev/null +++ b/doc/device-tree-bindings/serial/mcf-uart.txt @@ -0,0 +1,19 @@ +Freescale ColdFire UART + +Required properties: +- compatible : should be "fsl,mcf-uart" +- reg: start address and size of the registers + +Example: + +soc { + compatible = "simple-bus"; + #address-cells = <1>; + #size-cells = <1>; + + uart0: uart@fc060000 { + compatible = "fsl,mcf-uart"; + reg = <0xfc060000 0x40>; + status = "disabled"; + }; +}; |
