All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v7 00/16] Add Intel Arria 10 SoC support
@ 2017-04-25 18:44 Ley Foon Tan
  2017-04-25 10:46 ` Marek Vasut
                   ` (16 more replies)
  0 siblings, 17 replies; 26+ messages in thread
From: Ley Foon Tan @ 2017-04-25 18:44 UTC (permalink / raw)
  To: u-boot

This is the 7th version of patchset to adds support for Intel Arria 10 SoC.
This is initial patchset enables the basic support for Arria 10 and other
features will come after this.

This series is rebased on top of http://git.denx.de/?p=u-boot/u-boot-socfpga.git.

v6 -> v7 changes:
-----------------
-  Revert change in socfpga_bridges_reset() for Gen5.

Patchset history
----------------
[v1]: https://www.mail-archive.com/u-boot at lists.denx.de/msg240052.html
[v2]: https://www.mail-archive.com/u-boot at lists.denx.de/msg241249.html
[v3]: https://www.mail-archive.com/u-boot at lists.denx.de/msg243107.html
[v4]: https://www.mail-archive.com/u-boot at lists.denx.de/msg243815.html
[v5]: https://www.mail-archive.com/u-boot at lists.denx.de/msg244930.html
[v6]: https://www.mail-archive.com/u-boot at lists.denx.de/msg245911.html

Ley Foon Tan (16):
  arm: socfpga: Restructure clock manager driver
  arm: socfpga: Restructure reset manager driver
  arm: socfpga: Restructure system manager
  arm: socfpga: Restructure misc driver
  arm: socfpga: Add A10 macros
  arm: socfpga: Add reset driver support for Arria 10
  arm: socfpga: Add clock driver for Arria 10
  arm: socfpga: Add system manager for Arria 10
  arm: socfpga: Add sdram header file for Arria 10
  arm: socfpga: Add pinmux for Arria 10
  arm: socfpga: Add misc support for Arria 10
  arm: dts: Add dts and dtsi for Arria 10
  arm: socfpga: Add SPL support for Arria 10
  arm: socfpga: Add config and defconfig for Arria 10
  arm: socfpga: Add board files for the Arria10
  arm: socfpga: Enable build for Arria 10

 arch/arm/dts/Makefile                              |    1 +
 arch/arm/dts/socfpga_arria10.dtsi                  |  869 ++++++++++++++++
 arch/arm/dts/socfpga_arria10_socdk_sdmmc.dts       |   38 +
 .../dts/socfpga_arria10_socdk_sdmmc_handoff.dtsi   |  481 +++++++++
 arch/arm/mach-socfpga/Kconfig                      |   10 +
 arch/arm/mach-socfpga/Makefile                     |   41 +-
 arch/arm/mach-socfpga/clock_manager.c              |  525 +---------
 arch/arm/mach-socfpga/clock_manager_arria10.c      | 1096 ++++++++++++++++++++
 .../{clock_manager.c => clock_manager_gen5.c}      |  137 +--
 arch/arm/mach-socfpga/include/mach/base_addr_a10.h |    8 +-
 arch/arm/mach-socfpga/include/mach/clock_manager.h |  317 +-----
 .../include/mach/clock_manager_arria10.h           |  224 ++++
 .../mach/{clock_manager.h => clock_manager_gen5.h} |  151 +--
 arch/arm/mach-socfpga/include/mach/misc.h          |   31 +
 arch/arm/mach-socfpga/include/mach/pinmux.h        |   17 +
 arch/arm/mach-socfpga/include/mach/reset_manager.h |   50 +-
 .../include/mach/reset_manager_arria10.h           |  147 +++
 .../mach-socfpga/include/mach/reset_manager_gen5.h |   50 +
 arch/arm/mach-socfpga/include/mach/sdram_arria10.h |  380 +++++++
 .../arm/mach-socfpga/include/mach/system_manager.h |  202 ++--
 .../include/mach/system_manager_arria10.h          |   81 ++
 .../{system_manager.h => system_manager_gen5.h}    |   39 +-
 arch/arm/mach-socfpga/misc.c                       |  363 +------
 arch/arm/mach-socfpga/misc_arria10.c               |  259 +++++
 arch/arm/mach-socfpga/{misc.c => misc_gen5.c}      |  152 +--
 arch/arm/mach-socfpga/pinmux_arria10.c             |   96 ++
 arch/arm/mach-socfpga/reset_manager.c              |   93 +-
 arch/arm/mach-socfpga/reset_manager_arria10.c      |  383 +++++++
 .../{reset_manager.c => reset_manager_gen5.c}      |   48 +-
 arch/arm/mach-socfpga/spl.c                        |   56 +-
 .../{system_manager.c => system_manager_gen5.c}    |    6 +-
 board/altera/arria10-socdk/Kconfig                 |   18 +
 board/altera/arria10-socdk/Makefile                |    7 +
 board/altera/arria10-socdk/socfpga.c               |    7 +
 configs/socfpga_arria10_defconfig                  |   29 +
 include/configs/socfpga_arria10_socdk.h            |   66 ++
 include/configs/socfpga_common.h                   |   21 +-
 include/dt-bindings/reset/altr,rst-mgr-a10.h       |  110 ++
 38 files changed, 4817 insertions(+), 1792 deletions(-)
 create mode 100644 arch/arm/dts/socfpga_arria10.dtsi
 create mode 100644 arch/arm/dts/socfpga_arria10_socdk_sdmmc.dts
 create mode 100644 arch/arm/dts/socfpga_arria10_socdk_sdmmc_handoff.dtsi
 create mode 100644 arch/arm/mach-socfpga/clock_manager_arria10.c
 copy arch/arm/mach-socfpga/{clock_manager.c => clock_manager_gen5.c} (85%)
 create mode 100644 arch/arm/mach-socfpga/include/mach/clock_manager_arria10.h
 copy arch/arm/mach-socfpga/include/mach/{clock_manager.h => clock_manager_gen5.h} (79%)
 create mode 100644 arch/arm/mach-socfpga/include/mach/misc.h
 create mode 100644 arch/arm/mach-socfpga/include/mach/pinmux.h
 create mode 100644 arch/arm/mach-socfpga/include/mach/reset_manager_arria10.h
 create mode 100644 arch/arm/mach-socfpga/include/mach/reset_manager_gen5.h
 create mode 100644 arch/arm/mach-socfpga/include/mach/sdram_arria10.h
 create mode 100644 arch/arm/mach-socfpga/include/mach/system_manager_arria10.h
 copy arch/arm/mach-socfpga/include/mach/{system_manager.h => system_manager_gen5.h} (73%)
 create mode 100644 arch/arm/mach-socfpga/misc_arria10.c
 copy arch/arm/mach-socfpga/{misc.c => misc_gen5.c} (72%)
 create mode 100644 arch/arm/mach-socfpga/pinmux_arria10.c
 create mode 100644 arch/arm/mach-socfpga/reset_manager_arria10.c
 copy arch/arm/mach-socfpga/{reset_manager.c => reset_manager_gen5.c} (76%)
 rename arch/arm/mach-socfpga/{system_manager.c => system_manager_gen5.c} (94%)
 create mode 100644 board/altera/arria10-socdk/Kconfig
 create mode 100644 board/altera/arria10-socdk/Makefile
 create mode 100644 board/altera/arria10-socdk/socfpga.c
 create mode 100644 configs/socfpga_arria10_defconfig
 create mode 100644 include/configs/socfpga_arria10_socdk.h
 create mode 100644 include/dt-bindings/reset/altr,rst-mgr-a10.h

