All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming
@ 2022-05-17 18:38 Neal Frager via buildroot
  2022-05-17 18:38 ` [Buildroot] [PATCH v4 2/3] board/zynqmp/kria/kv260/uboot.fragment: add addl uboot build options Neal Frager via buildroot
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Neal Frager via buildroot @ 2022-05-17 18:38 UTC (permalink / raw)
  To: buildroot; +Cc: wesley, Neal Frager, luca, giulio.benetti, michal.simek

This patch improves the documentation for kria k26 som qspi programming.

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
V2->V3:
  - fixes boot.bin file name spelling error
V3->V4:
  - improved documentation to use $filesize
---
 board/zynqmp/kria/readme.txt | 28 ++++++++++++++++++++++------
 1 file changed, 22 insertions(+), 6 deletions(-)

diff --git a/board/zynqmp/kria/readme.txt b/board/zynqmp/kria/readme.txt
index a3a4b5e65a..977e88491c 100644
--- a/board/zynqmp/kria/readme.txt
+++ b/board/zynqmp/kria/readme.txt
@@ -56,23 +56,39 @@ Where 'sdX' is the device node of the SD.
 
 Eject the SD card, insert it in the board, and power it up.
 
-How to write the boot.bn to QSPI boot flash
-===========================================
+How to write the boot.bin and u-boot.itb to QSPI boot flash
+==========================================================
 
 The Kria SOMs are preconfigured to boot initially from QSPI.
 This makes these boards different from other ZynqMP boards
-in that the boot.bin needs to be flashed into the QSPI boot
-flash such that the U-Boot SPL can then load all of the
-remaining images from the SD card.
+in that the boot.bin and u-boot.itb files need to be flashed 
+into the QSPI boot flash such that U-Boot can then load all 
+of the remaining images from the SD card.
 
 In addition, the KV260 Starter Kit QSPI comes pre-flashed with
 a utility designed to make updating the QSPI flash memory
 easier.
 
-Instructions for using these utilities to update the boot.bin
+Instructions for using these utilities to update the files
 in QSPI flash can be found on the wiki link below.
 
 https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/1641152513/Kria+K26+SOM#Boot-Firmware-Updates
 
+Additionally, it is possible to use u-boot for updating the
+QSPI with new boot.bin and u-boot.itb images with the u-boot
+commands below:
+
+Flashing u-boot.itb:
+    $ sf probe
+    $ fatload mmc 1 0x1000000 u-boot.itb
+    $ sf erase 0xf80000 +$filesize
+    $ sf write 0x1000000 0xf80000 $filesize
+
+Flashing boot.bin:
+    $ sf probe
+    $ fatload mmc 1 0x1000000 boot.bin
+    $ sf erase 0x200000 +$filesize
+    $ sf write 0x1000000 0x200000 $filesize
+
 It is possible to boot the Buildroot generated SD card image without
 updating the QSPI boot.bin image, so this is an optional step.
-- 
2.17.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v4 2/3] board/zynqmp/kria/kv260/uboot.fragment: add addl uboot build options
  2022-05-17 18:38 [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming Neal Frager via buildroot
@ 2022-05-17 18:38 ` Neal Frager via buildroot
  2022-07-07 15:12   ` Peter Korsgaard
  2022-05-17 18:38 ` [Buildroot] [PATCH v4 3/3] configs/zynqmp_kria_kv260_defconfig: build atf with uart1 console Neal Frager via buildroot
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Neal Frager via buildroot @ 2022-05-17 18:38 UTC (permalink / raw)
  To: buildroot; +Cc: wesley, Neal Frager, luca, giulio.benetti, michal.simek

This patch adds additional uboot build options that are
required for kria k26 soms.

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
V2->V3:
V3->V4:
  - added CONFIG_DTB_RESELECT and CONFIG_MULTI_DTB_FIT
---
 board/zynqmp/kria/kv260/uboot.fragment | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/board/zynqmp/kria/kv260/uboot.fragment b/board/zynqmp/kria/kv260/uboot.fragment
index e1aca68692..874eb470ac 100644
--- a/board/zynqmp/kria/kv260/uboot.fragment
+++ b/board/zynqmp/kria/kv260/uboot.fragment
@@ -1 +1,16 @@
 CONFIG_DEFAULT_DEVICE_TREE="zynqmp-smk-k26-revA"
