1*c66ec88fSEmmanuel VadotARM MPS2 UART 2*c66ec88fSEmmanuel Vadot 3*c66ec88fSEmmanuel VadotRequired properties: 4*c66ec88fSEmmanuel Vadot- compatible : Should be "arm,mps2-uart" 5*c66ec88fSEmmanuel Vadot- reg : Address and length of the register set 6*c66ec88fSEmmanuel Vadot- interrupts : Reference to the UART RX, TX and overrun interrupts 7*c66ec88fSEmmanuel Vadot 8*c66ec88fSEmmanuel VadotRequired clocking property: 9*c66ec88fSEmmanuel Vadot- clocks : The input clock of the UART 10*c66ec88fSEmmanuel Vadot 11*c66ec88fSEmmanuel Vadot 12*c66ec88fSEmmanuel VadotExamples: 13*c66ec88fSEmmanuel Vadot 14*c66ec88fSEmmanuel Vadotuart0: serial@40004000 { 15*c66ec88fSEmmanuel Vadot compatible = "arm,mps2-uart"; 16*c66ec88fSEmmanuel Vadot reg = <0x40004000 0x1000>; 17*c66ec88fSEmmanuel Vadot interrupts = <0 1 12>; 18*c66ec88fSEmmanuel Vadot clocks = <&sysclk>; 19*c66ec88fSEmmanuel Vadot}; 20