1. 12 8月, 2017 2 次提交
  2. 11 8月, 2017 1 次提交
  3. 09 8月, 2017 1 次提交
  4. 08 8月, 2017 1 次提交
  5. 01 8月, 2017 1 次提交
  6. 26 7月, 2017 1 次提交
  7. 12 7月, 2017 1 次提交
  8. 19 6月, 2017 1 次提交
  9. 22 5月, 2017 1 次提交
  10. 29 3月, 2017 1 次提交
  11. 14 3月, 2017 1 次提交
  12. 18 2月, 2017 1 次提交
  13. 28 1月, 2017 2 次提交
  14. 30 12月, 2016 2 次提交
    • M
      mmc: move some SDHCI related options to Kconfig · 45a68fe2
      Masahiro Yamada 提交于
      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: NMasahiro Yamada <yamada.masahiro@socionext.com>
      Reviewed-by: NTom Rini <trini@konsulko.com>
      Reviewed-by: NJaehoon Chung <jh80.chung@samsung.com>
      45a68fe2
    • M
      mmc: move CONFIG_SDHCI to Kconfig, renaming to CONFIG_MMC_SDHCI · e1ce61fb
      Masahiro Yamada 提交于
      Move CONFIG_SDHCI to Kconfig and rename it to CONFIG_MMC_SDHCI.
      My motivation for the rename is, ultimately, to make all the MMC
      options prefixed with MMC_ and SDHCI options with MMC_SDHCI_,
      like Linux.
      
      This commit was created as follows:
      
      [1] Rename the config option with the following command:
      find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
      -type f -print | xargs sed -i -e 's/CONFIG_SDHCI/CONFIG_MMC_SDHCI/g'
      
      [2] create the entry for MMC_SDHCI in drivers/mmc/Kconfig
      
      [3] run "tools/moveconfig.py -y MMC_SDHCI"
      
      [4] add "depends on MMC_SDHCI" to existing SDHCI driver entries
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      Reviewed-by: NTom Rini <trini@konsulko.com>
      Reviewed-by: NJaehoon Chung <jh80.chung@samsung.com>
      e1ce61fb
  15. 28 10月, 2016 1 次提交
  16. 24 10月, 2016 1 次提交
  17. 12 10月, 2016 1 次提交
  18. 20 9月, 2016 1 次提交
  19. 17 9月, 2016 7 次提交
  20. 07 9月, 2016 1 次提交
  21. 10 6月, 2016 1 次提交
  22. 26 4月, 2016 2 次提交
  23. 14 1月, 2016 1 次提交
    • S
      arm: mvebu: Add DM and OF_CONTROL support to SPL · 6451223a
      Stefan Roese 提交于
      This patch adds full DM support to the SPL on MVEBU. Currently
      only serial is supported. Other drivers will follow.
      
      This patch also adds the necessary config values for the DEBUG UART
      to the MVEBU defconfig files. This came in handy while implementing
      this DM support.
      
      Additionally, the mvebu specific SPL linker script is removed and
      this common one is used instead:
      
         arch/arm/cpu/u-boot-spl.lds
      
      This common linker script already handles all special cases. No need
      to reinvent the wheel for MVEBU here.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Luka Perkov <luka.perkov@sartura.hr>
      Cc: Dirk Eibach <dirk.eibach@gdsys.cc>
      Cc: Simon Glass <sjg@chromium.org>
      6451223a
  24. 25 11月, 2015 1 次提交
  25. 22 11月, 2015 1 次提交
  26. 21 10月, 2015 2 次提交
    • S
      arm: mvebu: Enable DM_USB on AXP / A38x boards · a79c8408
      Stefan Roese 提交于
      This patch enables DM_USB on the Marvell AXP / A38x eval boards.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Simon Glass <sjg@chromium.org>
      Cc: Luka Perkov <luka.perkov@sartura.hr>
      a79c8408
    • S
      arm: mvebu: Add DM (driver model) support · 9cffb233
      Stefan Roese 提交于
      This patch adds driver model support for some Marvell MVEBU SoC's. Including
      Armada XP and 38x. All 3 currently mainlined boards are converted. DM is now
      selected automatically for MVEBU platforms.
      
      With this DM support now available for MVEBU, hardcoding the base addresses
      and other information is not necessary any more. Probing should be done
      by using the values provided via the device tree now instead. For this
      the driver also need to be converted to DM. Patches for some of the drivers
      will follow.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Simon Glass <sjg@chromium.org>
      Cc: Luka Perkov <luka.perkov@sartura.hr>
      9cffb233
  27. 20 10月, 2015 1 次提交
  28. 22 8月, 2015 1 次提交
  29. 23 7月, 2015 1 次提交