| Revision tags: v00.04.15, v00.04.14, v00.04.13, v00.04.12, v00.04.11, v00.04.10, v00.04.09, v00.04.08, v00.04.07, v00.04.06, v00.04.05, v00.04.04, v00.04.03, v00.04.02, v00.04.01, v00.04.00, v2021.04, v00.03.03, v2021.01, v2020.10, v2020.07, v00.02.13, v2020.04, v2020.01, v2019.10, v00.02.05, v00.02.04, v00.02.03, v00.02.02, v00.02.01, v2019.07, v00.02.00, v2019.04, v2018.07, v2018.03, v2018.01, v2017.11 | 
|
| #
                c1a16c3a |  | 14-Apr-2017 | Tom Rini <trini@konsulko.com> | Merge branch 'master' of git://git.denx.de/u-boot-socfpga 
 | 
| #
                8baa1783 |  | 23-Mar-2017 | Stephen Arnold <sarnold@vctlabs.com> | ARM: socfpga: add fpga build and bsp handoff instructions to readme
 This patch adds the steps to manually (re)build a Quartus FPGA project,
 generate the required BSP glue, and update u-boot handoff
 ARM: socfpga: add fpga build and bsp handoff instructions to readme
 This patch adds the steps to manually (re)build a Quartus FPGA project,
 generate the required BSP glue, and update u-boot handoff files for
 mainline SPL support. Requires Quartus toolchain and current U-Boot.
 
 Signed-off-by: Steve Arnold <stephen.arnold42@gmail.com>
 Cc: Dinh Nguyen <dinguyen@kernel.org>
 Cc: Stefan Roese <sr@denx.de>
 Cc: Marek Vasut <marex@denx.de>
 show more ...  
 | 
