From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Tue, 17 Apr 2018 20:26:50 +0200 Subject: [U-Boot] [PULL] u-boot-socfpga/master Message-ID: <25045275-47f6-9d5e-1509-d2ba164954f4@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 8c0a17be0a632b9a823e14628c42f85c3e64f08e: Prepare v2018.05-rc2 (2018-04-16 20:00:14 -0400) are available in the Git repository at: git://git.denx.de/u-boot-socfpga.git master for you to fetch changes up to f369e1564cf4f81654b8a806fdc325b62b6627dc: configs: socfpga: disable EFI and ISO partition types (2018-04-17 11:39:50 +0200) ---------------------------------------------------------------- Chin Liang See (1): arm: socfpga: stratix10: Add base address map for Statix10 SoC Dinh Nguyen (9): ARM64: stratix10: add reset manager includes ARM: dts: stratix10: Add base dtsi and devkit dts reset: socfpga: add reset driver for SoCFPGA platform configs: socfpga: convert i2c to dm arm: dts: socfpga: enables i2c0 in socfpga_de0_nano arm: dts: socfpga: add reset property i2c: designware: add reset ctrl to driver configs: socfpga: add DM_RESET configs: socfpga: disable EFI and ISO partition types arch/arm/dts/Makefile | 1 + arch/arm/dts/socfpga.dtsi | 12 +++++ arch/arm/dts/socfpga_cyclone5_de0_nano_soc.dts | 12 +++++ arch/arm/dts/socfpga_stratix10.dtsi | 381 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ arch/arm/dts/socfpga_stratix10_socdk.dts | 92 +++++++++++++++++++++++++++++++++ arch/arm/mach-socfpga/include/mach/base_addr_s10.h | 33 ++++++++++++ configs/socfpga_arria10_defconfig | 2 + configs/socfpga_arria5_defconfig | 4 ++ configs/socfpga_cyclone5_defconfig | 4 ++ configs/socfpga_dbm_soc1_defconfig | 4 ++ configs/socfpga_de0_nano_soc_defconfig | 4 ++ configs/socfpga_de10_nano_defconfig | 4 ++ configs/socfpga_de1_soc_defconfig | 4 ++ configs/socfpga_is1_defconfig | 4 ++ configs/socfpga_mcvevk_defconfig | 4 ++ configs/socfpga_sockit_defconfig | 4 ++ configs/socfpga_socrates_defconfig | 4 ++ configs/socfpga_sr1500_defconfig | 4 ++ configs/socfpga_vining_fpga_defconfig | 3 ++ drivers/i2c/designware_i2c.c | 10 ++++ drivers/reset/Kconfig | 7 +++ drivers/reset/Makefile | 1 + drivers/reset/reset-socfpga.c | 105 ++++++++++++++++++++++++++++++++++++++ include/configs/socfpga_common.h | 2 + include/dt-bindings/reset/altr,rst-mgr-s10.h | 97 +++++++++++++++++++++++++++++++++++ 25 files changed, 802 insertions(+) create mode 100644 arch/arm/dts/socfpga_stratix10.dtsi create mode 100644 arch/arm/dts/socfpga_stratix10_socdk.dts create mode 100644 arch/arm/mach-socfpga/include/mach/base_addr_s10.h create mode 100644 drivers/reset/reset-socfpga.c create mode 100644 include/dt-bindings/reset/altr,rst-mgr-s10.h