zephyr/drivers/spi
Ulf Magnusson ec3eff57e0 Kconfig: Use the first default with a satisfied condition
Up until now, Zephyr has patched Kconfig to use the last 'default' with
a satisfied condition, instead of the first one. I'm not sure why the
patch was added (it predates Kconfiglib), but I suspect it's related to
Kconfig.defconfig files.

There are at least three problems with the patch:

  1. It's inconsistent with how Kconfig works in other projects, which
     might confuse newcomers.

  2. Due to oversights, earlier 'range' properties are still preferred,
     as well as earlier 'default' properties on choices.

     In addition to being inconsistent, this makes it impossible to
     override 'range' properties and choice 'default' properties if the
     base definition of the symbol/choice already has 'range'/'default'
     properties.

     I've seen errors caused by the inconsistency, and I suspect there
     are more.

  3. A fork of Kconfiglib that adds the patch needs to be maintained.

Get rid of the patch and go back to standard Kconfig behavior, as
follows:

  1. Include the Kconfig.defconfig files first instead of last in
     Kconfig.zephyr.

  2. Include boards/Kconfig and arch/<arch>/Kconfig first instead of
     last in arch/Kconfig.

  3. Include arch/<arch>/soc/*/Kconfig first instead of last in
     arch/<arch>/Kconfig.

  4. Swap a few other 'source's to preserve behavior for some scattered
     symbols with multiple definitions.

     Swap 'source's in some no-op cases too, where it might match the
     intent.

  5. Reverse the defaults on symbol definitions that have more than one
     default.

     Skip defaults that are mutually exclusive, e.g. where each default
     has an 'if <some board>' condition. They are already safe.

  6. Remove the prefer-later-defaults patch from Kconfiglib.

Testing was done with a Python script that lists all Kconfig
symbols/choices with multiple defaults, along with a whitelist of fixed
symbols. The script also verifies that there are no "unreachable"
defaults hidden by defaults without conditions

As an additional test, zephyr/.config was generated before and after the
change for several samples and checked to be identical (after sorting).

This commit includes some default-related cleanups as well:

  - Simplify some symbol definitions, e.g. where a default has 'if FOO'
    when the symbol already has 'depends on FOO'.

  - Remove some redundant 'default ""' for string symbols. This is the
    implicit default.

Piggyback fixes for swapped ranges on BT_L2CAP_RX_MTU and
BT_L2CAP_TX_MTU (caused by confusing inconsistency).

Piggyback some fixes for style nits too, e.g. unindented help texts.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2018-08-10 12:38:28 -07:00
..
CMakeLists.txt drivers: Cmake: Add __ZEPHYR_SUPERVISOR__ macro for driver files. 2018-05-15 17:48:18 +03:00
Kconfig drivers: spi: Kconfig: Remove redundant 'default n' properties 2018-07-03 17:11:31 -04:00
Kconfig.dw Kconfig: Use the first default with a satisfied condition 2018-08-10 12:38:28 -07:00
Kconfig.mcux_dspi drivers: spi: Kconfig: Remove redundant 'default n' properties 2018-07-03 17:11:31 -04:00
Kconfig.nrfx drivers: spi: nrfx: Remove "optional" from driver type choices 2018-08-08 17:23:55 +02:00
Kconfig.sam0 drivers: spi: Kconfig: Remove redundant 'default n' properties 2018-07-03 17:11:31 -04:00
Kconfig.stm32 drivers: spi: Kconfig: Remove redundant 'default n' properties 2018-07-03 17:11:31 -04:00
spi_context.h drivers/spi: Slave async calls require recv frames as successful status 2018-04-13 16:02:03 +02:00
spi_dw.c drivers/spi: Handle the case when tx buf/len is NULL/>0 in DW driver 2018-05-29 16:21:08 -04:00
spi_dw.h drivers/spi: Fix tmod update on DW driver 2018-04-05 12:04:56 +03:00
spi_dw_quark_se_ss_regs.h drivers/spi: Fix typo on parameters type in DW arc regs definitions 2018-04-04 19:02:35 +02:00
spi_dw_regs.h drivers/spi: Add slave mode support to the DesignWare driver 2018-04-04 19:02:35 +02:00
spi_handlers.c spi_handlers: fix some build issues 2018-05-17 23:34:03 +03:00
spi_intel.c drivers/spi: Switch Intel driver to new SPI API 2018-04-04 19:02:35 +02:00
spi_intel.h drivers/spi: Switch Intel driver to new SPI API 2018-04-04 19:02:35 +02:00
spi_intel_regs.h drivers/spi: Switch Intel driver to new SPI API 2018-04-04 19:02:35 +02:00
spi_ll_stm32.c spi: spi_ll_stm32: (fix) Clear OVR bit condition 2018-06-04 12:35:52 -05:00
spi_ll_stm32.h spi: add SPI driver for STM32 family 2017-07-01 08:36:51 -04:00
spi_mcux_dspi.c spi: Refactor mcux dspi shim driver to use clock control interface 2018-05-10 15:43:42 -05:00
spi_nrfx_spi.c drivers: spi: Correct a typo in spi_nrfx_spi.c 2018-04-13 10:26:28 +02:00
spi_nrfx_spim.c drivers: spi: Add shim for nrfx SPIM driver 2018-04-12 14:19:53 -04:00
spi_nrfx_spis.c drivers: spi: Add shim for nrfx SPIS driver 2018-04-13 17:04:16 +02:00
spi_sam0.c spi: Remove SPI legacy API 2018-04-04 19:02:35 +02:00