1. 31 8月, 2021 4 次提交
  2. 29 7月, 2021 3 次提交
  3. 21 2月, 2021 1 次提交
    • I
      dm: i2c: use CONFIG_IS_ENABLED macro for DM_I2C/DM_I2C_GPIO · 2147a169
      Igor Opaniuk 提交于
      Use CONFIG_IS_ENABLED() macro, which provides more convenient
      way to check $(SPL)DM_I2C/$(SPL)DM_I2C_GPIO configs
      for both SPL and U-Boot proper.
      
      CONFIG_IS_ENABLED(DM_I2C) expands to:
      - 1 if CONFIG_SPL_BUILD is undefined and CONFIG_DM_I2C is set to 'y',
      - 1 if CONFIG_SPL_BUILD is defined and CONFIG_SPL_DM_I2C is set to 'y',
      - 0 otherwise.
      
      All occurences were replaced automatically using these bash cmds:
      $ find . -type f -exec sed -i
           's/ifndef CONFIG_DM_I2C/if !CONFIG_IS_ENABLED(DM_I2C)/g' {} +
      $ find . -type f -exec sed -i
          's/ifdef CONFIG_DM_I2C/if CONFIG_IS_ENABLED(DM_I2C)/g' {} +
      $ find . -type f -exec sed -i
          's/defined(CONFIG_DM_I2C)/CONFIG_IS_ENABLED(DM_I2C)/g' {} +
      $ find . -type f -exec sed -i
          's/ifndef CONFIG_DM_I2C_GPIO/if !CONFIG_IS_ENABLED(DM_I2C_GPIO)/g' {} +
      $ find . -type f -exec sed -i
          's/ifdef CONFIG_DM_I2C_GPIO/if CONFIG_IS_ENABLED(DM_I2C_GPIO)/g' {} +
      $ find . -type f -exec sed -i
          's/defined(CONFIG_DM_I2C_GPIO)/CONFIG_IS_ENABLED(DM_I2C_GPIO)/g' {} +
      Reviewed-by: NHeiko Schocher <hs@denx.de>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      Signed-off-by: NIgor Opaniuk <igor.opaniuk@foundries.io>
      Reviewed-by: NTom Rini <trini@konsulko.com>
      Reviewed-by: NPriyanka Jain <priyanka.jain@nxp.com>
      2147a169
  4. 08 8月, 2020 1 次提交
  5. 29 7月, 2020 1 次提交
  6. 30 6月, 2020 1 次提交
  7. 05 6月, 2020 1 次提交
    • T
      Convert CONFIG_CMD_ASKENV et al to Kconfig · e985eb14
      Tom Rini 提交于
      This converts the following to Kconfig:
         CONFIG_CMD_ASKENV
         CONFIG_CMD_BMP
         CONFIG_CMD_BOOTD
         CONFIG_CMD_CACHE
         CONFIG_CMD_CRC32
         CONFIG_CMD_DHCP
         CONFIG_CMD_ENV
         CONFIG_CMD_EXPORTENV
         CONFIG_CMD_EXT2
         CONFIG_CMD_EXT4
         CONFIG_CMD_FLASH
         CONFIG_CMD_FS_GENERIC
         CONFIG_CMD_FUSE
         CONFIG_CMD_GPIO
         CONFIG_CMD_GPT
         CONFIG_CMD_GREPENV
         CONFIG_CMD_I2C
         CONFIG_CMD_IMLS
         CONFIG_CMD_IMPORTENV
         CONFIG_CMD_LOADB
         CONFIG_CMD_LOADS
         CONFIG_CMD_MEMINFO
         CONFIG_CMD_MII
         CONFIG_CMD_MTDPARTS
         CONFIG_CMD_NAND
         CONFIG_CMD_NAND_TRIMFFS
         CONFIG_CMD_NFS
         CONFIG_CMD_PCA953X
         CONFIG_CMD_PCA953X_INFO
         CONFIG_CMD_PCI
         CONFIG_CMD_PING
         CONFIG_CMD_READ
         CONFIG_CMD_SF
         CONFIG_CMD_SPI
         CONFIG_CMD_SPL
         CONFIG_CMD_SPL_WRITE_SIZE
         CONFIG_CMD_TIME
         CONFIG_CMD_TRACE
         CONFIG_CMD_UBI
         CONFIG_CMD_UBIFS
         CONFIG_CMD_UNZIP
         CONFIG_FS_EXT4
      Signed-off-by: NTom Rini <trini@konsulko.com>
      e985eb14
  8. 25 5月, 2020 1 次提交
  9. 19 5月, 2020 1 次提交
  10. 29 4月, 2020 1 次提交
    • T
      Convert CONFIG_PHYLIB et al to Kconfig · 306881a0
      Tom Rini 提交于
      This converts the following to Kconfig:
         CONFIG_PHYLIB
         CONFIG_BITBANGMII
         CONFIG_MV88E6352_SWITCH
         CONFIG_MV88E61XX_SWITCH
         CONFIG_PHYLIB_10G
         CONFIG_PHY_AQUANTIA
         CONFIG_PHY_ATHEROS
         CONFIG_PHY_BROADCOM
         CONFIG_PHY_CORTINA
         CONFIG_PHY_DAVICOM
         CONFIG_PHY_ET1011C
         CONFIG_PHY_LXT
         CONFIG_PHY_MARVELL
         CONFIG_PHY_MICREL
         CONFIG_PHY_NATSEMI
         CONFIG_PHY_REALTEK
         CONFIG_RTL8211X_PHY_FORCE_MASTER
         CONFIG_PHY_SMSC
         CONFIG_PHY_TERANETICS
         CONFIG_PHY_TI
         CONFIG_PHY_VITESSE
         CONFIG_PHY_XILINX
      Signed-off-by: NTom Rini <trini@konsulko.com>
      306881a0
  11. 30 3月, 2020 1 次提交
  12. 04 2月, 2020 1 次提交
  13. 21 11月, 2019 1 次提交
    • T
      env: Finish migration of common ENV options · a09fea1d
      Tom Rini 提交于
      - In ARMv8 NXP Layerscape platforms we also need to make use of
        CONFIG_SYS_RELOC_GD_ENV_ADDR now, do so.
      - On ENV_IS_IN_REMOTE, CONFIG_ENV_OFFSET is never used, drop the define
        to 0.
      - Add Kconfig entry for ENV_ADDR.
      - Make ENV_ADDR / ENV_OFFSET depend on the env locations that use it.
      - Add ENV_xxx_REDUND options that depend on their primary option and
        SYS_REDUNDAND_ENVIRONMENT
      - On a number of PowerPC platforms, use SPL_ENV_ADDR not CONFIG_ENV_ADDR
        for the pre-main-U-Boot environment location.
      - On ENV_IS_IN_SPI_FLASH, check not for CONFIG_ENV_ADDR being set but
        rather it being non-zero, as it will now be zero by default.
      - Rework the env_offset absolute in env/embedded.o to not use
        CONFIG_ENV_OFFSET as it was the only use of ENV_OFFSET within
        ENV_IS_IN_FLASH.
      - Migrate all platforms.
      
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Joe Hershberger <joe.hershberger@ni.com>
      Cc: Patrick Delaunay <patrick.delaunay@st.com>
      Cc: uboot-stm32@st-md-mailman.stormreply.com
      Signed-off-by: NTom Rini <trini@konsulko.com>
      Acked-by: NJoe Hershberger <joe.hershberger@ni.com>
      Reviewed-by: NSimon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
      a09fea1d
  14. 30 4月, 2019 1 次提交
  15. 15 3月, 2019 1 次提交
  16. 07 2月, 2019 1 次提交
  17. 18 8月, 2018 2 次提交
  18. 17 8月, 2018 1 次提交
    • T
      configs: Migrate CONFIG_NR_DRAM_BANKS · 86cf1c82
      Tom Rini 提交于
      We have the following cases:
      - CONFIG_NR_DRAM_BANKS was defined, migrate normally
      - CONFIG_NR_DRAM_BANKS_MAX was defined and then used for
        CONFIG_NR_DRAM_BANKS after a check, just migrate it over now.
      - CONFIG_NR_DRAM_BANKS was very oddly defined on p2771-0000-* (to 1024 +
        2), set this to 8.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      86cf1c82
  19. 19 7月, 2018 1 次提交
  20. 07 5月, 2018 1 次提交
    • T
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini 提交于
      When U-Boot started using SPDX tags we were among the early adopters and
      there weren't a lot of other examples to borrow from.  So we picked the
      area of the file that usually had a full license text and replaced it
      with an appropriate SPDX-License-Identifier: entry.  Since then, the
      Linux Kernel has adopted SPDX tags and they place it as the very first
      line in a file (except where shebangs are used, then it's second line)
      and with slightly different comment styles than us.
      
      In part due to community overlap, in part due to better tag visibility
      and in part for other minor reasons, switch over to that style.
      
      This commit changes all instances where we have a single declared
      license in the tag as both the before and after are identical in tag
      contents.  There's also a few places where I found we did not have a tag
      and have introduced one.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      83d290c5
  21. 29 4月, 2018 1 次提交
  22. 09 4月, 2018 2 次提交
  23. 16 3月, 2018 1 次提交
    • T
      Convert all of CONFIG_CONS_INDEX to Kconfig · 6f6b7cfa
      Tom Rini 提交于
      This converts the following to Kconfig:
         CONFIG_CONS_INDEX
      
      We have existing entries for this option in a number of places, with
      different guards on them.  They're also sometimes used for things not
      directly inside of the serial driver.  First, introduce a new symbol to
      guard the use of CONFIG_CONS_INDEX, so that in the case where we don't
      need this for the serial driver, but for some other use, we can still do
      it.  Next, consolidate all of these into the single entry in
      drivers/serial/Kconfig.  Finally, introduce CONS_INDEX_[023456] so that
      we can imply a correct value here to make the defconfig side of this
      smaller.
      Signed-off-by: NAdam Ford <aford173@gmail.com>
      [trini: Rework a lot of the logic here, such that I took authorship from
      Adam, but kept his S-o-B line]
      Signed-off-by: NTom Rini <trini@konsulko.com>
      6f6b7cfa
  24. 24 2月, 2018 1 次提交
  25. 23 2月, 2018 1 次提交
  26. 15 2月, 2018 1 次提交
    • T
      configs: Migrate CONFIG_SPL_FRAMEWORK · 75670c81
      Tom Rini 提交于
      Migrate the option CONFIG_SPL_FRAMEWORK and make this gate most of the
      current set of options we have in Kconfig.  We will need to have some
      options available for SPL and !SPL_FRAMEWORK so this is important.  In a
      few cases we re-order existing options so that we have less escapes from
      the SPL_FRAMEWORK guard.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      75670c81
  27. 11 2月, 2018 1 次提交
    • T
      configs: Migrate CONFIG_SYS_TEXT_BASE · 278b90ce
      Tom Rini 提交于
      On the NIOS2 and Xtensa architectures, we do not have
      CONFIG_SYS_TEXT_BASE set.  This is a strict migration of the current
      values into the defconfig and removing them from the headers.
      
      I did not attempt to add more default values in and for now will leave
      that to maintainers.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      278b90ce
  28. 13 12月, 2017 2 次提交
  29. 27 10月, 2017 3 次提交
  30. 11 10月, 2017 1 次提交