mcf-uart.txt 334 B

12345678910111213141516171819
  1. Freescale ColdFire UART
  2. Required properties:
  3. - compatible : should be "fsl,mcf-uart"
  4. - reg: start address and size of the registers
  5. Example:
  6. soc {
  7. compatible = "simple-bus";
  8. #address-cells = <1>;
  9. #size-cells = <1>;
  10. uart0: uart@fc060000 {
  11. compatible = "fsl,mcf-uart";
  12. reg = <0xfc060000 0x40>;
  13. status = "disabled";
  14. };
  15. };