-- 
1.8.2.3

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

end of thread, other threads:[~2017-04-27 10:13 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-25 18:44 [U-Boot] [PATCH v7 00/16] Add Intel Arria 10 SoC support Ley Foon Tan
2017-04-25 10:46 ` Marek Vasut
2017-04-26 23:05   ` Dalon Westergreen
2017-04-27  3:15   ` Dinh Nguyen
2017-04-27  5:54     ` Ley Foon Tan
2017-04-27  9:35       ` Marek Vasut
2017-04-27 10:00         ` Ley Foon Tan
2017-04-27 10:04           ` Marek Vasut
2017-04-27 10:07             ` Ley Foon Tan
2017-04-27 10:13               ` Marek Vasut
2017-04-25 18:44 ` [U-Boot] [PATCH v7 01/16] arm: socfpga: Restructure clock manager driver Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 02/16] arm: socfpga: Restructure reset " Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 03/16] arm: socfpga: Restructure system manager Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 04/16] arm: socfpga: Restructure misc driver Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 05/16] arm: socfpga: Add A10 macros Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 06/16] arm: socfpga: Add reset driver support for Arria 10 Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 07/16] arm: socfpga: Add clock driver " Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 08/16] arm: socfpga: Add system manager " Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 09/16] arm: socfpga: Add sdram header file " Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 10/16] arm: socfpga: Add pinmux " Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 11/16] arm: socfpga: Add misc support " Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 12/16] arm: dts: Add dts and dtsi " Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 13/16] arm: socfpga: Add SPL support " Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 14/16] arm: socfpga: Add config and defconfig " Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 15/16] arm: socfpga: Add board files for the Arria10 Ley Foon Tan
2017-04-25 18:44 ` [U-Boot] [PATCH v7 16/16] arm: socfpga: Enable build for Arria 10 Ley Foon Tan

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.