All of lore.kernel.org
 help / color / mirror / Atom feed
* Pull request: SoCFPGA changes for commit 05dcb5be507a
@ 2022-07-01  9:00 Chee, Tien Fong
  2022-07-01 19:46 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Chee, Tien Fong @ 2022-07-01  9:00 UTC (permalink / raw)
  To: Tom Rini
  Cc: u-boot, Vasut, Marek, Simon Goldschmidt, Paweł Anikiel,
	Chaplin, Kris, Hea, Kok Kiang, Lokanathan, Raaj, Lim,
	Elly Siew Chin

Hi Tom,

Please pull the SoCFPGA changes as shown in below.

Thanks.

Best regards,
Tien Fong


The following changes since commit 05dcb5be507a0580a0fc57dd363c632ac4a6b3c4:

  mtd: mxs_nand_spl: fix nand_command protocol violation (2022-06-29 09:26:44 -0400)

are available in the Git repository at:

  https://github.com/tienfong/uboot_mainline.git ef5ba2cef4a08b68caaa9215fcac142d3025bbf7

for you to fetch changes up to ef5ba2cef4a08b68caaa9215fcac142d3025bbf7:

  drivers: clk: Update license for Intel N5X device (2022-07-01 15:00:39 +0800)

----------------------------------------------------------------
Paweł Anikiel (11):
      arm: dts: Add Mercury+ AA1 devicetrees
      arm: dts: Add Chameleonv3 handoff headers
      arm: dts: Add Chameleonv3 devicetrees
      board: Add Chameleonv3 board dir
      config: Add Chameleonv3 config
      misc: atsha204a: Increase wake delay by tWHI
      sysreset: socfpga: Use parent device for reading base address
      socfpga: arria10: Replace delays with busy waiting in cm_full_cfg
      socfpga: arria10: Improve bitstream loading speed
      socfpga: arria10: Wait for fifo empty after writing bitstream
      socfpga: arria10: Allow dcache_enable before relocation

Teik Heng Chong (1):
      drivers: clk: Update license for Intel N5X device

arch/arm/dts/Makefile                                      |   2 +
arch/arm/dts/socfpga_arria10_chameleonv3.dts               |  90 ++++++++++++++++
arch/arm/dts/socfpga_arria10_chameleonv3_270_3-u-boot.dtsi |   8 ++
arch/arm/dts/socfpga_arria10_chameleonv3_270_3.dts         |   5 +
arch/arm/dts/socfpga_arria10_chameleonv3_270_3_handoff.h   | 305 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
arch/arm/dts/socfpga_arria10_chameleonv3_480_2-u-boot.dtsi |   8 ++
arch/arm/dts/socfpga_arria10_chameleonv3_480_2.dts         |   5 +
arch/arm/dts/socfpga_arria10_chameleonv3_480_2_handoff.h   | 305 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
arch/arm/dts/socfpga_arria10_mercury_aa1-u-boot.dtsi       |  54 ++++++++++
arch/arm/dts/socfpga_arria10_mercury_aa1.dtsi              |  72 +++++++++++++
arch/arm/mach-socfpga/Kconfig                              |   7 ++
arch/arm/mach-socfpga/clock_manager_arria10.c              |  31 ++++--
arch/arm/mach-socfpga/misc_arria10.c                       |  26 +++++
board/google/chameleonv3/Makefile                          |   5 +
board/google/chameleonv3/board.c                           |  27 +++++
board/google/chameleonv3/fpga.its                          |  28 +++++
board/google/chameleonv3/fpga_early_io.its                 |  35 +++++++
board/google/chameleonv3/mercury_aa1.c                     |  43 ++++++++
board/google/chameleonv3/mercury_aa1.h                     |  12 +++
configs/socfpga_chameleonv3_defconfig                      |  29 ++++++
drivers/clk/altera/clk-mem-n5x.c                           |   4 +-
drivers/clk/altera/clk-mem-n5x.h                           |   4 +-
drivers/clk/altera/clk-n5x.c                               |   4 +-
drivers/clk/altera/clk-n5x.h                               |   4 +-
drivers/fpga/socfpga_arria10.c                             |  28 ++++-
drivers/misc/atsha204a-i2c.c                               |   5 +-
drivers/sysreset/sysreset_socfpga.c                        |   2 +-
include/configs/socfpga_chameleonv3.h                      |  44 ++++++++
28 files changed, 1170 insertions(+), 22 deletions(-)
create mode 100644 arch/arm/dts/socfpga_arria10_chameleonv3.dts
create mode 100644 arch/arm/dts/socfpga_arria10_chameleonv3_270_3-u-boot.dtsi
create mode 100644 arch/arm/dts/socfpga_arria10_chameleonv3_270_3.dts
create mode 100644 arch/arm/dts/socfpga_arria10_chameleonv3_270_3_handoff.h
create mode 100644 arch/arm/dts/socfpga_arria10_chameleonv3_480_2-u-boot.dtsi
create mode 100644 arch/arm/dts/socfpga_arria10_chameleonv3_480_2.dts
create mode 100644 arch/arm/dts/socfpga_arria10_chameleonv3_480_2_handoff.h
create mode 100644 arch/arm/dts/socfpga_arria10_mercury_aa1-u-boot.dtsi
create mode 100644 arch/arm/dts/socfpga_arria10_mercury_aa1.dtsi
create mode 100644 board/google/chameleonv3/Makefile
create mode 100644 board/google/chameleonv3/board.c
create mode 100644 board/google/chameleonv3/fpga.its
create mode 100644 board/google/chameleonv3/fpga_early_io.its
create mode 100644 board/google/chameleonv3/mercury_aa1.c
create mode 100644 board/google/chameleonv3/mercury_aa1.h
create mode 100644 configs/socfpga_chameleonv3_defconfig
create mode 100644 include/configs/socfpga_chameleonv3.h

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

* Re: Pull request: SoCFPGA changes for commit 05dcb5be507a
  2022-07-01  9:00 Pull request: SoCFPGA changes for commit 05dcb5be507a Chee, Tien Fong
@ 2022-07-01 19:46 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2022-07-01 19:46 UTC (permalink / raw)
  To: Chee, Tien Fong
  Cc: u-boot, Vasut, Marek, Simon Goldschmidt, Paweł Anikiel,
	Chaplin, Kris, Hea, Kok Kiang, Lokanathan, Raaj, Lim,
	Elly Siew Chin

[-- Attachment #1: Type: text/plain, Size: 730 bytes --]

On Fri, Jul 01, 2022 at 09:00:38AM +0000, Chee, Tien Fong wrote:

> Hi Tom,
> 
> Please pull the SoCFPGA changes as shown in below.
> 
> Thanks.
> 
> Best regards,
> Tien Fong
> 
> 
> The following changes since commit 05dcb5be507a0580a0fc57dd363c632ac4a6b3c4:
> 
>   mtd: mxs_nand_spl: fix nand_command protocol violation (2022-06-29 09:26:44 -0400)
> 
> are available in the Git repository at:
> 
>   https://github.com/tienfong/uboot_mainline.git ef5ba2cef4a08b68caaa9215fcac142d3025bbf7
> 
> for you to fetch changes up to ef5ba2cef4a08b68caaa9215fcac142d3025bbf7:
> 
>   drivers: clk: Update license for Intel N5X device (2022-07-01 15:00:39 +0800)
> 

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2022-07-01 19:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-01  9:00 Pull request: SoCFPGA changes for commit 05dcb5be507a Chee, Tien Fong
2022-07-01 19:46 ` Tom Rini

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.