From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Mon, 7 Dec 2015 00:17:26 +0100 Subject: [U-Boot] [PULL] u-boot-socfpga/master Message-ID: <201512070017.26350.marex@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The following changes since commit 75507d5d5496a691aecb731f87d4d8d5cdf62b77: am33xx: Update serial pdata (2015-12-06 16:38:05 -0500) are available in the git repository at: git://git.denx.de/u-boot-socfpga.git for you to fetch changes up to 540fcbca7e960b2855e7666fff8f11a7119341ee: arm: socfpga: Enable CONFIG_DM_MMC (2015-12-07 00:15:59 +0100) ---------------------------------------------------------------- Marek Vasut (3): arm: socfpga: Remove cpu_mmc_init() mmc: dwmmc: socfpga: Convert to DM arm: socfpga: Enable CONFIG_DM_MMC Stefan Roese (1): arm: socfpga: Add SoCFPGA SR1500 board arch/arm/dts/Makefile | 4 +- arch/arm/dts/socfpga_cyclone5_sr1500.dts | 101 +++++++++++++++ arch/arm/mach-socfpga/Kconfig | 6 + arch/arm/mach-socfpga/misc.c | 11 -- board/sr1500/MAINTAINERS | 6 + board/sr1500/Makefile | 7 ++ board/sr1500/qts/iocsr_config.h | 660 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ board/sr1500/qts/pinmux_config.h | 219 ++++++++++++++++++++++++++++++++ board/sr1500/qts/pll_config.h | 85 +++++++++++++ board/sr1500/qts/sdram_config.h | 341 ++++++++++++++++++++++++++++++++++++++++++++++++++ board/sr1500/socfpga.c | 44 +++++++ configs/socfpga_arria5_defconfig | 1 + configs/socfpga_cyclone5_defconfig | 1 + configs/socfpga_de0_nano_soc_defconfig | 1 + configs/socfpga_mcvevk_defconfig | 1 + configs/socfpga_sockit_defconfig | 1 + configs/socfpga_socrates_defconfig | 1 + configs/socfpga_sr1500_defconfig | 19 +++ drivers/mmc/socfpga_dw_mmc.c | 136 +++++++++----------- include/configs/socfpga_sr1500.h | 115 +++++++++++++++++ 20 files changed, 1672 insertions(+), 88 deletions(-) create mode 100644 arch/arm/dts/socfpga_cyclone5_sr1500.dts create mode 100644 board/sr1500/MAINTAINERS create mode 100644 board/sr1500/Makefile create mode 100644 board/sr1500/qts/iocsr_config.h create mode 100644 board/sr1500/qts/pinmux_config.h create mode 100644 board/sr1500/qts/pll_config.h create mode 100644 board/sr1500/qts/sdram_config.h create mode 100644 board/sr1500/socfpga.c create mode 100644 configs/socfpga_sr1500_defconfig create mode 100644 include/configs/socfpga_sr1500.h