:orphan: .. title:: UART_NS16550_ACCESS_WORD_ONLY .. option:: CONFIG_UART_NS16550_ACCESS_WORD_ONLY *NS16550 only allows word access* Type: ``bool`` Help ==== In some case, e.g. ARC HS Development kit, the peripheral space of ns 16550 (DesignWare UART) only allows word access, byte access will raise exception. Direct dependencies =================== (\ :option:`UART_NS16550 ` && \ :option:`SOC_ARC_HSDK `) || (\ :option:`UART_NS16550 ` && \ :option:`SERIAL `) *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definitions =================== .. highlight:: kconfig At ``soc/arc/snps_arc_hsdk/Kconfig.defconfig:43`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:19`` → ``/home/runner/work/bridle/bridle/workspace/build/Kconfig/Kconfig.soc.defconfig:1`` Menu path: (Top) .. parsed-literal:: config UART_NS16550_ACCESS_WORD_ONLY bool default y depends on \ :option:`UART_NS16550 ` && \ :option:`SOC_ARC_HSDK ` ---- At ``drivers/serial/Kconfig.ns16550:44`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:24`` → ``drivers/serial/Kconfig:67`` Menu path: (Top) → Device Drivers → Serial Drivers → NS16550 serial driver .. parsed-literal:: config UART_NS16550_ACCESS_WORD_ONLY bool "NS16550 only allows word access" depends on \ :option:`UART_NS16550 ` && \ :option:`SERIAL ` help In some case, e.g. ARC HS Development kit, the peripheral space of ns 16550 (DesignWare UART) only allows word access, byte access will raise exception. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*