forked from Minki/linux
4ea8dafd24
Wolfram Sang pointed out that "efm32,$device" is non-standard. So use the common scheme and prefix device with "efm32-". The old compatible string is left in place until arch/arm/boot/dts/efm32* is fixed. Reported-by: Wolfram Sang <wsa@the-dreams.de> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Acked-by: Wolfram Sang <wsa@the-dreams.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21 lines
456 B
Plaintext
21 lines
456 B
Plaintext
* Energymicro efm32 UART
|
|
|
|
Required properties:
|
|
- compatible : Should be "energymicro,efm32-uart"
|
|
- reg : Address and length of the register set
|
|
- interrupts : Should contain uart interrupt
|
|
|
|
Optional properties:
|
|
- efm32,location : Decides the location of the USART I/O pins.
|
|
Allowed range : [0 .. 5]
|
|
Default: 0
|
|
|
|
Example:
|
|
|
|
uart@0x4000c400 {
|
|
compatible = "energymicro,efm32-uart";
|
|
reg = <0x4000c400 0x400>;
|
|
interrupts = <15>;
|
|
efm32,location = <0>;
|
|
};
|