:orphan: .. title:: SPI_DW_ACCESS_WORD_ONLY .. option:: CONFIG_SPI_DW_ACCESS_WORD_ONLY *DesignWare SPI only allows word access* Type: ``bool`` Help ==== In some case, e.g. ARC HS Development kit, the peripheral space of DesignWare SPI only allows word access, byte access will raise exception. Direct dependencies =================== (\ :option:`SPI_DW ` && \ :option:`SPI ` && \ :option:`BOARD_HSDK `) || (\ :option:`SPI_DW ` && \ :option:`SPI `) *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definitions =================== .. highlight:: kconfig At ``boards/arc/hsdk/Kconfig.defconfig:33`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config SPI_DW_ACCESS_WORD_ONLY bool default y depends on \ :option:`SPI_DW ` && \ :option:`SPI ` && \ :option:`BOARD_HSDK ` ---- At ``drivers/spi/Kconfig.dw:35`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:38`` → ``drivers/spi/Kconfig:194`` Menu path: (Top) → Device Drivers → SPI hardware bus support → Designware SPI controller driver .. parsed-literal:: config SPI_DW_ACCESS_WORD_ONLY bool "DesignWare SPI only allows word access" depends on \ :option:`SPI_DW ` && \ :option:`SPI ` help In some case, e.g. ARC HS Development kit, the peripheral space of DesignWare SPI only allows word access, byte access will raise exception. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*