From patchwork Fri Apr 20 03:26:43 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ang, Chee Hong" X-Patchwork-Id: 901854 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=none (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 40SCNy3hLRz9s7P for ; Fri, 20 Apr 2018 20:52:34 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 28BAFC2203A; Fri, 20 Apr 2018 10:51:55 +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 806EDC22005; Fri, 20 Apr 2018 10:51:34 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 2A410C21D8A; Fri, 20 Apr 2018 03:26:57 +0000 (UTC) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by lists.denx.de (Postfix) with ESMTPS id 6D474C21C6A for ; Fri, 20 Apr 2018 03:26:56 +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 fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Apr 2018 20:26:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,299,1520924400"; d="scan'208";a="49350986" Received: from angcheeh-mobl.gar.corp.intel.com (HELO ubuntu.localdomain) ([10.226.242.33]) by orsmga001.jf.intel.com with ESMTP; 19 Apr 2018 20:26:52 -0700 From: chee.hong.ang@intel.com To: u-boot@lists.denx.de, Marek Vasut Date: Fri, 20 Apr 2018 11:26:43 +0800 Message-Id: <1524194806-4821-1-git-send-email-chee.hong.ang@intel.com> X-Mailer: git-send-email 1.9.1 X-Mailman-Approved-At: Fri, 20 Apr 2018 10:51:32 +0000 Cc: Chee Hong Ang , Chin Liang See Subject: [U-Boot] [PATCH v1 0/3] Stratix10 FPGA reconfiguration 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" From: Chee Hong Ang This patch enable FPGA reconfiguration for Stratix10 SoC. This patch works on top of: https://lists.denx.de/pipermail/u-boot/2018-April/325900.html Chee Hong Ang (3): arm: socfpga: stratix10: Add Stratix10 FPGA Reconfiguration Driver arm: socfpga: stratix10: Add Stratix10 FPGA into FPGA device table arm: socfpga: stratix10: Enable Stratix10 FPGA Reconfiguration arch/arm/mach-socfpga/misc.c | 20 ++- arch/arm/mach-socfpga/misc_s10.c | 4 + configs/socfpga_stratix10_defconfig | 2 + drivers/fpga/Kconfig | 10 ++ drivers/fpga/Makefile | 1 + drivers/fpga/altera.c | 6 + drivers/fpga/stratix10.c | 298 ++++++++++++++++++++++++++++++++++++ include/altera.h | 8 + 8 files changed, 346 insertions(+), 3 deletions(-) create mode 100644 drivers/fpga/stratix10.c