blob: 8e080b893b49fc3a811357e04c056f3d5d8002ae [file] [log] [blame]
Uwe Kleine-König3afbd892012-01-25 09:05:04 +01001* Energymicro efm32 UART
2
3Required properties:
4- compatible : Should be "efm32,uart"
5- reg : Address and length of the register set
6- interrupts : Should contain uart interrupt
7
Uwe Kleine-Königc0980202013-01-21 14:22:56 +01008Optional properties:
9- location : Decides the location of the USART I/O pins.
10 Allowed range : [0 .. 5]
11 Default: 0
12
Uwe Kleine-König3afbd892012-01-25 09:05:04 +010013Example:
14
15uart@0x4000c400 {
16 compatible = "efm32,uart";
17 reg = <0x4000c400 0x400>;
18 interrupts = <15>;
Uwe Kleine-Königc0980202013-01-21 14:22:56 +010019 location = <0>;
Uwe Kleine-König3afbd892012-01-25 09:05:04 +010020};