mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 04:20:51 +07:00
23a71fd616
This patchset attempts to standardize the naming of dt-bindings documents based on the Broadcom vendor prefix of brcm. Although there are no guidelines currently present for how to name the dt-bindings document the "vendor,binding.txt" style is in use by some of the other vendors. Acked-by: Lee Jones <lee@kernel.org> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Acked-by: Gregory Fong <gregory.0xf0@gmail.com> Acked-by: Stephen Warren <swarren@wwwdotorg.org> Signed-off-by: Scott Branden <sbranden@broadcom.com> Signed-off-by: Rob Herring <robh@kernel.org>
31 lines
575 B
Plaintext
31 lines
575 B
Plaintext
* 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>;
|
|
};
|
|
};
|