Skip to content
Snippets Groups Projects
  1. Jan 02, 2017
  2. Dec 29, 2016
    • Masahiro Yamada's avatar
      mmc: move some SDHCI related options to Kconfig · 45a68fe2
      Masahiro Yamada authored
      
      While I moved the options, I also renamed them so that they are all
      prefixed with MMC_SDHCI_.
      
      This commit was created in the following steps.
      
      [1] Rename with the following command
      find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
      -type f -print | xargs sed -i -e '
      s/CONFIG_MMC_SDMA/CONFIG_MMC_SDHCI_SDMA/g
      s/CONFIG_BCM2835_SDHCI/CONFIG_MMC_SDHCI_BCM2835/g
      s/CONFIG_KONA_SDHCI/CONFIG_MMC_SDHCI_KONA/g
      s/CONFIG_MV_SDHCI/CONFIG_MMC_SDHCI_MV/g
      s/CONFIG_S5P_SDHCI/CONFIG_MMC_SDHCI_S5P/g
      s/CONFIG_SPEAR_SDHCI/CONFIG_MMC_SDHCI_SPEAR/g
      '
      
      [2] create the Kconfig entries in drivers/mmc/Kconfig
      
      [3] Move the options by the following command
      tools/moveconfig.py -y MMC_SDHCI_SDMA MMC_SDHCI_BCM2835 \
      MMC_SDHCI_KONA MMC_SDHCI_MV MMC_SDHCI_S5P MMC_SDHCI_SPEAR
      
      [4] Sort drivers/mmc/Makefile for readability
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
      Reviewed-by: default avatarTom Rini <trini@konsulko.com>
      Reviewed-by: default avatarJaehoon Chung <jh80.chung@samsung.com>
      45a68fe2
  3. Dec 27, 2016
    • Ajay Bhargav's avatar
      Update Maintainer and Author's email address · c7c47ca2
      Ajay Bhargav authored
      
      I am not longer using my old email address
      "ajay.bhargav@einfochips.com". For U-Boot development email address is
      now updated to contact@8051projects.net
      
      Signed-off-by: default avatarAjay Bhargav <contact@8051projects.net>
      c7c47ca2
    • Masahiro Yamada's avatar
      ARM: revive CONFIG_USE_ARCH_MEMCPY/MEMSET for UniPhier and Tegra · 085be482
      Masahiro Yamada authored
      
      Commit be72591b ("Kconfig: Move USE_ARCH_MEMCPY/MEMSET to
      Kconfig") is misconversion.
      
      The original logic in include/configs/uniphier.h was as follows:
      
        #if !defined(CONFIG_SPL_BUILD) && !defined(CONFIG_ARM64)
        #define CONFIG_USE_ARCH_MEMSET
        #define CONFIG_USE_ARCH_MEMCPY
        #endif
      
      This means those configs were enabled when building U-Boot proper,
      but disabled when building SPL.  Likewise for Tegra.
      
      Now "depends on !SPL" prevents any boards with SPL support
      from reaching these options.  This changed the behavior for
      UniPhier and Tegra SoC family.
      
      Please notice these two options only control the U-Boot proper
      build.  As you see arch/arm/Makefile, ARM-specific memset/memcpy
      are never compiled for SPL.  So, __HAVE_ARCH_MEMCPY/MEMSET should
      not set for SPL.
      
      Fixes: be72591b ("Kconfig: Move USE_ARCH_MEMCPY/MEMSET to Kconfig")
      Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
      Reviewed-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
      085be482
  4. Dec 22, 2016
  5. Dec 21, 2016
    • Konstantin Porotchkin's avatar
      arm64: mvebu: Fix A8K memory mapping and add documentation · 0d92f214
      Konstantin Porotchkin authored
      
      Fix the MMU mapping for A8K device family:
       - Separate A7K and A8K memory mappings
       - Fix memory regions by including IO mapping for all
         3 PCIe interfaces existing on each connected CP110 controller
      Add A8K memory mapping documentation with all regions
      configured by Marvell ATF.
      
      Change-Id: I9c930569b1853900f5fba2d5db319b092cc7a2a6
      Signed-off-by: default avatarKonstantin Porotchkin <kostap@marvell.com>
      Signed-off-by: default avatarStefan Roese <sr@denx.de>
      Cc: Stefan Roese <sr@denx.de>
      Cc: Nadav Haklai <nadavh@marvell.com>
      Cc: Neta Zur Hershkovits <neta@marvell.com>
      Cc: Omri Itach <omrii@marvell.com>
      Cc: Igal Liberman <igall@marvell.com>
      Cc: Haim Boot <hayim@marvell.com>
      Cc: Hanna Hawa <hannah@marvell.com>
      0d92f214
  6. Dec 20, 2016
  7. Dec 19, 2016
  8. Dec 16, 2016
Loading