hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
* 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.
 
 
Optional properties:
 
- clock-names: Should be "refclk".
 
Example:
 
   uart0: serial@14e00520 {
       compatible = "brcm,bcm6345-uart";
       reg = <0x14e00520 0x18>;
       interrupt-parent = <&periph_intc>;
       interrupts = <2>;
       clocks = <&periph_clk>;
       clock-names = "refclk";
   };
 
   clocks {
       periph_clk: periph_clk@0 {
           compatible = "fixed-clock";
           #clock-cells = <0>;
           clock-frequency = <54000000>;
       };
   };