16b9c1fa2SKumar Gala* Synopsys ARC UART : Non standard UART used in some of the ARC FPGA boards 26b9c1fa2SKumar Gala 36b9c1fa2SKumar GalaRequired properties: 46b9c1fa2SKumar Gala- compatible : "snps,arc-uart" 56b9c1fa2SKumar Gala- reg : offset and length of the register set for the device. 66b9c1fa2SKumar Gala- interrupts : device interrupt 76b9c1fa2SKumar Gala- clock-frequency : the input clock frequency for the UART 86b9c1fa2SKumar Gala- current-speed : baud rate for UART 96b9c1fa2SKumar Gala 106b9c1fa2SKumar Galae.g. 116b9c1fa2SKumar Gala 126b9c1fa2SKumar Galaarcuart0: serial@c0fc1000 { 136b9c1fa2SKumar Gala compatible = "snps,arc-uart"; 146b9c1fa2SKumar Gala reg = <0xc0fc1000 0x100>; 156b9c1fa2SKumar Gala interrupts = <5>; 166b9c1fa2SKumar Gala clock-frequency = <80000000>; 176b9c1fa2SKumar Gala current-speed = <115200>; 186b9c1fa2SKumar Gala}; 196b9c1fa2SKumar Gala 206b9c1fa2SKumar GalaNote: Each port should have an alias correctly numbered in "aliases" node. 216b9c1fa2SKumar Gala 226b9c1fa2SKumar Galae.g. 236b9c1fa2SKumar Galaaliases { 246b9c1fa2SKumar Gala serial0 = &arcuart0; 256b9c1fa2SKumar Gala}; 26