From patchwork Wed May 23 16:17:22 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ley Foon Tan X-Patchwork-Id: 918849 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=intel.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 40rQP85XM8z9s1b for ; Wed, 23 May 2018 18:17:48 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 7187DC21DEC; Wed, 23 May 2018 08:17:44 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 9FF57C21C2F; Wed, 23 May 2018 08:17:41 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 21590C21C2F; Wed, 23 May 2018 08:17:40 +0000 (UTC) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by lists.denx.de (Postfix) with ESMTPS id 3DF4FC21BE5 for ; Wed, 23 May 2018 08:17:39 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 May 2018 01:17:37 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,432,1520924400"; d="scan'208";a="58295502" Received: from lftan-mobl.gar.corp.intel.com (HELO ubuntu) ([10.226.248.55]) by orsmga001.jf.intel.com with SMTP; 23 May 2018 01:17:34 -0700 Received: by ubuntu (sSMTP sendmail emulation); Thu, 24 May 2018 00:17:33 +0800 From: Ley Foon Tan To: u-boot@lists.denx.de, Marek Vasut Date: Thu, 24 May 2018 00:17:22 +0800 Message-Id: <1527092252-2965-1-git-send-email-ley.foon.tan@intel.com> X-Mailer: git-send-email 2.7.4 Cc: Chin Liang See Subject: [U-Boot] [PATCH v3 00/10] Add Intel Stratix 10 SoC support X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This is 3rd version of patchset to adds support for Intel Stratix 10 SoC. This patchset is work on top of uboot.git/master and patchset in [1]. Changes: - rebase on uboot.git/master - update reviewed-by Patchset history: [v1]: https://patchwork.ozlabs.org/cover/900499/ [v2]: https://patchwork.ozlabs.org/cover/916060/ [1]: https://patchwork.ozlabs.org/cover/910018/ Ley Foon Tan (10): arm: socfpga: misc: Move bridge command to misc common arm: socfpga: stratix10: Add misc support for Stratix10 SoC arm: socfpga: stratix10: Add mailbox support for Stratix10 SoC arm: socfpga: stratix10: Add MMU support for Stratix10 SoC arm: socfpga: Restructure the SPL file arm: socfpga: stratix10: Add SPL driver for Stratix10 SoC arm: socfpga: stratix10: Add timer support for Stratix10 SoC ddr: altera: stratix10: Add DDR support for Stratix10 SoC board: altera: stratix10: Add socdk board support for Stratix10 SoC arm: socfpga: stratix10: Enable Stratix10 SoC build arch/arm/Kconfig | 10 +- arch/arm/mach-socfpga/Kconfig | 13 + arch/arm/mach-socfpga/Makefile | 16 +- arch/arm/mach-socfpga/include/mach/firewall_s10.h | 120 +++++++ arch/arm/mach-socfpga/include/mach/mailbox_s10.h | 144 ++++++++ arch/arm/mach-socfpga/include/mach/misc.h | 2 + arch/arm/mach-socfpga/include/mach/sdram_s10.h | 183 ++++++++++ arch/arm/mach-socfpga/mailbox_s10.c | 380 ++++++++++++++++++++ arch/arm/mach-socfpga/misc.c | 31 ++ arch/arm/mach-socfpga/misc_gen5.c | 26 +-- arch/arm/mach-socfpga/misc_s10.c | 133 +++++++ arch/arm/mach-socfpga/mmu-arm64_s10.c | 71 ++++ arch/arm/mach-socfpga/spl_a10.c | 105 ++++++ arch/arm/mach-socfpga/{spl.c => spl_gen5.c} | 62 +--- arch/arm/mach-socfpga/spl_s10.c | 199 +++++++++++ arch/arm/mach-socfpga/timer_s10.c | 26 ++ board/altera/stratix10-socdk/MAINTAINERS | 7 + board/altera/stratix10-socdk/Makefile | 7 + board/altera/stratix10-socdk/socfpga.c | 7 + configs/socfpga_stratix10_defconfig | 56 +++ drivers/ddr/altera/Makefile | 1 + drivers/ddr/altera/sdram_s10.c | 388 +++++++++++++++++++++ include/configs/socfpga_stratix10_socdk.h | 222 ++++++++++++ 23 files changed, 2129 insertions(+), 80 deletions(-) create mode 100644 arch/arm/mach-socfpga/include/mach/firewall_s10.h create mode 100644 arch/arm/mach-socfpga/include/mach/mailbox_s10.h create mode 100644 arch/arm/mach-socfpga/include/mach/sdram_s10.h create mode 100644 arch/arm/mach-socfpga/mailbox_s10.c create mode 100644 arch/arm/mach-socfpga/misc_s10.c create mode 100644 arch/arm/mach-socfpga/mmu-arm64_s10.c create mode 100644 arch/arm/mach-socfpga/spl_a10.c rename arch/arm/mach-socfpga/{spl.c => spl_gen5.c} (81%) create mode 100644 arch/arm/mach-socfpga/spl_s10.c create mode 100644 arch/arm/mach-socfpga/timer_s10.c create mode 100644 board/altera/stratix10-socdk/MAINTAINERS create mode 100644 board/altera/stratix10-socdk/Makefile create mode 100644 board/altera/stratix10-socdk/socfpga.c create mode 100644 configs/socfpga_stratix10_defconfig create mode 100644 drivers/ddr/altera/sdram_s10.c create mode 100644 include/configs/socfpga_stratix10_socdk.h