From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ang, Chee Hong Date: Mon, 17 Dec 2018 06:36:09 +0000 Subject: [U-Boot] [PATCH v5 0/4] Stratix10 FPGA reconfiguration support In-Reply-To: <304e477b-689a-c97b-7a2b-64ce884a13c8@denx.de> References: <1543484415-26499-1-git-send-email-chee.hong.ang@intel.com> <304e477b-689a-c97b-7a2b-64ce884a13c8@denx.de> Message-ID: <1545028568.32577.3.camel@intel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de On Thu, 2018-11-29 at 12:25 +0100, Marek Vasut wrote: > On 11/29/2018 10:40 AM, chee.hong.ang at intel.com wrote: > > > > From: "Ang, Chee Hong" > > > > Summary of v5 changes: > > - Patch 1/4, 2/4 and 4/4 are unchanged > > - Patch 3/4: > >   - add arch/arm/mach-socfpga/fpga_device.c for Cyclone/Stratix > > platforms > >   - remove weak socfpga_fpga_add() > > > > v4 patchsets: > > https://lists.denx.de/pipermail/u-boot/2018-November/347962.html > > > > Ang, Chee Hong (4): > >   arm: socfpga: stratix10: Add macros for mailbox's arguments > >   arm: socfpga: stratix10: Add Stratix 10 FPGA Reconfiguration > > Driver > >   arm: socfpga: stratix10: Add Stratix10 FPGA into FPGA device > > table > >   arm: socfpga: stratix10: Enable Stratix10 FPGA Reconfiguration > > > >  arch/arm/mach-socfpga/Makefile                   |   4 + > >  arch/arm/mach-socfpga/fpga_device.c              |  59 +++++ > >  arch/arm/mach-socfpga/include/mach/fpga_device.h |  15 ++ > >  arch/arm/mach-socfpga/include/mach/mailbox_s10.h |   6 + > >  arch/arm/mach-socfpga/include/mach/misc.h        |   6 - > >  arch/arm/mach-socfpga/misc.c                     |  31 --- > >  arch/arm/mach-socfpga/misc_arria10.c             |   1 + > >  arch/arm/mach-socfpga/misc_gen5.c                |   1 + > >  arch/arm/mach-socfpga/misc_s10.c                 |   3 + > >  configs/socfpga_stratix10_defconfig              |   1 + > >  drivers/fpga/Kconfig                             |  11 + > >  drivers/fpga/Makefile                            |   1 + > >  drivers/fpga/altera.c                            |   6 + > >  drivers/fpga/stratix10.c                         | 288 > > +++++++++++++++++++++++ > >  include/altera.h                                 |   8 + > >  15 files changed, 404 insertions(+), 37 deletions(-) > >  create mode 100644 arch/arm/mach-socfpga/fpga_device.c > >  create mode 100644 arch/arm/mach- > > socfpga/include/mach/fpga_device.h > >  create mode 100644 drivers/fpga/stratix10.c > > > Is this fixing the build errors I reported recently ? This patchsets only address the coding styles/structures of FPGA configurations for all Intel/Altera FPGA platforms. What sort of build errors you encountered recently ?