Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.17 26 lines 604 B view raw
1* VIA VT8500 and WonderMedia WM8xxx UART Controller 2 3Required 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 14Aliases may be defined to ensure the correct ordering of the uarts. 15 16Example: 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 };