public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v13 0/8] Add Intel Arria 10 SoC FPGA driver
@ 2017-07-26  5:05 tien.fong.chee at intel.com
  2017-07-26  5:05 ` [U-Boot] [PATCH v13 1/8] arm: socfpga: Remove unused passing parameter of socfpga_bridges_reset tien.fong.chee at intel.com
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: tien.fong.chee at intel.com @ 2017-07-26  5:05 UTC (permalink / raw)
  To: u-boot

From: Tien Fong Chee <tien.fong.chee@intel.com>

This is the 13th version of patchset to adds support for Intel Arria 10 SoC FPGA
driver. This version mainly resolved the conflicts when applying on top of
u-boot.git in [v12]. This series is working on top of
u-boot.git - http://git.denx.de/?p=u-boot.git;a=summary 

[v12]: https://www.mail-archive.com/u-boot at lists.denx.de/msg256689.html

v12 -> v13 changes:
-----------------
- Resolved conflicts when applying on top of u-boot.git .

Patchset history
----------------
[v1]: https://www.mail-archive.com/u-boot at lists.denx.de/msg247788.html
[v2]: https://www.mail-archive.com/u-boot at lists.denx.de/msg248541.html
[v3]: https://www.mail-archive.com/u-boot at lists.denx.de/msg249160.html
[v4]: https://www.mail-archive.com/u-boot at lists.denx.de/msg250149.html
[v5]: https://www.mail-archive.com/u-boot at lists.denx.de/msg250517.html
[v6]: https://www.mail-archive.com/u-boot at lists.denx.de/msg250687.html
[v7]: https://www.mail-archive.com/u-boot at lists.denx.de/msg251213.html
[v8]: https://www.mail-archive.com/u-boot at lists.denx.de/msg252196.html
[v9]: https://www.mail-archive.com/u-boot at lists.denx.de/msg252422.html
[v10]: https://www.mail-archive.com/u-boot at lists.denx.de/msg252583.html
[v11]: https://www.mail-archive.com/u-boot at lists.denx.de/msg255643.html

Reviewed-by: Ley Foon Tan <ley.foon.tan@intel.com>
Reviewed-by: Dinh Nguyen <dinguyen@kernel.org>

Tien Fong Chee (8):
  arm: socfpga: Remove unused passing parameter of socfpga_bridges_reset
  arm: socfpga: Restructure FPGA driver in the preparation to support
    A10
  kconfig: Convert FPGA and FPGA_ALTERA configuration to Kconfig
  kconfig: Convert FPGA_SOCFPGA configuration to Kconfig
  drivers: Enable FPGA driver build on SPL
  configs: Add FPGA driver config for Arria 10
  arm: socfpga: Add FPGA driver support for Arria 10
  arm: socfpga: Enable all FPGA config support for Arria 10

 arch/arm/mach-socfpga/Makefile                     |   2 +-
 arch/arm/mach-socfpga/include/mach/fpga_manager.h  |  70 +--
 .../include/mach/fpga_manager_arria10.h            | 100 +++++
 .../mach/{fpga_manager.h => fpga_manager_gen5.h}   |  69 ++-
 .../include/mach/reset_manager_arria10.h           |   2 +-
 arch/arm/mach-socfpga/reset_manager_arria10.c      |   4 +-
 configs/astro_mcf5373l_defconfig                   |   1 +
 configs/socfpga_arria10_defconfig                  |   2 +
 configs/socfpga_arria5_defconfig                   |   1 +
 configs/socfpga_cyclone5_defconfig                 |   1 +
 configs/socfpga_de0_nano_soc_defconfig             |   1 +
 configs/socfpga_de10_nano_defconfig                |   1 +
 configs/socfpga_de1_soc_defconfig                  |   1 +
 configs/socfpga_is1_defconfig                      |   1 +
 configs/socfpga_mcvevk_defconfig                   |   1 +
 configs/socfpga_sockit_defconfig                   |   1 +
 configs/socfpga_socrates_defconfig                 |   1 +
 configs/socfpga_sr1500_defconfig                   |   1 +
 configs/socfpga_vining_fpga_defconfig              |   1 +
 configs/theadorable_debug_defconfig                |   1 +
 configs/theadorable_defconfig                      |   1 +
 drivers/Makefile                                   |   1 +
 drivers/fpga/Kconfig                               |   8 +
 drivers/fpga/Makefile                              |   2 +
 drivers/fpga/socfpga.c                             | 235 +---------
 drivers/fpga/socfpga_arria10.c                     | 479 +++++++++++++++++++++
 drivers/fpga/{socfpga.c => socfpga_gen5.c}         |  54 +--
 include/configs/astro_mcf5373l.h                   |   2 -
 include/configs/socfpga_common.h                   |   6 +-
 include/configs/theadorable.h                      |   2 -
 30 files changed, 658 insertions(+), 394 deletions(-)
 create mode 100644 arch/arm/mach-socfpga/include/mach/fpga_manager_arria10.h
 copy arch/arm/mach-socfpga/include/mach/{fpga_manager.h => fpga_manager_gen5.h} (57%)
 create mode 100644 drivers/fpga/socfpga_arria10.c
 copy drivers/fpga/{socfpga.c => socfpga_gen5.c} (83%)

-- 
2.2.0

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2017-07-27  3:24 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-26  5:05 [U-Boot] [PATCH v13 0/8] Add Intel Arria 10 SoC FPGA driver tien.fong.chee at intel.com
2017-07-26  5:05 ` [U-Boot] [PATCH v13 1/8] arm: socfpga: Remove unused passing parameter of socfpga_bridges_reset tien.fong.chee at intel.com
2017-07-26  5:05 ` [U-Boot] [PATCH v13 2/8] arm: socfpga: Restructure FPGA driver in the preparation to support A10 tien.fong.chee at intel.com
2017-07-26  5:05 ` [U-Boot] [PATCH v13 3/8] kconfig: Convert FPGA and FPGA_ALTERA configuration to Kconfig tien.fong.chee at intel.com
2017-07-26  5:05 ` [U-Boot] [PATCH v13 4/8] kconfig: Convert FPGA_SOCFPGA " tien.fong.chee at intel.com
2017-07-26  5:05 ` [U-Boot] [PATCH v13 5/8] drivers: Enable FPGA driver build on SPL tien.fong.chee at intel.com
2017-07-26  5:05 ` [U-Boot] [PATCH v13 6/8] configs: Add FPGA driver config for Arria 10 tien.fong.chee at intel.com
2017-07-26  5:05 ` [U-Boot] [PATCH v13 7/8] arm: socfpga: Add FPGA driver support " tien.fong.chee at intel.com
2017-07-26  5:05 ` [U-Boot] [PATCH v13 8/8] arm: socfpga: Enable all FPGA config " tien.fong.chee at intel.com
2017-07-26  8:56 ` [U-Boot] [PATCH v13 0/8] Add Intel Arria 10 SoC FPGA driver Marek Vasut
2017-07-27  3:24   ` Chee, Tien Fong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox