Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Serial driver configuration options
  2. # Copyright (c) 2014-2015 Wind River Systems, Inc.
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig SERIAL
  5. bool "Serial Drivers"
  6. help
  7. Enable options for serial drivers.
  8. if SERIAL
  9. comment "Capabilities"
  10. config SERIAL_HAS_DRIVER
  11. bool
  12. help
  13. This is an option to be enabled by individual serial driver
  14. to signal that there is a serial driver. This is being used
  15. by other drivers which are dependent on serial.
  16. config SERIAL_SUPPORT_ASYNC
  17. bool
  18. help
  19. This is an option to be enabled by individual serial driver
  20. to signal that the driver and hardware supports async operation.
  21. config SERIAL_SUPPORT_INTERRUPT
  22. bool
  23. help
  24. This is an option to be enabled by individual serial driver
  25. to signal that the driver and hardware supports interrupts.
  26. config UART_USE_RUNTIME_CONFIGURE
  27. bool "Enable runtime configuration for UART controllers"
  28. default y
  29. help
  30. Enable runtime configuration of UART controllers.
  31. This allows applications to call uart_configure() to
  32. configure the UART controllers at runtime, and calling
  33. uart_config_get() to retrieve configuration. If this is
  34. disabled, UART controllers rely on UART driver's
  35. initialization function to properly configure
  36. the controller.
  37. Say y if unsure. Disable this to reduce footprint for
  38. applications that do not require runtime UART configuration.
  39. config UART_ASYNC_API
  40. bool "Enable new asynchronous UART API [EXPERIMENTAL]"
  41. depends on SERIAL_SUPPORT_ASYNC
  42. help
  43. This option enables new asynchronous UART API.
  44. config UART_INTERRUPT_DRIVEN
  45. bool "Enable UART Interrupt support"
  46. depends on SERIAL_SUPPORT_INTERRUPT
  47. help
  48. This option enables interrupt support for UART allowing console
  49. input and other UART based drivers.
  50. config UART_LINE_CTRL
  51. bool "Enable Serial Line Control API"
  52. help
  53. This enables the API for apps to control the serial line,
  54. such as baud rate, CTS and RTS.
  55. Implementation is up to individual driver.
  56. Says no if not sure.
  57. config UART_DRV_CMD
  58. bool "Enable driver commands API"
  59. help
  60. This enables the API to send extra commands to drivers.
  61. This allows drivers to expose hardware specific functions.
  62. Says no if not sure.
  63. comment "Serial Drivers"
  64. source "drivers/serial/Kconfig.acts"
  65. source "drivers/serial/Kconfig.rtt"
  66. endif # SERIAL