:orphan: .. title:: UART_PL011_PORT0 .. option:: CONFIG_UART_PL011_PORT0 *Enable driver for UART 0* Type: ``bool`` Help ==== Build the driver to utilize UART controller Port 0. Direct dependencies =================== (\ :option:`SERIAL ` && \ :option:`BOARD_MUSCA_A `) || (\ :option:`SERIAL ` && \ :option:`BOARD_MUSCA_B1 `) || (\ :option:`UART_PL011 ` && \ :option:`SERIAL `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y Kconfig definitions =================== .. highlight:: kconfig At ``boards/arm/v2m_musca/Kconfig.defconfig:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:26`` Menu path: (Top) .. parsed-literal:: config UART_PL011_PORT0 bool default y depends on \ :option:`SERIAL ` && \ :option:`BOARD_MUSCA_A ` ---- At ``boards/arm/v2m_musca_b1/Kconfig.defconfig:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:26`` Menu path: (Top) .. parsed-literal:: config UART_PL011_PORT0 bool default y depends on \ :option:`SERIAL ` && \ :option:`BOARD_MUSCA_B1 ` ---- At ``drivers/serial/Kconfig.pl011:13`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:40`` → ``drivers/Kconfig:20`` → ``drivers/serial/Kconfig:117`` Menu path: (Top) → Device Drivers → Serial Drivers → ARM PL011 UART Driver .. parsed-literal:: config UART_PL011_PORT0 bool "Enable driver for UART 0" depends on \ :option:`UART_PL011 ` && \ :option:`SERIAL ` help Build the driver to utilize UART controller Port 0. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*