Kconfig 498 B

123456789101112131415161718192021222324252627282930
  1. #
  2. # QE Communication options
  3. #
  4. menu "QE Options"
  5. depends on QUICC_ENGINE
  6. config UCC_SLOW
  7. bool "UCC Slow Protocols Support"
  8. default n
  9. select UCC
  10. help
  11. This option provides qe_lib support to UCC slow
  12. protocols: UART, BISYNC, QMC
  13. config UCC_FAST
  14. bool "UCC Fast Protocols Support"
  15. default n
  16. select UCC
  17. select UCC_SLOW
  18. help
  19. This option provides qe_lib support to UCC fast
  20. protocols: HDLC, Ethernet, ATM, transparent
  21. config UCC
  22. bool
  23. default y if UCC_FAST || UCC_SLOW
  24. endmenu