From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754759AbcLNCaw (ORCPT ); Tue, 13 Dec 2016 21:30:52 -0500 Received: from mail-oi0-f65.google.com ([209.85.218.65]:35777 "EHLO mail-oi0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751977AbcLNCau (ORCPT ); Tue, 13 Dec 2016 21:30:50 -0500 Subject: Re: [PATCH v2 0/2] FPGA: TS-7300 FPGA manager To: linux-kernel@vger.kernel.org References: <20161214022845.5692-1-f.fainelli@gmail.com> Cc: linux-arm-kernel@lists.infradead.org, moritz.fischer@ettus.com, atull@opensource.altera.com, linux@armlinux.org.uk, rmallon@gmail.com, hsweeten@visionengravers.com, linux-fpga@vger.kernel.org From: Florian Fainelli Message-ID: <3364bca1-1dbf-e28a-88f6-94ca61a4576f@gmail.com> Date: Tue, 13 Dec 2016 18:30:47 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <20161214022845.5692-1-f.fainelli@gmail.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/13/2016 06:28 PM, Florian Fainelli wrote: > Hi all, > > This patch series adds support for loading bitstreams into the Altera Cyclone II > connected to an EP9302 on a TS-7300 board. > > Changes in v2: > > - rebased against fpga/for-next > - added defines for configuration bits and delays > - added error mesage if ioremap() fails > - detailed how the configuration through CPLD is done I forgot to fix a function signature while rebasing, let me resubmit this. > > Florian Fainelli (2): > ARM: ep93xx: Register ts73xx-fpga manager driver for TS-7300 > FPGA: Add TS-7300 FPGA manager > > arch/arm/mach-ep93xx/ts72xx.c | 26 +++++++ > drivers/fpga/Kconfig | 7 ++ > drivers/fpga/Makefile | 1 + > drivers/fpga/ts73xx-fpga.c | 162 ++++++++++++++++++++++++++++++++++++++++++ > 4 files changed, 196 insertions(+) > create mode 100644 drivers/fpga/ts73xx-fpga.c > -- Florian