Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753640AbdCMUqe (ORCPT ); Mon, 13 Mar 2017 16:46:34 -0400 Received: from mail.kernel.org ([198.145.29.136]:45548 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753329AbdCMUq0 (ORCPT ); Mon, 13 Mar 2017 16:46:26 -0400 MIME-Version: 1.0 In-Reply-To: <1489174827-6033-1-git-send-email-matthew.gerlach@linux.intel.com> References: <1489174827-6033-1-git-send-email-matthew.gerlach@linux.intel.com> From: Moritz Fischer Date: Mon, 13 Mar 2017 13:46:20 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH v5 0/4] Altera Partial Reconfiguration IP To: matthew.gerlach@linux.intel.com Cc: Alan Tull , linux-fpga@vger.kernel.org, Linux Kernel Mailing List , Devicetree List , Rob Herring , Mark Rutland , Anatolij Gustschin Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1791 Lines: 41 Hi Matthew, On Fri, Mar 10, 2017 at 11:40 AM, wrote: > From: Matthew Gerlach > > This set of patches implements a fpga-mgr driver for the Altera Partial > Reconfiguration IP. The driver depends on a patch from Alan Tull that > adds a config complete timeout. The driver code itself is divided into > core functions and functions to implement a platform driver. It is > expected that drivers for other buses like PCIe would also use the core > functions or possibly instantiate a platform driver. > > Alan Tull (1): > fpga: add config complete timeout > > Matthew Gerlach (3): > fpga pr ip: Core driver support for Altera Partial Reconfiguration IP. > fpga dt: bindings for Altera Partial Reconfiguration IP. I think in general dt bindings should go in first in a series. Doesn't checkpatch complain about this? > fpga pr ip: Platform driver for Altera Partial Reconfiguration IP. > > .../devicetree/bindings/fpga/altera-pr-ip.txt | 12 ++ > drivers/fpga/Kconfig | 12 ++ > drivers/fpga/Makefile | 2 + > drivers/fpga/altera-pr-ip-core-plat.c | 65 ++++++ > drivers/fpga/altera-pr-ip-core.c | 217 +++++++++++++++++++++ > drivers/fpga/altera-pr-ip-core.h | 29 +++ > drivers/fpga/fpga-region.c | 3 + > include/linux/fpga/fpga-mgr.h | 3 + > 8 files changed, 343 insertions(+) > create mode 100644 Documentation/devicetree/bindings/fpga/altera-pr-ip.txt > create mode 100644 drivers/fpga/altera-pr-ip-core-plat.c > create mode 100644 drivers/fpga/altera-pr-ip-core.c > create mode 100644 drivers/fpga/altera-pr-ip-core.h Cheers, Moritz