brintos

brintos / linux-shallow public Read only

0
0
Text · 407 B · 128cc6a Raw
20 lines · plain
1ARM MPS2 UART2 3Required properties:4- compatible	: Should be "arm,mps2-uart"5- reg		: Address and length of the register set6- interrupts	: Reference to the UART RX, TX and overrun interrupts7 8Required clocking property:9- clocks	  : The input clock of the UART10 11 12Examples:13 14uart0: serial@40004000 {15	compatible = "arm,mps2-uart";16	reg = <0x40004000 0x1000>;17	interrupts = <0 1 12>;18	clocks = <&sysclk>;19};20