1. 05 11月, 2021 2 次提交
  2. 01 9月, 2021 2 次提交
  3. 07 12月, 2020 1 次提交
  4. 08 8月, 2020 1 次提交
  5. 17 7月, 2020 1 次提交
  6. 19 5月, 2020 1 次提交
  7. 09 5月, 2020 1 次提交
  8. 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
  9. 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
  10. 05 5月, 2019 1 次提交
  11. 18 8月, 2018 1 次提交
  12. 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
  13. 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
  14. 24 2月, 2018 1 次提交
  15. 02 9月, 2017 1 次提交
    • T
      configs: Migrate all of the existing USB symbols, except fastboot · ecad7051
      Tom Rini 提交于
      This syncs all of the currently Kconfig'd symbols out of the headers and
      into the defconfig files.  This has two exceptions, first am335x_evm
      needs to be converted to DM in SPL and then it can stop undef'ing
      CONFIG_DM_USB.  Leaving this as-is results in a build failure, and
      without work, run time failure.  The other case is am43xx_evm.h and in
      turn am43xx_evm_usbhost_boot.  The problem here is that we need DWC3 USB
      host mode in SPL, but still desire to have gadget mode in U-Boot proper.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      ecad7051
  16. 08 8月, 2017 1 次提交
  17. 26 7月, 2017 1 次提交
    • S
      Convert CONFIG_ENV_IS_IN_MMC/NAND/UBI and NOWHERE to Kconfig · 2be29653
      Simon Glass 提交于
      This converts the following to Kconfig:
         CONFIG_ENV_IS_IN_MMC
         CONFIG_ENV_IS_IN_NAND
         CONFIG_ENV_IS_IN_UBI
         CONFIG_ENV_IS_NOWHERE
      
      In fact this already exists for sunxi as a 'choice' config. However not
      all the choices are available in Kconfig yet so we cannot use that. It
      would lead to more than one option being set.
      
      In addition, one purpose of this series is to allow the environment to be
      stored in more than one place. So the existing choice is converted to a
      normal config allowing each option to be set independently.
      
      There are not many opportunities for Kconfig updates to reduce the size of
      this patch. This was tested with
      
         ./tools/moveconfig.py -i CONFIG_ENV_IS_IN_MMC
      
      And then manual updates.  This is because for CHAIN_OF_TRUST boards they
      can only have ENV_IS_NOWHERE set, so we enforce that via Kconfig logic
      now.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      2be29653
  18. 16 5月, 2017 2 次提交
  19. 15 5月, 2017 1 次提交
  20. 30 4月, 2017 1 次提交
  21. 07 4月, 2017 1 次提交
  22. 26 1月, 2017 1 次提交
  23. 22 1月, 2017 1 次提交
  24. 16 12月, 2016 1 次提交
  25. 12 10月, 2016 2 次提交
  26. 04 10月, 2016 1 次提交
    • P
      arm: imx: add i.MX6ULL 14x14 EVK board support · 55a42b33
      Peng Fan 提交于
      Add i.MX6ULL EVK board support:
      Add device tree file, which is copied from NXP Linux.
      Enabled DM_MMC, DM_GPIO, DM_I2C, DM_SPI, PINCTRL, DM_REGULATOR.
      The uart iomux settings are still keeped in board file.
      
      Boot Log:
      U-Boot 2016.09-rc1-00366-gbb419ef-dirty (Aug 11 2016 - 13:08:58 +0800)
      
      CPU:   Freescale i.MX6ULL rev1.0 at 396MHz
      CPU:   Commercial temperature grade (0C to 95C) at 15C
      Reset cause: POR
      Model: Freescale i.MX6 ULL 14x14 EVK Board
      Board: MX6ULL 14x14 EVK
      DRAM:  512 MiB
      MMC:   initialized IMX pinctrl driver
      FSL_SDHC: 0, FSL_SDHC: 1
      In:    serial
      Out:   serial
      Err:   serial
      Net:   CPU Net Initialization Failed
      No ethernet found.
      Hit any key to stop autoboot:  0
      => mmc dev 1
      switch to partitions #0, OK
      mmc1 is current device
      Signed-off-by: NPeng Fan <peng.fan@nxp.com>
      Cc: Stefano Babic <sbabic@denx.de>
      55a42b33
  27. 22 9月, 2016 1 次提交
  28. 17 9月, 2016 2 次提交
  29. 10 9月, 2016 1 次提交
  30. 03 5月, 2016 1 次提交
    • F
      mx6ul_evk: Remove CONFIG_SUPPORT_EMMC_BOOT · 58abb988
      Fabio Estevam 提交于
      mx6ul_evk does not come with a eMMC populated, so we should not
      define CONFIG_SUPPORT_EMMC_BOOT as it causes SPL to not be able
      to boot some brands of SD cards, such as SanDisk microSD HC - 8GB:
      
      U-Boot SPL 2016.05-rc1-28384-g108f8418 (Apr 19 2016 - 11:19:11)
      Trying to boot from MMC1
      spl: mmc block read error
      SPL: failed to boot from all boot devices
      ### ERROR ### Please RESET the board ###
      
      When CONFIG_SUPPORT_EMMC_BOOT is defined spl_boot_mode() returns
      MMCSD_MODE_EMMCBOOT, so remove this option to have a reliable boot
      via SD card.
      Signed-off-by: NFabio Estevam <fabio.estevam@nxp.com>
      58abb988
  31. 28 4月, 2016 1 次提交
    • F
      mx6ul_evk: Remove CONFIG_SUPPORT_EMMC_BOOT · aaeadd3f
      Fabio Estevam 提交于
      mx6ul_evk does not come with a eMMC populated, so we should not
      define CONFIG_SUPPORT_EMMC_BOOT as it causes SPL to not be able
      to boot some brands of SD cards, such as SanDisk microSD HC - 8GB:
      
      U-Boot SPL 2016.05-rc1-28384-g108f8418 (Apr 19 2016 - 11:19:11)
      Trying to boot from MMC1
      spl: mmc block read error
      SPL: failed to boot from all boot devices
      ### ERROR ### Please RESET the board ###
      
      When CONFIG_SUPPORT_EMMC_BOOT is defined spl_boot_mode() returns
      MMCSD_MODE_EMMCBOOT, so remove this option to have a reliable boot
      via SD card.
      Signed-off-by: NFabio Estevam <fabio.estevam@nxp.com>
      aaeadd3f
  32. 26 4月, 2016 3 次提交
  33. 15 3月, 2016 1 次提交