serial.txt 717 B

123456789101112131415161718192021222324252627282930313233
  1. * Serial
  2. Currently defined compatibles:
  3. - fsl,cpm1-smc-uart
  4. - fsl,cpm2-smc-uart
  5. - fsl,cpm1-scc-uart
  6. - fsl,cpm2-scc-uart
  7. - fsl,qe-uart
  8. Modem control lines connected to GPIO controllers are listed in the gpios
  9. property as described in booting-without-of.txt, section IX.1 in the following
  10. order:
  11. CTS, RTS, DCD, DSR, DTR, and RI.
  12. The gpios property is optional and can be left out when control lines are
  13. not used.
  14. Example:
  15. serial@11a00 {
  16. device_type = "serial";
  17. compatible = "fsl,mpc8272-scc-uart",
  18. "fsl,cpm2-scc-uart";
  19. reg = <11a00 20 8000 100>;
  20. interrupts = <28 8>;
  21. interrupt-parent = <&PIC>;
  22. fsl,cpm-brg = <1>;
  23. fsl,cpm-command = <00800000>;
  24. gpios = <&gpio_c 15 0
  25. &gpio_d 29 0>;
  26. };