]> git.karo-electronics.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/serial/vt8500-uart.txt
Merge tag 'sound-fix-3.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[karo-tx-linux.git] / Documentation / devicetree / bindings / serial / vt8500-uart.txt
1 * VIA VT8500 and WonderMedia WM8xxx UART Controller
2
3 Required properties:
4 - compatible: should be "via,vt8500-uart"
5
6 - reg: base physical address of the controller and length of memory mapped
7         region.
8
9 - interrupts: hardware interrupt number
10
11 - clocks: shall be the input parent clock phandle for the clock. This should
12         be the 24Mhz reference clock.
13
14 Aliases may be defined to ensure the correct ordering of the uarts.
15
16 Example:
17         aliases {
18                 serial0 = &uart0;
19         };
20
21         uart0: serial@d8200000 {
22                 compatible = "via,vt8500-uart";
23                 reg = <0xd8200000 0x1040>;
24                 interrupts = <32>;
25                 clocks = <&clkuart0>;
26         };