Kconfig.acts 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. menuconfig UART_ACTS
  2. bool "Actions SoC UART driver"
  3. default n
  4. select SERIAL_HAS_DRIVER
  5. select SERIAL_SUPPORT_INTERRUPT
  6. depends on SOC_FAMILY_ACTS
  7. help
  8. This option enables the Actions SoC UART driver.
  9. config UART_DMA_DRIVEN
  10. bool
  11. prompt "Enable UART DMA support"
  12. default n
  13. depends on UART_ACTS
  14. help
  15. This option enables dma support for UART allowing console
  16. input and other UART based drivers.
  17. config UART_DMA_TX_DRIVEN
  18. bool
  19. prompt "Enable UART DMA tx support"
  20. default n
  21. depends on UART_ACTS
  22. help
  23. This option enables tx dma support for UART allowing console
  24. input and other UART based drivers.
  25. config UART_DMA_RX_DRIVEN
  26. bool
  27. prompt "Enable UART DMA rx support"
  28. default n
  29. depends on UART_ACTS
  30. help
  31. This option enables rx dma support for UART allowing console
  32. input and other UART based drivers.
  33. config UART_STUB_BAUD_RATE
  34. int "uart stub Baud Rate"
  35. default 6000000
  36. depends on STUB_DEV_UART
  37. help
  38. The baud rate for uart stub.
  39. # ---------- Port 0 ----------
  40. menuconfig UART_ACTS_PORT_0
  41. bool "Enable Actions SoC UART Port 0"
  42. default n
  43. depends on UART_ACTS
  44. help
  45. This tells the driver to configure the UART port at boot, depending on
  46. the additional configure options below.
  47. config UART_ACTS_PORT_0_NAME
  48. string "Port 0 Device Name"
  49. default "UART_0"
  50. depends on UART_ACTS_PORT_0
  51. help
  52. This is the device name for UART, and is included in the device
  53. struct.
  54. config UART_ACTS_PORT_0_BAUD_RATE
  55. int "Port 0 Baud Rate"
  56. range 1200 6000000
  57. default 3000000
  58. depends on UART_ACTS_PORT_0
  59. help
  60. The baud rate for UART port to be set to at boot.
  61. Leave at 0 to skip initialization.
  62. config UART_ACTS_PORT_0_IRQ_PRIORITY
  63. int "Port 0 Interrupt Priority"
  64. default 1
  65. depends on UART_ACTS_PORT_0
  66. help
  67. Port 0 Interrupt Priority
  68. config UART_ACTS_PORT_0_PRIORITY
  69. int "Port 0 Init priority"
  70. default 20
  71. depends on UART_ACTS_PORT_0
  72. help
  73. Port 0 device driver initialization priority.
  74. # ---------- Port 1 ----------
  75. menuconfig UART_ACTS_PORT_1
  76. bool "Enable Actions SoC UART Port 1"
  77. default n
  78. depends on UART_ACTS
  79. help
  80. This tells the driver to configure the UART port at boot, depending on
  81. the additional configure options below.
  82. config UART_ACTS_PORT_1_NAME
  83. string "Port 1 Device Name"
  84. default "UART_1"
  85. depends on UART_ACTS_PORT_1
  86. help
  87. This is the device name for UART, and is included in the device
  88. struct.
  89. config UART_ACTS_PORT_1_BAUD_RATE
  90. int "Port 1 Baud Rate"
  91. default 115200
  92. depends on UART_ACTS_PORT_1
  93. help
  94. The baud rate for UART port to be set to at boot.
  95. Leave at 0 to skip initialization.
  96. config UART_ACTS_PORT_1_IRQ_PRIORITY
  97. int "Port 1 Interrupt Priority"
  98. default 1
  99. depends on UART_ACTS_PORT_1
  100. help
  101. Port 1 Interrupt Priority
  102. config UART_ACTS_PORT_1_PRIORITY
  103. int "Port 1 Init priority"
  104. default 20
  105. depends on UART_ACTS_PORT_1
  106. help
  107. Port 1 device driver initialization priority.
  108. # ---------- Port 2 ----------
  109. menuconfig UART_ACTS_PORT_2
  110. bool "Enable Actions SoC UART Port 2"
  111. default n
  112. depends on UART_ACTS
  113. help
  114. This tells the driver to configure the UART port at boot, depending on
  115. the additional configure options below.
  116. config UART_ACTS_PORT_2_NAME
  117. string "Port 2 Device Name"
  118. default "UART_2"
  119. depends on UART_ACTS_PORT_2
  120. help
  121. This is the device name for UART, and is included in the device
  122. struct.
  123. config UART_ACTS_PORT_2_BAUD_RATE
  124. int "Port 2 Baud Rate"
  125. default 115200
  126. depends on UART_ACTS_PORT_2
  127. help
  128. The baud rate for UART port to be set to at boot.
  129. Leave at 0 to skip initialization.
  130. config UART_ACTS_PORT_2_IRQ_PRIORITY
  131. int "Port 2 Interrupt Priority"
  132. default 1
  133. depends on UART_ACTS_PORT_2
  134. help
  135. Port 2 Interrupt Priority
  136. config UART_ACTS_PORT_2_PRIORITY
  137. int "Port 2 Init priority"
  138. default 20
  139. depends on UART_ACTS_PORT_2
  140. help
  141. Port 2 device driver initialization priority.