Skip to content
Snippets Groups Projects
  1. Oct 03, 2017
  2. Aug 28, 2017
  3. Aug 15, 2017
  4. Aug 13, 2017
  5. Jul 26, 2017
    • Simon Glass's avatar
      Convert CONFIG_ENV_IS_IN_MMC/NAND/UBI and NOWHERE to Kconfig · 2be29653
      Simon Glass authored
      
      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: default avatarSimon Glass <sjg@chromium.org>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      2be29653
  6. Jun 19, 2017
  7. Apr 27, 2017
  8. Apr 13, 2017
  9. Apr 05, 2017
  10. Mar 16, 2017
  11. Jan 28, 2017
  12. Jan 24, 2017
  13. Jan 21, 2017
  14. Jan 11, 2017
  15. Dec 29, 2016
  16. Oct 30, 2016
  17. Oct 23, 2016
  18. Oct 12, 2016
  19. Sep 09, 2016
  20. Jul 31, 2016
  21. Jul 26, 2016
    • Xu Ziyuan's avatar
      rockchip: add basic support for evb-rk3288 board · 744368d6
      Xu Ziyuan authored
      
      evb-3288 board RK3288-based development board with 2 USB ports, HDMI,
      VGA, micro-SD card, audio, WiFi and Gigabit Ethernet. It also includes
      on-board 8G eMMC and 2GB of SDRAM. Expansion connector provide access to
      display pins, I2C, SPI, UART and GPIOs. This add some basic files
      required to allow the board to output serial messaged and can run
      command(mmc info etc).
      
      evb-rk3288 also supports booting from eMMC or SD card, the default is eMMC.
      
      Signed-off-by: default avatarZiyuan Xu <xzy.xu@rock-chips.com>
      Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
      744368d6
  22. Jun 17, 2016
  23. Jun 09, 2016
  24. May 27, 2016
    • Stephen Warren's avatar
      Rename reset to sysreset · 11636258
      Stephen Warren authored
      
      The current reset API implements a method to reset the entire system.
      In the near future, I'd like to introduce code that implements the device
      tree reset bindings; i.e. the equivalent of the Linux kernel's reset API.
      This controls resets to individual HW blocks or external chips with reset
      signals. It doesn't make sense to merge the two APIs into one since they
      have different semantic purposes. Resolve the naming conflict by renaming
      the existing reset API to sysreset instead, so the new reset API can be
      called just reset.
      
      Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      11636258
  25. Apr 25, 2016
  26. Mar 22, 2016
  27. Mar 14, 2016
    • Simon Glass's avatar
      Kconfig: Move CONFIG_FIT and related options to Kconfig · 73223f0e
      Simon Glass authored
      
      There are already two FIT options in Kconfig but the CONFIG options are
      still in the header files. We need to do a proper move to fix this.
      
      Move these options to Kconfig and tidy up board configuration:
      
         CONFIG_FIT
         CONFIG_OF_BOARD_SETUP
         CONFIG_OF_SYSTEM_SETUP
         CONFIG_FIT_SIGNATURE
         CONFIG_FIT_BEST_MATCH
         CONFIG_FIT_VERBOSE
         CONFIG_OF_STDOUT_VIA_ALIAS
         CONFIG_RSA
      
      Unfortunately the first one is a little complicated. We need to make sure
      this option is not enabled in SPL by this change. Also this option is
      enabled automatically in the host builds by defining CONFIG_FIT in the
      image.h file. To solve this, add a new IMAGE_USE_FIT #define which can
      be used in files that are built on the host but must also build for U-Boot
      and SPL.
      
      Note: Masahiro's moveconfig.py script is amazing.
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      [trini: Add microblaze change, various configs/ re-applies]
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      73223f0e
    • Simon Glass's avatar
      Correct defconfig ordering · 4edb9458
      Simon Glass authored
      
      Various boards have the wrong Kconfig ordering now. To avoid a misleading
      
      diff in the next patch, reorder the configuration correctly.
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      4edb9458
  28. Feb 06, 2016
  29. Jan 26, 2016
  30. Jan 22, 2016
    • Simon Glass's avatar
      rockchip: Add support for Raxda Rock 2 · 7c1058fa
      Simon Glass authored
      
      This board includes an RK3288 SoC on a SOM. It can be mounted on a
      base-board which provides a wide range of peripherals.
      
      So far this is verified to boot to a prompt from a microSD card. The serial
      console works as well as HDMI.
      
      Thanks to Tom Cubie for sending me a board.
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      7c1058fa
Loading