diff options
author | Kevin Cernekee <cernekee@gmail.com> | 2014-10-21 18:23:01 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-06 17:57:24 -0500 |
commit | e1a184eea9bcab00faa5943292d049bc30f8cd09 (patch) | |
tree | 9602080988e34438ea31b43a0362446c79042499 /Documentation/devicetree/bindings | |
parent | 4137cd9b5c79ff213731865b0ac227c6d8c32e4b (diff) |
Documentation: DT: Add entries for bcm63xx UART
This squashes a checkpatch warning on my new bcm3384 dts submission.
Signed-off-by: Kevin Cernekee <cernekee@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/devicetree/bindings')
-rw-r--r-- | Documentation/devicetree/bindings/serial/bcm63xx-uart.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/serial/bcm63xx-uart.txt b/Documentation/devicetree/bindings/serial/bcm63xx-uart.txt new file mode 100644 index 000000000000..5c52e5eef16d --- /dev/null +++ b/Documentation/devicetree/bindings/serial/bcm63xx-uart.txt | |||
@@ -0,0 +1,30 @@ | |||
1 | * BCM63xx UART | ||
2 | |||
3 | Required properties: | ||
4 | |||
5 | - compatible: "brcm,bcm6345-uart" | ||
6 | |||
7 | - reg: The base address of the UART register bank. | ||
8 | |||
9 | - interrupts: A single interrupt specifier. | ||
10 | |||
11 | - clocks: Clock driving the hardware; used to figure out the baud rate | ||
12 | divisor. | ||
13 | |||
14 | Example: | ||
15 | |||
16 | uart0: serial@14e00520 { | ||
17 | compatible = "brcm,bcm6345-uart"; | ||
18 | reg = <0x14e00520 0x18>; | ||
19 | interrupt-parent = <&periph_intc>; | ||
20 | interrupts = <2>; | ||
21 | clocks = <&periph_clk>; | ||
22 | }; | ||
23 | |||
24 | clocks { | ||
25 | periph_clk: periph_clk@0 { | ||
26 | compatible = "fixed-clock"; | ||
27 | #clock-cells = <0>; | ||
28 | clock-frequency = <54000000>; | ||
29 | }; | ||
30 | }; | ||