All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v6 00/16] Add Intel Arria 10 SoC support
@ 2017-04-19  9:29 Ley Foon Tan
  2017-04-19  9:29 ` [U-Boot] [PATCH v6 01/16] arm: socfpga: Restructure clock manager driver Ley Foon Tan
                   ` (16 more replies)
  0 siblings, 17 replies; 34+ messages in thread
From: Ley Foon Tan @ 2017-04-19  9:29 UTC (permalink / raw)
  To: u-boot

This is the 6th 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.

There is only one minor change in patch #5.

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

v5 -> v6 changes:
-----------------
-  macros sorted by address

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

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           |  146 +++
 .../mach-socfpga/include/mach/reset_manager_gen5.h |   49 +
 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}      |  157 +--
 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}      |   51 +-
 arch/arm/mach-socfpga/spl.c                        |   75 +-
 .../{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, 4837 insertions(+), 1797 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} (71%)
 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} (75%)
 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] 34+ messages in thread

end of thread, other threads:[~2017-04-25  0:42 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-19  9:29 [U-Boot] [PATCH v6 00/16] Add Intel Arria 10 SoC support Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 01/16] arm: socfpga: Restructure clock manager driver Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 02/16] arm: socfpga: Restructure reset " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 03/16] arm: socfpga: Restructure system manager Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 04/16] arm: socfpga: Restructure misc driver Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 05/16] arm: socfpga: Add A10 macros Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 06/16] arm: socfpga: Add reset driver support for Arria 10 Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 07/16] arm: socfpga: Add clock driver " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 08/16] arm: socfpga: Add system manager " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 09/16] arm: socfpga: Add sdram header file " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 10/16] arm: socfpga: Add pinmux " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 11/16] arm: socfpga: Add misc support " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 12/16] arm: dts: Add dts and dtsi " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 13/16] arm: socfpga: Add SPL support " Ley Foon Tan
2017-04-19 19:49   ` Dinh Nguyen
2017-04-19 20:26     ` Dinh Nguyen
2017-04-19 20:44       ` Dinh Nguyen
2017-04-19 20:54         ` Dalon Westergreen
2017-04-19 23:21           ` Dalon Westergreen
2017-04-20  4:58             ` Dinh Nguyen
2017-04-20 14:12               ` Dalon Westergreen
2017-04-20 20:00                 ` Dalon Westergreen
2017-04-21  9:45                   ` Ley Foon Tan
2017-04-21 12:17                     ` Marek Vasut
2017-04-21 13:17                       ` Dalon Westergreen
2017-04-21 13:31                         ` Marek Vasut
2017-04-21 16:37                           ` Dalon Westergreen
2017-04-21 16:47                             ` Marek Vasut
2017-04-25  0:42                         ` Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 14/16] arm: socfpga: Add config and defconfig " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 15/16] arm: socfpga: Add board files for the Arria10 Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 16/16] arm: socfpga: Enable build for Arria 10 Ley Foon Tan
2017-04-19  9:39 ` [U-Boot] [PATCH v6 00/16] Add Intel Arria 10 SoC support Marek Vasut
2017-04-19 14:37   ` Dinh Nguyen

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.