blob: 4db71efcaff9ceb7a8dd18f56500f5f9d57080f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
## SPDX-License-Identifier: GPL-2.0-only
config SOC_AMD_COMMON_BLOCK_UART
bool
help
Select this option to add the common functions for setting up the
UART configuration to the build.
if SOC_AMD_COMMON_BLOCK_UART
config AMD_SOC_CONSOLE_UART
bool "Use integrated AMD SoC UART controller for console"
select DRIVERS_UART_8250MEM_32
select NO_UART_ON_SUPERIO
select UART_OVERRIDE_REFCLK
endif # SOC_AMD_COMMON_BLOCK_UART
|