All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/7] Add Intel Arria 10 SoC FPGA driver
@ 2017-05-05 10:26 tien.fong.chee at intel.com
  2017-05-05 10:26 ` [U-Boot] [PATCH 1/7] arm: socfpga: Remove unused passing parameter of socfpga_bridges_reset tien.fong.chee at intel.com
                   ` (6 more replies)
  0 siblings, 7 replies; 28+ messages in thread
From: tien.fong.chee at intel.com @ 2017-05-05 10:26 UTC (permalink / raw)
  To: u-boot

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

This patchset adds FPGA driver to Intel Arria 10 SoC.

This series is working on top of u-boot-socfpga-next branch
http://git.denx.de/?p=u-boot/u-boot-socfpga.git;a=shortlog;h=refs/heads/next.

Tien Fong Chee (7):
  arm: socfpga: Remove unused passing parameter of
    socfpga_bridges_reset
  arm: socfpga: Convert FPGA configuration to Kconfig method.
  arm: socfpga: Restructure FPGA driver in the preparation to support
    A10.
  arm: socfpga: Move FPGA manager driver to FPGA driver
  arm: socfpga: Move the FPGA driver header from arch to include
    directory
  arm: socfpga: Add Arria10 FPGA manager program assembly driver
  arm: socfpga: Add FPGA driver support for Arria 10

 arch/arm/mach-socfpga/Makefile                     |    2 +-
 arch/arm/mach-socfpga/fpga_manager.c               |   78 ---
 arch/arm/mach-socfpga/include/mach/fpga_manager.h  |   65 +---
 .../mach/{fpga_manager.h => fpga_manager_gen5.h}   |   69 ++--
 .../include/mach/reset_manager_arria10.h           |    2 +-
 arch/arm/mach-socfpga/lowlevel_init.S              |   48 ++
 arch/arm/mach-socfpga/reset_manager_arria10.c      |    6 +-
 arch/arm/mach-socfpga/reset_manager_gen5.c         |    5 +-
 arch/arm/mach-socfpga/system_manager_gen5.c        |    2 +-
 drivers/Makefile                                   |    1 +
 drivers/ddr/altera/sdram.c                         |    7 +-
 drivers/fpga/Kconfig                               |    5 +-
 drivers/fpga/Makefile                              |    5 +-
 drivers/fpga/socfpga.c                             |  269 +-----------
 drivers/fpga/socfpga_arria10.c                     |  490 ++++++++++++++++++++
 drivers/fpga/{socfpga.c => socfpga_gen5.c}         |   75 ++-
 include/altera.h                                   |    2 +-
 include/configs/socfpga_common.h                   |    3 -
 include/intel_socfpga/fpga_manager.h               |   38 ++
 include/intel_socfpga/fpga_manager_arria10.h       |  107 +++++
 .../intel_socfpga/fpga_manager_gen5.h              |   69 ++--
 21 files changed, 831 insertions(+), 517 deletions(-)
 delete mode 100644 arch/arm/mach-socfpga/fpga_manager.c
 copy arch/arm/mach-socfpga/include/mach/{fpga_manager.h => fpga_manager_gen5.h} (57%)
 create mode 100644 arch/arm/mach-socfpga/lowlevel_init.S
 create mode 100644 drivers/fpga/socfpga_arria10.c
 copy drivers/fpga/{socfpga.c => socfpga_gen5.c} (86%)
 create mode 100644 include/intel_socfpga/fpga_manager.h
 create mode 100644 include/intel_socfpga/fpga_manager_arria10.h
 copy arch/arm/mach-socfpga/include/mach/fpga_manager.h => include/intel_socfpga/fpga_manager_gen5.h (57%)

-- 
1.7.7.4

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

end of thread, other threads:[~2017-05-11 11:47 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-05 10:26 [U-Boot] [PATCH 0/7] Add Intel Arria 10 SoC FPGA driver tien.fong.chee at intel.com
2017-05-05 10:26 ` [U-Boot] [PATCH 1/7] arm: socfpga: Remove unused passing parameter of socfpga_bridges_reset tien.fong.chee at intel.com
2017-05-05 11:09   ` Marek Vasut
2017-05-08  4:17     ` Chee, Tien Fong
2017-05-08  9:52       ` Marek Vasut
2017-05-09  4:23         ` Chee, Tien Fong
2017-05-09  7:56           ` Marek Vasut
2017-05-10  8:34             ` Chee, Tien Fong
2017-05-05 10:26 ` [U-Boot] [PATCH 2/7] arm: socfpga: Convert FPGA configuration to Kconfig method tien.fong.chee at intel.com
2017-05-05 11:11   ` Marek Vasut
2017-05-08  3:02     ` Chee, Tien Fong
2017-05-08  9:57       ` Marek Vasut
2017-05-09  5:02         ` Chee, Tien Fong
2017-05-09  7:58           ` Marek Vasut
2017-05-10  8:28             ` Chee, Tien Fong
2017-05-11  4:09               ` Chee, Tien Fong
2017-05-11 11:47                 ` Marek Vasut
2017-05-05 10:26 ` [U-Boot] [PATCH 3/7] arm: socfpga: Restructure FPGA driver in the preparation to support A10 tien.fong.chee at intel.com
2017-05-05 11:13   ` Marek Vasut
2017-05-08  4:39     ` Chee, Tien Fong
2017-05-08 10:16       ` Marek Vasut
2017-05-09  4:00         ` Chee, Tien Fong
2017-05-05 10:26 ` [U-Boot] [PATCH 4/7] arm: socfpga: Move FPGA manager driver to FPGA driver tien.fong.chee at intel.com
2017-05-05 10:26 ` [U-Boot] [PATCH 5/7] arm: socfpga: Move the FPGA driver header from arch to include directory tien.fong.chee at intel.com
2017-05-05 10:26 ` [U-Boot] [PATCH 6/7] arm: socfpga: Add Arria10 FPGA manager program assembly driver tien.fong.chee at intel.com
2017-05-05 11:14   ` Marek Vasut
2017-05-08  4:03     ` Chee, Tien Fong
2017-05-05 10:26 ` [U-Boot] [PATCH 7/7] arm: socfpga: Add FPGA driver support for Arria 10 tien.fong.chee at intel.com

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.