| #
                54925327 |  | 30-Jan-2017 | Masahiro Yamada <yamada.masahiro@socionext.com> | mmc: move CONFIG_GENERIC_MMC to Kconfig
 Now, CONFIG_GENERIC_MMC seems equivalent to CONFIG_MMC.
 
 Let's create an entry for "config GENERIC_MMC" with "default MMC",
 then convert all macro defines in
 mmc: move CONFIG_GENERIC_MMC to Kconfig
 Now, CONFIG_GENERIC_MMC seems equivalent to CONFIG_MMC.
 
 Let's create an entry for "config GENERIC_MMC" with "default MMC",
 then convert all macro defines in headers to Kconfig.  Almost all
 of the defines will go away.
 
 I see only two exceptions:
 configs/blanche_defconfig
 configs/sandbox_noblk_defconfig
 
 They define CONFIG_GENERIC_MMC, but not CONFIG_MMC.  Something
 might be wrong with these two boards, so should be checked later.
 
 Anyway, this is the output of the moveconfig tool.
 
 This commit was created as follows:
 
 [1] create a config entry in drivers/mmc/Kconfig
 
 [2] tools/moveconfig.py -r HEAD GENERIC_MMC
 
 [3] manual clean-up of garbage comments in doc/README.* and
 include/configs/*.h
 
 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
 Reviewed-by: Tom Rini <trini@konsulko.com>
 show more ...  
 | 
| #
                ae4c81e9 |  | 09-Jan-2017 | Masahiro Yamada <yamada.masahiro@socionext.com> | mmc: move DesignWare-based drivers to Kconfig
 Move (and rename) the following CONFIG options to Kconfig:
 
 CONFIG_EXYNOS_DWMMC  (renamed to CONFIG_MMC_DW_EXYNOS)
 CONFIG_HIKEY_DWMMC   (renamed to
 mmc: move DesignWare-based drivers to Kconfig
 Move (and rename) the following CONFIG options to Kconfig:
 
 CONFIG_EXYNOS_DWMMC  (renamed to CONFIG_MMC_DW_EXYNOS)
 CONFIG_HIKEY_DWMMC   (renamed to CONFIG_MMC_DW_K3)
 CONFIG_SOCFPGA_DWMMC (renamed to CONFIG_MMC_DW_SOCFPGA)
 
 The "HIKEY" is a board name, so it is not suitable for the MMC
 controller name.  I am following the name used in Linux.
 
 This commit was generated as follows:
 
 [1] Rename the config options with the following command:
 find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
 -type f -print | xargs sed -i -e '
 s/CONFIG_EXYNOS_DWMMC/CONFIG_MMC_DW_EXYNOS/g
 s/CONFIG_HIKEY_DWMMC/CONFIG_MMC_DW_K3/g
 s/CONFIG_SOCFPGA_DWMMC/CONFIG_MMC_DW_SOCFPGA/g
 '
 
 [2] Commit the changes
 
 [3] Create the entries in drivers/mmc/Kconfig
 (with default y for EXYNOS and SOCFPGA)
 
 [4] Run the following:
 tools/moveconfig.py -y -r HEAD MMC_DW_EXYNOS MMC_DW_K3 MMC_DW_SOCFPGA
 
 [5] Sort and align drivers/mmc/Makefile for readability
 
 [6] Clean-up doc/README.socfpga by hand
 
 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
 Reviewed-by: Marek Vasut <marex@denx.de>
 show more ...  
 | 
| #
                55ed3b46 |  | 09-Jan-2017 | Masahiro Yamada <yamada.masahiro@socionext.com> | mmc: move CONFIG_DWMMC to Kconfig, renaming to CONFIG_MMC_DW
 This commit was created as follows:
 
 [1] Rename the option with the following command:
 find . -name .git -prune -o ! -path ./scripts/conf
 mmc: move CONFIG_DWMMC to Kconfig, renaming to CONFIG_MMC_DW
 This commit was created as follows:
 
 [1] Rename the option with the following command:
 find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
 -type f -print | xargs sed -i -e 's/CONFIG_DWMMC/CONFIG_MMC_DW/g'
 
 [2] create the entry for MMC_DW in drivers/mmc/Kconfig
 (the prompt and help were copied from Linux)
 
 [3] run "tools/moveconfig.py -y MMC_DW"
 
 [4] add "depends on MMC_DW" to the MMC_DW_ROCKCHIP entry
 
 [5] Clean-up doc/README.socfpga by hand
 
 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
 Reviewed-by: Marek Vasut <marex@denx.de>
 show more ...  
 | 
| #
                b1b1add3 |  | 09-Jan-2017 | Masahiro Yamada <yamada.masahiro@socionext.com> | ARM: socfpga: remove unused CONFIG option and cleanup README.socfpga
 CONFIG_SOCFPGA_DWMMC_FIFO_DEPTH is defined in the socfpga_common.h,
 but not referenced at all.  Remove.
 
 Also, clean-up the READM
 ARM: socfpga: remove unused CONFIG option and cleanup README.socfpga
 CONFIG_SOCFPGA_DWMMC_FIFO_DEPTH is defined in the socfpga_common.h,
 but not referenced at all.  Remove.
 
 Also, clean-up the README.socfpga.  CONFIG_MMC should not be defined
 in the header since it was moved to Kconfig by commit c27269953b94
 ("mmc: complete unfinished move of CONFIG_MMC").  I see no grep hit
 for the others.
 
 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
 Reviewed-by: Marek Vasut <marex@denx.de>
 show more ...  
 | 
            | Revision tags: v2016.07, openbmc-20160624-1, v2016.01-rc1, v2015.10, v2015.10-rc5, v2015.10-rc4, v2015.10-rc3, v2015.10-rc2, v2015.10-rc1, v2015.07, v2015.07-rc3, v2015.07-rc2, v2015.07-rc1, v2015.04, v2015.04-rc5, v2015.04-rc4, v2015.04-rc3, v2015.04-rc2, v2015.04-rc1, v2015.01, v2015.01-rc4, v2015.01-rc3, v2015.01-rc2, v2015.01-rc1, v2014.10, v2014.10-rc3, v2014.10-rc2, v2014.10-rc1, v2014.07, v2014.07-rc4, v2014.07-rc3, v2014.07-rc2, v2014.07-rc1, v2014.04, v2014.04-rc3, v2014.04-rc2, v2014.04-rc1 | 
|
| #
                707acd01 |  | 26-Jan-2014 | Stefano Babic <sbabic@denx.de> | Merge branch 'master' of git://git.denx.de/u-boot-arm 
 | 
            | Revision tags: v2014.01, v2014.01-rc3 | 
|
| #
                8401bfa9 |  | 09-Jan-2014 | Tom Rini <trini@ti.com> | Merge branch 'master' of git://git.denx.de/u-boot-mmc 
 | 
| #
                c5c1af21 |  | 30-Dec-2013 | Chin Liang See <clsee@altera.com> | socfpga/dwmmc: Adding DesignWare MMC driver support for SOCFPGA
 To add the DesignWare MMC driver support for Altera SOCFPGA. It
 required information such as clocks and bus width from platform
 specif
 socfpga/dwmmc: Adding DesignWare MMC driver support for SOCFPGA
 To add the DesignWare MMC driver support for Altera SOCFPGA. It
 required information such as clocks and bus width from platform
 specific files (SOCFPGA handoff files)
 
 Signed-off-by: Chin Liang See <clsee@altera.com>
 Cc: Rajeshwari Shinde <rajeshwari.s@samsung.com>
 Cc: Jaehoon Chung <jh80.chung@samsung.com>
 Cc: Pantelis Antoniou <panto@antoniou-consulting.com>
 Cc: Wolfgang Denk <wd@denx.de>
 Acked-by: Pantelis Antoniou <panto@antoniou-consulting.com>
 show more ...  
 |