efm32-uart.txt 468 B

1234567891011121314151617181920
  1. * Energymicro efm32 UART
  2. Required properties:
  3. - compatible : Should be "energymicro,efm32-uart"
  4. - reg : Address and length of the register set
  5. - interrupts : Should contain uart interrupt
  6. Optional properties:
  7. - energymicro,location : Decides the location of the USART I/O pins.
  8. Allowed range : [0 .. 5]
  9. Default: 0
  10. Example:
  11. uart@0x4000c400 {
  12. compatible = "energymicro,efm32-uart";
  13. reg = <0x4000c400 0x400>;
  14. interrupts = <15>;
  15. energymicro,location = <0>;
  16. };