+CONFIG_SYS_SPI_U_BOOT_OFFS=0xF80000
+CONFIG_DTB_RESELECT=y
+CONFIG_MULTI_DTB_FIT=y
+CONFIG_DMA=y
+CONFIG_XILINX_DPDMA=y
+CONFIG_PHY=y
+CONFIG_PHY_XILINX_ZYNQMP=y
+CONFIG_PINCTRL=y
+CONFIG_PINCONF=y
+CONFIG_POWER_DOMAIN=y
+CONFIG_ZYNQMP_POWER_DOMAIN=y
+CONFIG_DM_RESET=y
+CONFIG_RESET_ZYNQMP=y
+CONFIG_VIDEO_ZYNQMP_DPSUB=y
+CONFIG_SF_DEFAULT_SPEED=40000000
-- 
2.17.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH v4 3/3] configs/zynqmp_kria_kv260_defconfig: build atf with uart1 console
  2022-05-17 18:38 [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming Neal Frager via buildroot
  2022-05-17 18:38 ` [Buildroot] [PATCH v4 2/3] board/zynqmp/kria/kv260/uboot.fragment: add addl uboot build options Neal Frager via buildroot
@ 2022-05-17 18:38 ` Neal Frager via buildroot
  2022-07-22  7:36   ` Peter Korsgaard
  2022-05-18 16:23 ` [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming Luca Ceresoli
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Neal Frager via buildroot @ 2022-05-17 18:38 UTC (permalink / raw)
  To: buildroot; +Cc: wesley, Neal Frager, luca, giulio.benetti, michal.simek

This patch fixes an ATF issue by building the ATF for uart1 instead
of uart0 for the Kria KV260 Starter Kit.

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
 configs/zynqmp_kria_kv260_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/zynqmp_kria_kv260_defconfig b/configs/zynqmp_kria_kv260_defconfig
index d4a72a0d19..cc01fb9155 100644
--- a/configs/zynqmp_kria_kv260_defconfig
+++ b/configs/zynqmp_kria_kv260_defconfig
@@ -16,6 +16,7 @@ BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
 BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
 BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,arm-trusted-firmware,xlnx_rebase_v2.6_2022.1)/xlnx_rebase_v2.6_2022.1.tar.gz"
 BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="zynqmp"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_ADDITIONAL_VARIABLES="ZYNQMP_CONSOLE=cadence1"
 BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31_UBOOT=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-- 
2.17.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming
  2022-05-17 18:38 [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming Neal Frager via buildroot
  2022-05-17 18:38 ` [Buildroot] [PATCH v4 2/3] board/zynqmp/kria/kv260/uboot.fragment: add addl uboot build options Neal Frager via buildroot
  2022-05-17 18:38 ` [Buildroot] [PATCH v4 3/3] configs/zynqmp_kria_kv260_defconfig: build atf with uart1 console Neal Frager via buildroot
@ 2022-05-18 16:23 ` Luca Ceresoli
  2022-07-01 14:27 ` Peter Korsgaard
       [not found] ` <431dc45e-07fc-c615-9928-e0dccd3d1a27@xilinx.com>
  4 siblings, 0 replies; 11+ messages in thread
From: Luca Ceresoli @ 2022-05-18 16:23 UTC (permalink / raw)
  To: Neal Frager, buildroot; +Cc: giulio.benetti, michal.simek, wesley

Hi,

On 17/05/22 20:38, Neal Frager wrote:
> This patch improves the documentation for kria k26 som qspi programming.
> 
> Signed-off-by: Neal Frager <neal.frager@amd.com>

I know little about the technical details of Kria, but the set looks
formally well written and understandable, so:

Reviewed-by: Luca Ceresoli <luca@lucaceresoli.net>

-- 
Luca
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming
       [not found] ` <431dc45e-07fc-c615-9928-e0dccd3d1a27@xilinx.com>
@ 2022-06-09 10:22   ` Neal Frager
  2022-06-23  5:57     ` Frager, Neal via buildroot
  2022-07-22  7:36   ` Peter Korsgaard
  1 sibling, 1 reply; 11+ messages in thread
From: Neal Frager @ 2022-06-09 10:22 UTC (permalink / raw)
  To: Michal Simek, Neal Frager, buildroot
  Cc: luca, giulio.benetti, michal.simek, wesley

Hi,

> This patch improves the documentation for kria k26 som qspi programming.
> 
> Signed-off-by: Neal Frager <neal.frager@amd.com>
> ---
> V1->V2:
> V2->V3:
>    - fixes boot.bin file name spelling error
> V3->V4:
>    - improved documentation to use $filesize
> ---
>   board/zynqmp/kria/readme.txt | 28 ++++++++++++++++++++++------
>   1 file changed, 22 insertions(+), 6 deletions(-)
> 
> diff --git a/board/zynqmp/kria/readme.txt 
> b/board/zynqmp/kria/readme.txt index a3a4b5e65a..977e88491c 100644
> --- a/board/zynqmp/kria/readme.txt
> +++ b/board/zynqmp/kria/readme.txt
> @@ -56,23 +56,39 @@ Where 'sdX' is the device node of the SD.
> 
>   Eject the SD card, insert it in the board, and power it up.
> 
> -How to write the boot.bn to QSPI boot flash 
> -===========================================
> +How to write the boot.bin and u-boot.itb to QSPI boot flash 
> +==========================================================
> 
>   The Kria SOMs are preconfigured to boot initially from QSPI.
>   This makes these boards different from other ZynqMP boards -in that 
> the boot.bin needs to be flashed into the QSPI boot -flash such that 
> the U-Boot SPL can then load all of the -remaining images from the SD 
> card.
> +in that the boot.bin and u-boot.itb files need to be flashed into the 
> +QSPI boot flash such that U-Boot can then load all of the remaining 
> +images from the SD card.
> 
>   In addition, the KV260 Starter Kit QSPI comes pre-flashed with
>   a utility designed to make updating the QSPI flash memory
>   easier.
> 
> -Instructions for using these utilities to update the boot.bin
> +Instructions for using these utilities to update the files
>   in QSPI flash can be found on the wiki link below.
> 
>   
> https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/1641152513/Kria+
> K26+SOM#Boot-Firmware-Updates
> 
> +Additionally, it is possible to use u-boot for updating the QSPI with 
> +new boot.bin and u-boot.itb images with the u-boot commands below:
> +
> +Flashing u-boot.itb:
> +    $ sf probe
> +    $ fatload mmc 1 0x1000000 u-boot.itb
> +    $ sf erase 0xf80000 +$filesize
> +    $ sf write 0x1000000 0xf80000 $filesize
> +
> +Flashing boot.bin:
> +    $ sf probe
> +    $ fatload mmc 1 0x1000000 boot.bin
> +    $ sf erase 0x200000 +$filesize
> +    $ sf write 0x1000000 0x200000 $filesize
> +
>   It is possible to boot the Buildroot generated SD card image without
>   updating the QSPI boot.bin image, so this is an optional step.
> --
> 2.17.1
> 

> Acked-by: Michal Simek <michal.simek@amd.com>

Just a friendly reminder regarding this patch set.  Any additional changes needed before committing?

Best regards,
Neal Frager
AMD
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming
  2022-06-09 10:22   ` Neal Frager
@ 2022-06-23  5:57     ` Frager, Neal via buildroot
  0 siblings, 0 replies; 11+ messages in thread
From: Frager, Neal via buildroot @ 2022-06-23  5:57 UTC (permalink / raw)
  To: buildroot, Luca Ceresoli, giulio.benetti, peter, Simek, Michal, wesley

Hi,

> This patch improves the documentation for kria k26 som qspi programming.
> 
> Signed-off-by: Neal Frager <neal.frager@amd.com>
> ---
> V1->V2:
> V2->V3:
>    - fixes boot.bin file name spelling error
> V3->V4:
>    - improved documentation to use $filesize
> ---
>   board/zynqmp/kria/readme.txt | 28 ++++++++++++++++++++++------
>   1 file changed, 22 insertions(+), 6 deletions(-)
> 
> diff --git a/board/zynqmp/kria/readme.txt 
> b/board/zynqmp/kria/readme.txt index a3a4b5e65a..977e88491c 100644
> --- a/board/zynqmp/kria/readme.txt
> +++ b/board/zynqmp/kria/readme.txt
> @@ -56,23 +56,39 @@ Where 'sdX' is the device node of the SD.
> 
>   Eject the SD card, insert it in the board, and power it up.
> 
> -How to write the boot.bn to QSPI boot flash 
> -===========================================
> +How to write the boot.bin and u-boot.itb to QSPI boot flash 
> +==========================================================
> 
>   The Kria SOMs are preconfigured to boot initially from QSPI.
>   This makes these boards different from other ZynqMP boards -in that 
> the boot.bin needs to be flashed into the QSPI boot -flash such that 
> the U-Boot SPL can then load all of the -remaining images from the SD 
> card.
> +in that the boot.bin and u-boot.itb files need to be flashed into the 
> +QSPI boot flash such that U-Boot can then load all of the remaining 
> +images from the SD card.
> 
>   In addition, the KV260 Starter Kit QSPI comes pre-flashed with
>   a utility designed to make updating the QSPI flash memory
>   easier.
> 
> -Instructions for using these utilities to update the boot.bin
> +Instructions for using these utilities to update the files
>   in QSPI flash can be found on the wiki link below.
> 
>   
> https://xilinx-wiki.atlassian.net/wiki/spaces/A/pages/1641152513/Kria+
> K26+SOM#Boot-Firmware-Updates
> 
> +Additionally, it is possible to use u-boot for updating the QSPI with 
> +new boot.bin and u-boot.itb images with the u-boot commands below:
> +
> +Flashing u-boot.itb:
> +    $ sf probe
> +    $ fatload mmc 1 0x1000000 u-boot.itb
> +    $ sf erase 0xf80000 +$filesize
> +    $ sf write 0x1000000 0xf80000 $filesize
> +
> +Flashing boot.bin:
> +    $ sf probe
> +    $ fatload mmc 1 0x1000000 boot.bin
> +    $ sf erase 0x200000 +$filesize
> +    $ sf write 0x1000000 0x200000 $filesize
> +
>   It is possible to boot the Buildroot generated SD card image without
>   updating the QSPI boot.bin image, so this is an optional step.
> --
> 2.17.1
> 

> Acked-by: Michal Simek <michal.simek@amd.com>

Just a friendly reminder regarding this patch set.  Any additional changes needed before committing?

Best regards,
Neal Frager
AMD
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming
  2022-05-17 18:38 [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming Neal Frager via buildroot
                   ` (2 preceding siblings ...)
  2022-05-18 16:23 ` [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming Luca Ceresoli
@ 2022-07-01 14:27 ` Peter Korsgaard
       [not found] ` <431dc45e-07fc-c615-9928-e0dccd3d1a27@xilinx.com>
  4 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2022-07-01 14:27 UTC (permalink / raw)
  To: Neal Frager; +Cc: luca, giulio.benetti, wesley, michal.simek, buildroot

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:

 > This patch improves the documentation for kria k26 som qspi programming.
 > Signed-off-by: Neal Frager <neal.frager@amd.com>
 > ---
 V1-> V2:
 V2-> V3:
 >   - fixes boot.bin file name spelling error
 V3-> V4:
 >   - improved documentation to use $filesize
 > ---
 >  board/zynqmp/kria/readme.txt | 28 ++++++++++++++++++++++------
 >  1 file changed, 22 insertions(+), 6 deletions(-)

 > diff --git a/board/zynqmp/kria/readme.txt b/board/zynqmp/kria/readme.txt
 > index a3a4b5e65a..977e88491c 100644
 > --- a/board/zynqmp/kria/readme.txt
 > +++ b/board/zynqmp/kria/readme.txt
 > @@ -56,23 +56,39 @@ Where 'sdX' is the device node of the SD.
 
 >  Eject the SD card, insert it in the board, and power it up.
 
 > -How to write the boot.bn to QSPI boot flash
 > -===========================================
 > +How to write the boot.bin and u-boot.itb to QSPI boot flash
 > +==========================================================

The "the" IMHO sounds odd, so I dropped it.


 >  The Kria SOMs are preconfigured to boot initially from QSPI.
 >  This makes these boards different from other ZynqMP boards
 > -in that the boot.bin needs to be flashed into the QSPI boot
 > -flash such that the U-Boot SPL can then load all of the
 > -remaining images from the SD card.
 > +in that the boot.bin and u-boot.itb files need to be flashed 
 > +into the QSPI boot flash such that U-Boot can then load all 

And the trailing spaces here.

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v4 2/3] board/zynqmp/kria/kv260/uboot.fragment: add addl uboot build options
  2022-05-17 18:38 ` [Buildroot] [PATCH v4 2/3] board/zynqmp/kria/kv260/uboot.fragment: add addl uboot build options Neal Frager via buildroot
@ 2022-07-07 15:12   ` Peter Korsgaard
  2022-07-31  6:15     ` Peter Korsgaard
  0 siblings, 1 reply; 11+ messages in thread
From: Peter Korsgaard @ 2022-07-07 15:12 UTC (permalink / raw)
  To: Neal Frager; +Cc: luca, giulio.benetti, wesley, michal.simek, buildroot

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:

 > This patch adds additional uboot build options that are
 > required for kria k26 soms.

 > Signed-off-by: Neal Frager <neal.frager@amd.com>
 > ---
 > V1-> V2:
 > V2-> V3:
 > V3-> V4:
 >   - added CONFIG_DTB_RESELECT and CONFIG_MULTI_DTB_FIT

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v4 3/3] configs/zynqmp_kria_kv260_defconfig: build atf with uart1 console
  2022-05-17 18:38 ` [Buildroot] [PATCH v4 3/3] configs/zynqmp_kria_kv260_defconfig: build atf with uart1 console Neal Frager via buildroot
@ 2022-07-22  7:36   ` Peter Korsgaard
  0 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2022-07-22  7:36 UTC (permalink / raw)
  To: Neal Frager; +Cc: luca, giulio.benetti, wesley, michal.simek, buildroot

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:

 > This patch fixes an ATF issue by building the ATF for uart1 instead
 > of uart0 for the Kria KV260 Starter Kit.

 > Signed-off-by: Neal Frager <neal.frager@amd.com>

Committed to 2022.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming
       [not found] ` <431dc45e-07fc-c615-9928-e0dccd3d1a27@xilinx.com>
  2022-06-09 10:22   ` Neal Frager
@ 2022-07-22  7:36   ` Peter Korsgaard
  1 sibling, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2022-07-22  7:36 UTC (permalink / raw)
  To: Michal Simek
  Cc: wesley, Neal Frager, buildroot, luca, giulio.benetti, michal.simek

>>>>> "Michal" == Michal Simek <michal.simek@xilinx.com> writes:

 > On 5/17/22 20:38, Neal Frager wrote:
 >> [CAUTION: External Email]
 >> This patch improves the documentation for kria k26 som qspi
 >> programming.
 >> Signed-off-by: Neal Frager <neal.frager@amd.com>

Committed to 2022.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v4 2/3] board/zynqmp/kria/kv260/uboot.fragment: add addl uboot build options
  2022-07-07 15:12   ` Peter Korsgaard
@ 2022-07-31  6:15     ` Peter Korsgaard
  0 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2022-07-31  6:15 UTC (permalink / raw)
  To: Neal Frager; +Cc: luca, giulio.benetti, buildroot, michal.simek, wesley

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:
 >> This patch adds additional uboot build options that are
 >> required for kria k26 soms.

 >> Signed-off-by: Neal Frager <neal.frager@amd.com>
 >> ---
 V1-> V2:
 V2-> V3:
 V3-> V4:
 >> - added CONFIG_DTB_RESELECT and CONFIG_MULTI_DTB_FIT

 > Committed, thanks.

Committed to 2022.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-07-31  6:15 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-17 18:38 [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming Neal Frager via buildroot
2022-05-17 18:38 ` [Buildroot] [PATCH v4 2/3] board/zynqmp/kria/kv260/uboot.fragment: add addl uboot build options Neal Frager via buildroot
2022-07-07 15:12   ` Peter Korsgaard
2022-07-31  6:15     ` Peter Korsgaard
2022-05-17 18:38 ` [Buildroot] [PATCH v4 3/3] configs/zynqmp_kria_kv260_defconfig: build atf with uart1 console Neal Frager via buildroot
2022-07-22  7:36   ` Peter Korsgaard
2022-05-18 16:23 ` [Buildroot] [PATCH v4 1/3] board/zynqmp/kria/readme.txt: improve documentation for qspi programming Luca Ceresoli
2022-07-01 14:27 ` Peter Korsgaard
     [not found] ` <431dc45e-07fc-c615-9928-e0dccd3d1a27@xilinx.com>
2022-06-09 10:22   ` Neal Frager
2022-06-23  5:57     ` Frager, Neal via buildroot
2022-07-22  7:36   ` Peter Korsgaard

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.