123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- menuconfig UART_ACTS
- bool "Actions SoC UART driver"
- default n
- select SERIAL_HAS_DRIVER
- select SERIAL_SUPPORT_INTERRUPT
- depends on SOC_FAMILY_ACTS
- help
- This option enables the Actions SoC UART driver.
-
- config UART_DMA_DRIVEN
- bool
- prompt "Enable UART DMA support"
- default n
- depends on UART_ACTS
- help
- This option enables dma support for UART allowing console
- input and other UART based drivers.
-
- config UART_DMA_TX_DRIVEN
- bool
- prompt "Enable UART DMA tx support"
- default n
- depends on UART_ACTS
- help
- This option enables tx dma support for UART allowing console
- input and other UART based drivers.
- config UART_DMA_RX_DRIVEN
- bool
- prompt "Enable UART DMA rx support"
- default n
- depends on UART_ACTS
- help
- This option enables rx dma support for UART allowing console
- input and other UART based drivers.
- config UART_STUB_BAUD_RATE
- int "uart stub Baud Rate"
- default 6000000
- depends on STUB_DEV_UART
- help
- The baud rate for uart stub.
- # ---------- Port 0 ----------
- menuconfig UART_ACTS_PORT_0
- bool "Enable Actions SoC UART Port 0"
- default n
- depends on UART_ACTS
- help
- This tells the driver to configure the UART port at boot, depending on
- the additional configure options below.
- config UART_ACTS_PORT_0_NAME
- string "Port 0 Device Name"
- default "UART_0"
- depends on UART_ACTS_PORT_0
- help
- This is the device name for UART, and is included in the device
- struct.
- config UART_ACTS_PORT_0_BAUD_RATE
- int "Port 0 Baud Rate"
- range 1200 6000000
- default 3000000
- depends on UART_ACTS_PORT_0
- help
- The baud rate for UART port to be set to at boot.
- Leave at 0 to skip initialization.
- config UART_ACTS_PORT_0_IRQ_PRIORITY
- int "Port 0 Interrupt Priority"
- default 1
- depends on UART_ACTS_PORT_0
- help
- Port 0 Interrupt Priority
- config UART_ACTS_PORT_0_PRIORITY
- int "Port 0 Init priority"
- default 20
- depends on UART_ACTS_PORT_0
- help
- Port 0 device driver initialization priority.
-
- # ---------- Port 1 ----------
- menuconfig UART_ACTS_PORT_1
- bool "Enable Actions SoC UART Port 1"
- default n
- depends on UART_ACTS
- help
- This tells the driver to configure the UART port at boot, depending on
- the additional configure options below.
- config UART_ACTS_PORT_1_NAME
- string "Port 1 Device Name"
- default "UART_1"
- depends on UART_ACTS_PORT_1
- help
- This is the device name for UART, and is included in the device
- struct.
- config UART_ACTS_PORT_1_BAUD_RATE
- int "Port 1 Baud Rate"
- default 115200
- depends on UART_ACTS_PORT_1
- help
- The baud rate for UART port to be set to at boot.
- Leave at 0 to skip initialization.
- config UART_ACTS_PORT_1_IRQ_PRIORITY
- int "Port 1 Interrupt Priority"
- default 1
- depends on UART_ACTS_PORT_1
- help
- Port 1 Interrupt Priority
- config UART_ACTS_PORT_1_PRIORITY
- int "Port 1 Init priority"
- default 20
- depends on UART_ACTS_PORT_1
- help
- Port 1 device driver initialization priority.
- # ---------- Port 2 ----------
- menuconfig UART_ACTS_PORT_2
- bool "Enable Actions SoC UART Port 2"
- default n
- depends on UART_ACTS
- help
- This tells the driver to configure the UART port at boot, depending on
- the additional configure options below.
- config UART_ACTS_PORT_2_NAME
- string "Port 2 Device Name"
- default "UART_2"
- depends on UART_ACTS_PORT_2
- help
- This is the device name for UART, and is included in the device
- struct.
- config UART_ACTS_PORT_2_BAUD_RATE
- int "Port 2 Baud Rate"
- default 115200
- depends on UART_ACTS_PORT_2
- help
- The baud rate for UART port to be set to at boot.
- Leave at 0 to skip initialization.
- config UART_ACTS_PORT_2_IRQ_PRIORITY
- int "Port 2 Interrupt Priority"
- default 1
- depends on UART_ACTS_PORT_2
- help
- Port 2 Interrupt Priority
- config UART_ACTS_PORT_2_PRIORITY
- int "Port 2 Init priority"
- default 20
- depends on UART_ACTS_PORT_2
- help
- Port 2 device driver initialization priority.
|