summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/serial/bcm63xx-uart.txt
diff options
context:
space:
mode:
Diffstat (limited to 'dts/Bindings/serial/bcm63xx-uart.txt')
-rw-r--r--dts/Bindings/serial/bcm63xx-uart.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/dts/Bindings/serial/bcm63xx-uart.txt b/dts/Bindings/serial/bcm63xx-uart.txt
new file mode 100644
index 0000000000..5c52e5eef1
--- /dev/null
+++ b/dts/Bindings/serial/bcm63xx-uart.txt
@@ -0,0 +1,30 @@
+* BCM63xx UART
+
+Required properties:
+
+- compatible: "brcm,bcm6345-uart"
+
+- reg: The base address of the UART register bank.
+
+- interrupts: A single interrupt specifier.
+
+- clocks: Clock driving the hardware; used to figure out the baud rate
+ divisor.
+
+Example:
+
+ uart0: serial@14e00520 {
+ compatible = "brcm,bcm6345-uart";
+ reg = <0x14e00520 0x18>;
+ interrupt-parent = <&periph_intc>;
+ interrupts = <2>;
+ clocks = <&periph_clk>;
+ };
+
+ clocks {
+ periph_clk: periph_clk@0 {
+ compatible = "fixed-clock";
+ #clock-cells = <0>;
+ clock-frequency = <54000000>;
+ };
+ };