Skip to content
Snippets Groups Projects
  1. Sep 13, 2017
  2. Sep 12, 2017
  3. Aug 16, 2017
  4. Jun 05, 2017
  5. May 12, 2017
  6. Apr 07, 2017
  7. Mar 20, 2017
  8. Feb 17, 2017
  9. Jan 28, 2017
  10. Jan 14, 2017
    • Tom Rini's avatar
      arm: Remove unregister MACH_TYPE_xxx uses · 70b26cd0
      Tom Rini authored
      
      Before we can sync with the latest mach-types.h file from the Linux
      Kernel we need to remove some instances of MACH_TYPE_xxx from our
      sources.  As these values have been removed from the canonical upstream
      source we should not be using them either, so drop.
      
      Cc: Tom Warren <twarren@nvidia.com>
      Cc: Lucas Stach <dev@lynxeye.de>
      Cc: Luka Perkov <luka@openwrt.org>
      Cc: Stephen Warren <swarren@wwwdotorg.org>
      Cc: Heiko Schocher <hs@denx.de>
      Cc: Thomas Weber <weber@corscience.de>
      Cc: Lucile Quirion <lucile.quirion@savoirfairelinux.com>
      Cc: Matthias Weisser <weisserm@arcor.de>
      Cc: Suriyan Ramasami <suriyan.r@gmail.com>
      Cc: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
      Cc: Bo Shen <voice.shen@atmel.com>
      Cc: Nick Thompson <nick.thompson@gefanuc.com>
      Cc: Stefano Babic <sbabic@denx.de>
      Cc: Erik van Luijk <evanluijk@interact.nl>
      Cc: Lokesh Vutla <lokeshvutla@ti.com>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      70b26cd0
  11. Jan 11, 2017
    • Masahiro Yamada's avatar
      mmc: move more driver config options to Kconfig · 1d2c0506
      Masahiro Yamada authored
      
      Move (and rename) the following CONFIG options to Kconfig:
      
        CONFIG_DAVINCI_MMC  (renamed to CONFIG_MMC_DAVINCI)
        CONFIG_OMAP_HSMMC   (renamed to CONFIG_MMC_OMAP_HS)
        CONFIG_MXC_MMC      (renamed to CONFIG_MMC_MXC)
        CONFIG_MXS_MMC      (renamed to CONFIG_MMC_MXS)
        CONFIG_TEGRA_MMC    (renamed to CONFIG_MMC_SDHCI_TEGRA)
        CONFIG_SUNXI_MMC    (renamed to CONFIG_MMC_SUNXI)
      
      They are the same option names as used in Linux.
      
      This commit was created as follows:
      
      [1] Rename the options with the following command:
      
      find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
      -type f -print | xargs sed -i -e '
      s/CONFIG_DAVINCI_MMC/CONFIG_MMC_DAVINCI/g
      s/CONFIG_OMAP_HSMMC/CONFIG_MMC_OMAP_HS/g
      s/CONFIG_MXC_MMC/CONFIG_MMC_MXC/g
      s/CONFIG_MXS_MMC/CONFIG_MMC_MXS/g
      s/CONFIG_TEGRA_MMC/CONFIG_MMC_SDHCI_TEGRA/g
      s/CONFIG_SUNXI_MMC/CONFIG_MMC_SUNXI/g
      '
      
      [2] Commit the changes
      
      [3] Create entries in driver/mmc/Kconfig.
          (copied from Linux)
      
      [4] Move the options with the following command
      tools/moveconfig.py -y -r HEAD \
      MMC_DAVINCI MMC_OMAP_HS MMC_MXC MMC_MXS MMC_SDHCI_TEGRA MMC_SUNXI
      
      [5] Sort and align drivers/mmc/Makefile for readability
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
      Reviewed-by: default avatarMarek Vasut <marex@denx.de>
      1d2c0506
  12. Dec 04, 2016
  13. Dec 03, 2016
  14. Nov 13, 2016
  15. Sep 23, 2016
  16. Jan 19, 2016
  17. Sep 28, 2015
  18. Apr 23, 2015
  19. Apr 18, 2015
  20. Feb 24, 2015
  21. Nov 23, 2014
  22. Sep 13, 2014
  23. Aug 31, 2014
  24. Aug 30, 2014
  25. Jul 30, 2014
    • Masahiro Yamada's avatar
      Add board MAINTAINERS files · 93d4334f
      Masahiro Yamada authored
      
      We have switched to Kconfig and the boards.cfg file is going to
      be removed. We have to retrieve the board status and maintainers
      information from it.
      
      The MAINTAINERS format as in Linux Kernel would be nice
      because we can crib the scripts/get_maintainer.pl script.
      
      After some discussion, we chose to put a MAINTAINERS file under each
      board directory, not the top-level one because we want to collect
      relevant information for a board into a single place.
      
      TODO:
      Modify get_maintainer.pl to scan multiple MAINTAINERS files.
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      Suggested-by: default avatarTom Rini <trini@ti.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      93d4334f
    • Masahiro Yamada's avatar
      kconfig: add board Kconfig and defconfig files · dd84058d
      Masahiro Yamada authored
      
      This commit adds:
       - arch/${ARCH}/Kconfig
          provide a menu to select target boards
       - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig
          set CONFIG macros to the appropriate values for each board
       - configs/${TARGET_BOARD}_defconfig
          default setting of each board
      
      (This commit was automatically generated by a conversion script
      based on boards.cfg)
      
      In Linux Kernel, defconfig files are located under
      arch/${ARCH}/configs/ directory.
      It works in Linux Kernel since ARCH is always given from the
      command line for cross compile.
      
      But in U-Boot, ARCH is not given from the command line.
      Which means we cannot know ARCH until the board configuration is done.
      That is why all the "*_defconfig" files should be gathered into a
      single directory ./configs/.
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      dd84058d
  26. Jun 19, 2014
  27. Feb 26, 2014
  28. Nov 17, 2013
  29. Nov 01, 2013
  30. Jul 26, 2013
    • Christian Riesch's avatar
      da850evm: Use clrbits function with correct endianess · 3864cb21
      Christian Riesch authored
      
      The current code uses clrbits_be32 which is incorrect since we are on
      a little endian machine here. This patch fixes this issue and also removes
      some unnecessary code: Reading the current GPIO bank state is not required
      if we are using the SET and CLEAR GPIO registers for setting/clearing
      bits.
      
      Signed-off-by: default avatarChristian Riesch <christian.riesch@omicron.at>
      Cc: Nagabhushana Netagunte <nagabhushana.netagunte@ti.com>
      Cc: Rajashekhara, Sudhakar <sudhakar.raj@ti.com>
      3864cb21
  31. Jul 24, 2013
  32. Jun 21, 2013
  33. Jun 10, 2013
  34. Apr 14, 2013
Loading