blob: 52464918cfe231e96c862e612c746bfb4a6ff684 [file] [log] [blame]
Arnd Bergmann787b0c12013-01-28 16:24:37 +00001* ARM AMBA Primecell PL011 serial UART
2
3Required properties:
4- compatible: must be "arm,primecell", "arm,pl011"
5- reg: exactly one register range with length 0x1000
6- interrupts: exactly one interrupt specifier
7
8Optional properties:
Linus Walleija81a6c62014-05-12 11:37:17 +02009- pinctrl: When present, must have one state named "default",
10 and may contain a second name named "sleep". The former
11 state sets up pins for ordinary operation whereas
12 the latter state will put the associated pins to sleep
13 when the UART is unused
14- clocks: When present, the first clock listed must correspond to
15 the clock named UARTCLK on the IP block, i.e. the clock
16 to the external serial line, whereas the second clock
17 must correspond to the PCLK clocking the internal logic
18 of the block. Just listing one clock (the first one) is
19 deprecated.
20- clocks-names: When present, the first clock listed must be named
21 "uartclk" and the second clock listed must be named
Arnd Bergmann787b0c12013-01-28 16:24:37 +000022 "apb_pclk"
23- dmas: When present, may have one or two dma channels.
24 The first one must be named "rx", the second one
25 must be named "tx".
26
27See also bindings/arm/primecell.txt
Linus Walleija81a6c62014-05-12 11:37:17 +020028
29Example:
30
31uart@80120000 {
32 compatible = "arm,pl011", "arm,primecell";
33 reg = <0x80120000 0x1000>;
34 interrupts = <0 11 IRQ_TYPE_LEVEL_HIGH>;
35 dmas = <&dma 13 0 0x2>, <&dma 13 0 0x0>;
36 dma-names = "rx", "tx";
37 clocks = <&foo_clk>, <&bar_clk>;
38 clock-names = "uartclk", "apb_pclk";
39};