Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | # SPI driver configuration options # Copyright (c) 2015-2016 Intel Corporation # SPDX-License-Identifier: Apache-2.0 # # SPI Drivers # menuconfig SPI bool "SPI hardware bus support" help Enable support for the SPI hardware bus. if SPI config SPI_ASYNC bool "Asynchronous call support" select POLL help This option enables the asynchronous API calls. config SPI_SLAVE bool "Slave support [EXPERIMENTAL]" select EXPERIMENTAL help Enables Driver SPI slave operations. Slave support depends on the driver and the hardware it runs on. config SPI_EXTENDED_MODES bool "Extended modes [EXPERIMENTAL]" select EXPERIMENTAL help Enables extended operations in the SPI API. Currently, this enables the possibility to select the line mode (single/dual/ quad/octal), though none of these mode are really supported as it would require more features exposed into the SPI buffer. config SPI_INIT_PRIORITY int "Init priority" default 70 help Device driver initialization priority. config SPI_COMPLETION_TIMEOUT_TOLERANCE int "Completion timeout tolerance (ms)" default 200 help The tolerance value in ms for the SPI completion timeout logic. module = SPI module-str = spi source "subsys/logging/Kconfig.template.log_config" source "drivers/spi/Kconfig.b91" source "drivers/spi/Kconfig.stm32" source "drivers/spi/Kconfig.dw" source "drivers/spi/Kconfig.mcux_dspi" source "drivers/spi/Kconfig.mcux_flexcomm" source "drivers/spi/Kconfig.mcux_lpspi" source "drivers/spi/Kconfig.rv32m1_lpspi" source "drivers/spi/Kconfig.sam" source "drivers/spi/Kconfig.sam0" source "drivers/spi/Kconfig.sifive" source "drivers/spi/Kconfig.spi_emul" source "drivers/spi/Kconfig.nrfx" source "drivers/spi/Kconfig.cc13xx_cc26xx" source "drivers/spi/Kconfig.litex" source "drivers/spi/Kconfig.oc_simple" source "drivers/spi/Kconfig.xec_qmspi" source "drivers/spi/Kconfig.gecko" source "drivers/spi/Kconfig.xlnx" source "drivers/spi/Kconfig.esp32" source "drivers/spi/Kconfig.test" source "drivers/spi/Kconfig.psoc6" source "drivers/spi/Kconfig.npcx_fiu" source "drivers/spi/Kconfig.bitbang" source "drivers/spi/Kconfig.xec_qmspi_ldma" source "drivers/spi/Kconfig.gd32" endif # SPI |