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. Sep 11, 2015
  19. Apr 23, 2015
  20. Apr 18, 2015
  21. Feb 24, 2015
  22. Nov 23, 2014
  23. Sep 24, 2014
    • Masahiro Yamada's avatar
      MAINTAINERS: comment out blank M: field · 535aad29
      Masahiro Yamada authored
      
      Since commit ddaf5c8f
      (patman: RunPipe() should not pipe stdout/stderr unless asked),
      Patman spits lots of "Invalid MAINTAINERS address: '-'"
      error messages for patches with global changes.
      It takes too long for Patman to process them.
      
      Anyway, "M:    -" does not carry any important information.
      Rather, it is just like a place holder in case of assigning
      a new board maintainer.  Let's comment out.
      
      This commit can be reproduced by the following command:
      
      find . -name MAINTAINERS | xargs sed -i -e '/^M:[[:blank:]]*-$/s/^/#/'
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      535aad29
    • Masahiro Yamada's avatar
      MAINTAINERS: comment out invalid maintainers · e5a504eb
      Masahiro Yamada authored
      
      The "S:    Orphan" in MAINTAINERS means that the maintainer in the
      "M:" field is unreachable (i.e. the email address is not working).
      (Refer to the definition of "Orphan" adopted in U-Boot
      in the log of commit 31f1b654,
      "boards.cfg: move boards with invalid emails to Orphan")
      
      For patch files adding global changes, scripts/get_maintainer.pl
      adds bunch of such invalid email addresses, which results in
      tons of annoying bounce emails.
      
      This commit can be reproduced by the following command:
      
      find . -name MAINTAINERS | xargs sed -i -e '
      /^M:[[:blank:]]/ {
            N
            /S:[[:blank:]]Orphan/s/^/#/
      }
      '
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      e5a504eb
  24. Sep 13, 2014
  25. Aug 31, 2014
  26. Aug 30, 2014
  27. Aug 21, 2014
  28. 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
  29. Jun 19, 2014
  30. Feb 26, 2014
  31. Nov 17, 2013
  32. Nov 01, 2013
  33. Aug 10, 2013
    • Heiko Schocher's avatar
      video, da8xx-fb: changes for am335x usage · 765f2f08
      Heiko Schocher authored
      
      to use this driver also on am335x based boards, the following
      changes are made:
      
      - struct lcd_ctrl_config lcd_cfg is now configurable
        through board code
      
      - controller base is configurable through define
        DA8XX_LCD_CNTL_BASE. To be compatible with older
        da8xx based boards: If this define is missing, the
        DAVINCI_LCD_CNTL_BASE is used
      
      - Determine LCD IP Version, and make the driver
        working on lcd revision register values:
        Version 1:
        0x4C100102
        Version 2:
        0x4F200800
        0x4F201000
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      Cc: Stefano Babic <sbabic@denx.de>
      Cc: Anatolij Gustschin <agust@denx.de>
      Cc: Tom Rini <trini@ti.com>
      Acked-by: default avatarTom Rini <trini@ti.com>
      765f2f08
    • Heiko Schocher's avatar
      video, da8xx: move da8xx-fb.h to drivers/video · 0017f9ee
      Heiko Schocher authored
      
      the da8xx-fb driver works also on am335x boards. So move
      the da8xx-fb.h file from arch/arm/include/asm/arch-davinci
      to drivers/video, so this driver can used from am335x
      based boards. Also add WVGA panel_type.
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      Cc: Stefano Babic <sbabic@denx.de>
      Cc: Anatolij Gustschin <agust@denx.de>
      Cc: Tom Rini <trini@ti.com>
      Acked-by: default avatarTom Rini <trini@ti.com>
      0017f9ee
Loading