zephyr/drivers/flash
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: flash: Remove usage of zephyr_library_ifdef 2018-05-28 13:23:13 -04:00
Kconfig drivers: flash: Kconfig: Remove redundant 'default n' properties 2018-07-03 17:11:31 -04:00
Kconfig.qmsi drivers: flash: Kconfig: Remove redundant 'default n' properties 2018-07-03 17:11:31 -04:00
Kconfig.sam0 drivers: flash: Kconfig: Remove redundant 'default n' properties 2018-07-03 17:11:31 -04:00
Kconfig.stm32 subsys: storage: flash_map: enable only if any flash driver is enable 2018-03-08 10:18:57 +01:00
Kconfig.w25qxxdv Kconfig: Use the first default with a satisfied condition 2018-08-10 12:38:28 -07:00
flash_handlers.c syscalls: remove policy from handler checks 2018-05-17 23:34:03 +03:00
flash_page_layout.c drivers: flash: add system calls 2017-10-30 13:20:19 -07:00
flash_priv.h drivers: flash: Assert implementation of Flash Page Layout 2017-12-12 14:23:50 -06:00
flash_sam0.c drivers: flash: atmel sam0: Fix compilation without page layout support 2018-04-12 17:26:54 -05:00
flash_stm32.c drivers: flash: stm32: Convert to use device tree 2018-01-26 09:25:57 -06:00
flash_stm32.h flash: stm32: add support for STM32F0 flash controller 2017-12-12 12:36:08 -06:00
flash_stm32f0x.c drivers: flash: stm32f0: remove CONFIG_FLASH_PAGE_SIZE 2018-03-18 17:02:53 -04:00
flash_stm32f3x.c drivers: flash: stm32: Convert to use device tree 2018-01-26 09:25:57 -06:00
flash_stm32f3x.h drivers: convert to using newly introduced integer sized types 2017-04-21 10:06:48 -05:00
flash_stm32f3x_priv.c drivers: convert to using newly introduced integer sized types 2017-04-21 10:06:48 -05:00
flash_stm32f4x.c cleanup: Use quote include instead of system include 2017-10-28 07:11:53 -04:00
flash_stm32l4x.c flash: stm32l4x: fix build 2017-12-04 10:53:12 -06:00
soc_flash_mcux.c newlib: Fix compiler warning when using Newlib 2018-04-11 16:57:12 +03:00
soc_flash_nios2_qspi.c drivers: flash: Fix Nios-II QSPI flash Coverity issue 2018-03-06 10:36:39 -08:00
soc_flash_nrf.c drivers: flash: nrf: Avoid locking when not threaded 2018-06-16 12:03:22 +02:00
soc_flash_qmsi.c drivers: flash: Assert implementation of Flash Page Layout 2017-12-12 14:23:50 -06:00
spi_flash_w25qxxdv.c drivers: flash: w25qxxdv: Add options for delay and device ID 2018-06-22 12:27:40 -04:00
spi_flash_w25qxxdv.h drivers: flash: w25qxxdv: Avoid locking when not threaded 2018-06-18 12:31:06 -04:00
spi_flash_w25qxxdv_defs.h drivers: flash: w25q: Fix typo 2018-07-17 08:27:04 -04:00