:orphan: .. title:: CONFIG_UART_PL011_PORT1 .. kconfig:: CONFIG_UART_PL011_PORT1 CONFIG_UART_PL011_PORT1 ####################### *Enable driver for UART 1* Type: ``bool`` Help ==== .. code-block:: none Build the driver to utilize UART controller Port 1. Direct dependencies =================== (\ :kconfig:`SERIAL ` && \ :kconfig:`BOARD_MUSCA_B1 `) || (\ :kconfig:`SERIAL ` && \ :kconfig:`BOARD_MUSCA_S1 `) || (\ :kconfig:`SERIAL ` && \ :kconfig:`SOC_EOS_S3 `) || (\ :kconfig:`SERIAL ` && \ :kconfig:`SOC_EOS_S3 `) || (\ :kconfig:`UART_PL011 ` && \ :kconfig:`SERIAL `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y - n - n Kconfig definitions =================== At ``/arm/v2m_musca_b1/Kconfig.defconfig:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config UART_PL011_PORT1 bool default y depends on SERIAL && BOARD_MUSCA_B1 ---- At ``/arm/v2m_musca_s1/Kconfig.defconfig:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config UART_PL011_PORT1 bool default y depends on SERIAL && BOARD_MUSCA_S1 ---- At ``/arm/quicklogic_eos_s3/Kconfig.defconfig:26`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:25`` → ``/kconfig/Kconfig.soc.defconfig:1`` Menu path: (Top) .. code-block:: kconfig config UART_PL011_PORT1 bool default n depends on SERIAL && SOC_EOS_S3 ---- At ``/arm/quicklogic_eos_s3/Kconfig.defconfig:26`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` Menu path: (Top) .. code-block:: kconfig config UART_PL011_PORT1 bool default n depends on SERIAL && SOC_EOS_S3 ---- At ``/serial/Kconfig.pl011:18`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:26`` → ``/serial/Kconfig:146`` Menu path: (Top) → Device Drivers → Serial Drivers → ARM PL011 UART Driver .. code-block:: kconfig config UART_PL011_PORT1 bool "Enable driver for UART 1" depends on UART_PL011 && SERIAL help Build the driver to utilize UART controller Port 1. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*