serial: introduce CONFIG_UART_USE_RUNTIME_CONFIGURE
This kconfig option enables runtime configuration of UART controllers. This allows application to call uart_configure() to configure the UART controllers and calling uart_config_get() to retrieve configuration. If this is disabled, UART controllers rely on UART driver's initialization function to properly configure the controller. The main use of this option is mainly code size reduction. Fixes #16231 Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
parent
e1d16b9ed4
commit
4e1692f85a
15 changed files with 77 additions and 1 deletions
|
@ -479,6 +479,7 @@ out:
|
|||
return ret;
|
||||
};
|
||||
|
||||
#ifdef CONFIG_UART_USE_RUNTIME_CONFIGURE
|
||||
static int uart_ns16550_config_get(const struct device *dev,
|
||||
struct uart_config *cfg)
|
||||
{
|
||||
|
@ -492,6 +493,7 @@ static int uart_ns16550_config_get(const struct device *dev,
|
|||
|
||||
return 0;
|
||||
}
|
||||
#endif /* CONFIG_UART_USE_RUNTIME_CONFIGURE */
|
||||
|
||||
/**
|
||||
* @brief Initialize individual UART port
|
||||
|
@ -949,8 +951,10 @@ static const struct uart_driver_api uart_ns16550_driver_api = {
|
|||
.poll_in = uart_ns16550_poll_in,
|
||||
.poll_out = uart_ns16550_poll_out,
|
||||
.err_check = uart_ns16550_err_check,
|
||||
#ifdef CONFIG_UART_USE_RUNTIME_CONFIGURE
|
||||
.configure = uart_ns16550_configure,
|
||||
.config_get = uart_ns16550_config_get,
|
||||
#endif
|
||||
#ifdef CONFIG_UART_INTERRUPT_DRIVEN
|
||||
|
||||
.fifo_fill = uart_ns16550_fifo_fill,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue