mbox series

[U-Boot,v3,00/10] Add Intel Stratix 10 SoC support

Message ID 1527092252-2965-1-git-send-email-ley.foon.tan@intel.com
Headers show
Series Add Intel Stratix 10 SoC support | expand

Message

Ley Foon Tan May 23, 2018, 4:17 p.m. UTC
This is 3rd version of patchset to adds support for Intel Stratix 10 SoC.
This patchset is work on top of uboot.git/master and patchset in [1].

Changes:
- rebase on uboot.git/master
- update reviewed-by

Patchset history:
[v1]: https://patchwork.ozlabs.org/cover/900499/
[v2]: https://patchwork.ozlabs.org/cover/916060/

[1]: https://patchwork.ozlabs.org/cover/910018/

Ley Foon Tan (10):
  arm: socfpga: misc: Move bridge command to misc common
  arm: socfpga: stratix10: Add misc support for Stratix10 SoC
  arm: socfpga: stratix10: Add mailbox support for Stratix10 SoC
  arm: socfpga: stratix10: Add MMU support for Stratix10 SoC
  arm: socfpga: Restructure the SPL file
  arm: socfpga: stratix10: Add SPL driver for Stratix10 SoC
  arm: socfpga: stratix10: Add timer support for Stratix10 SoC
  ddr: altera: stratix10: Add DDR support for Stratix10 SoC
  board: altera: stratix10: Add socdk board support for Stratix10 SoC
  arm: socfpga: stratix10: Enable Stratix10 SoC build

 arch/arm/Kconfig                                  |   10 +-
 arch/arm/mach-socfpga/Kconfig                     |   13 +
 arch/arm/mach-socfpga/Makefile                    |   16 +-
 arch/arm/mach-socfpga/include/mach/firewall_s10.h |  120 +++++++
 arch/arm/mach-socfpga/include/mach/mailbox_s10.h  |  144 ++++++++
 arch/arm/mach-socfpga/include/mach/misc.h         |    2 +
 arch/arm/mach-socfpga/include/mach/sdram_s10.h    |  183 ++++++++++
 arch/arm/mach-socfpga/mailbox_s10.c               |  380 ++++++++++++++++++++
 arch/arm/mach-socfpga/misc.c                      |   31 ++
 arch/arm/mach-socfpga/misc_gen5.c                 |   26 +--
 arch/arm/mach-socfpga/misc_s10.c                  |  133 +++++++
 arch/arm/mach-socfpga/mmu-arm64_s10.c             |   71 ++++
 arch/arm/mach-socfpga/spl_a10.c                   |  105 ++++++
 arch/arm/mach-socfpga/{spl.c => spl_gen5.c}       |   62 +---
 arch/arm/mach-socfpga/spl_s10.c                   |  199 +++++++++++
 arch/arm/mach-socfpga/timer_s10.c                 |   26 ++
 board/altera/stratix10-socdk/MAINTAINERS          |    7 +
 board/altera/stratix10-socdk/Makefile             |    7 +
 board/altera/stratix10-socdk/socfpga.c            |    7 +
 configs/socfpga_stratix10_defconfig               |   56 +++
 drivers/ddr/altera/Makefile                       |    1 +
 drivers/ddr/altera/sdram_s10.c                    |  388 +++++++++++++++++++++
 include/configs/socfpga_stratix10_socdk.h         |  222 ++++++++++++
 23 files changed, 2129 insertions(+), 80 deletions(-)
 create mode 100644 arch/arm/mach-socfpga/include/mach/firewall_s10.h
 create mode 100644 arch/arm/mach-socfpga/include/mach/mailbox_s10.h
 create mode 100644 arch/arm/mach-socfpga/include/mach/sdram_s10.h
 create mode 100644 arch/arm/mach-socfpga/mailbox_s10.c
 create mode 100644 arch/arm/mach-socfpga/misc_s10.c
 create mode 100644 arch/arm/mach-socfpga/mmu-arm64_s10.c
 create mode 100644 arch/arm/mach-socfpga/spl_a10.c
 rename arch/arm/mach-socfpga/{spl.c => spl_gen5.c} (81%)
 create mode 100644 arch/arm/mach-socfpga/spl_s10.c
 create mode 100644 arch/arm/mach-socfpga/timer_s10.c
 create mode 100644 board/altera/stratix10-socdk/MAINTAINERS
 create mode 100644 board/altera/stratix10-socdk/Makefile
 create mode 100644 board/altera/stratix10-socdk/socfpga.c
 create mode 100644 configs/socfpga_stratix10_defconfig
 create mode 100644 drivers/ddr/altera/sdram_s10.c
 create mode 100644 include/configs/socfpga_stratix10_socdk.h

Comments

Marek Vasut May 23, 2018, 10 a.m. UTC | #1
On 05/23/2018 06:17 PM, Ley Foon Tan wrote:
> This is 3rd version of patchset to adds support for Intel Stratix 10 SoC.
> This patchset is work on top of uboot.git/master and patchset in [1].
> 
> Changes:
> - rebase on uboot.git/master
> - update reviewed-by
> 
> Patchset history:
> [v1]: https://patchwork.ozlabs.org/cover/900499/
> [v2]: https://patchwork.ozlabs.org/cover/916060/
> 
> [1]: https://patchwork.ozlabs.org/cover/910018/

Applied, thanks
Ley Foon Tan May 24, 2018, 2:11 a.m. UTC | #2
On Wed, May 23, 2018 at 6:00 PM, Marek Vasut <marex@denx.de> wrote:
> On 05/23/2018 06:17 PM, Ley Foon Tan wrote:
>> This is 3rd version of patchset to adds support for Intel Stratix 10 SoC.
>> This patchset is work on top of uboot.git/master and patchset in [1].
>>
>> Changes:
>> - rebase on uboot.git/master
>> - update reviewed-by
>>
>> Patchset history:
>> [v1]: https://patchwork.ozlabs.org/cover/900499/
>> [v2]: https://patchwork.ozlabs.org/cover/916060/
>>
>> [1]: https://patchwork.ozlabs.org/cover/910018/
>
> Applied, thanks
>
> --

Thanks!

Regards
Ley Foon