qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] tests/avocado: update sbsa-ref firmware
@ 2024-05-28 18:29 Marcin Juszkiewicz
  2024-05-29 13:12 ` Leif Lindholm
  2024-05-29 15:34 ` Alex Bennée
  0 siblings, 2 replies; 9+ messages in thread
From: Marcin Juszkiewicz @ 2024-05-28 18:29 UTC (permalink / raw)
  To: qemu-devel
  Cc: qemu-arm, Leif Lindholm, Radoslaw Biernacki, Peter Maydell,
	Cleber Rosa, Philippe Mathieu-Daudé,
	Wainer dos Santos Moschetta, Beraldo Leal, Marcin Juszkiewicz

Partial support for NUMA setup:
- cpu nodes
- memory nodes

Used versions:

- Trusted Firmware v2.11.0
- Tianocore EDK2 stable202405
- Tianocore EDK2 Platforms code commit 4bbd0ed

Firmware is built using Debian 'bookworm' cross toolchain (gcc 12.2.0).
---
 tests/avocado/machine_aarch64_sbsaref.py | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/tests/avocado/machine_aarch64_sbsaref.py b/tests/avocado/machine_aarch64_sbsaref.py
index 98c76c1ff7..6bb82f2a03 100644
--- a/tests/avocado/machine_aarch64_sbsaref.py
+++ b/tests/avocado/machine_aarch64_sbsaref.py
@@ -37,18 +37,18 @@ def fetch_firmware(self):
 
         Used components:
 
-        - Trusted Firmware 2.10.2
-        - Tianocore EDK2 stable202402
-        - Tianocore EDK2-platforms commit 085c2fb
+        - Trusted Firmware 2.11.0
+        - Tianocore EDK2 stable202405
+        - Tianocore EDK2-platforms commit 4bbd0ed
 
         """
 
         # Secure BootRom (TF-A code)
         fs0_xz_url = (
             "https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/"
-            "20240313-116475/edk2/SBSA_FLASH0.fd.xz"
+            "20240528-140808/edk2/SBSA_FLASH0.fd.xz"
         )
-        fs0_xz_hash = "637593749cc307dea7dc13265c32e5d020267552f22b18a31850b8429fc5e159"
+        fs0_xz_hash = "fa6004900b67172914c908b78557fec4d36a5f784f4c3dd08f49adb75e1892a9"
         tar_xz_path = self.fetch_asset(fs0_xz_url, asset_hash=fs0_xz_hash,
                                       algorithm='sha256')
         archive.extract(tar_xz_path, self.workdir)
@@ -57,9 +57,9 @@ def fetch_firmware(self):
         # Non-secure rom (UEFI and EFI variables)
         fs1_xz_url = (
             "https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/"
-            "20240313-116475/edk2/SBSA_FLASH1.fd.xz"
+            "20240528-140808/edk2/SBSA_FLASH1.fd.xz"
         )
-        fs1_xz_hash = "cb0a5e8cf5e303c5d3dc106cfd5943ffe9714b86afddee7164c69ee1dd41991c"
+        fs1_xz_hash = "5f3747d4000bc416d9641e33ff4ac60c3cc8cb74ca51b6e932e58531c62eb6f7"
         tar_xz_path = self.fetch_asset(fs1_xz_url, asset_hash=fs1_xz_hash,
                                       algorithm='sha256')
         archive.extract(tar_xz_path, self.workdir)
@@ -98,15 +98,15 @@ def test_sbsaref_edk2_firmware(self):
 
         # AP Trusted ROM
         wait_for_console_pattern(self, "Booting Trusted Firmware")
-        wait_for_console_pattern(self, "BL1: v2.10.2(release):")
+        wait_for_console_pattern(self, "BL1: v2.11.0(release):")
         wait_for_console_pattern(self, "BL1: Booting BL2")
 
         # Trusted Boot Firmware
-        wait_for_console_pattern(self, "BL2: v2.10.2(release)")
+        wait_for_console_pattern(self, "BL2: v2.11.0(release)")
         wait_for_console_pattern(self, "Booting BL31")
 
         # EL3 Runtime Software
-        wait_for_console_pattern(self, "BL31: v2.10.2(release)")
+        wait_for_console_pattern(self, "BL31: v2.11.0(release)")
 
         # Non-trusted Firmware
         wait_for_console_pattern(self, "UEFI firmware (version 1.0")
-- 
2.45.1



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

* Re: [PATCH 1/1] tests/avocado: update sbsa-ref firmware
  2024-05-28 18:29 [PATCH 1/1] tests/avocado: update sbsa-ref firmware Marcin Juszkiewicz
@ 2024-05-29 13:12 ` Leif Lindholm
  2024-05-29 13:37   ` Marcin Juszkiewicz
  2024-05-29 15:34 ` Alex Bennée
  1 sibling, 1 reply; 9+ messages in thread
From: Leif Lindholm @ 2024-05-29 13:12 UTC (permalink / raw)
  To: Marcin Juszkiewicz, qemu-devel
  Cc: qemu-arm, Radoslaw Biernacki, Peter Maydell, Cleber Rosa,
	Philippe Mathieu-Daudé, Wainer dos Santos Moschetta,
	Beraldo Leal

On 2024-05-28 19:29, Marcin Juszkiewicz wrote:
> Partial support for NUMA setup:
> - cpu nodes
> - memory nodes
> 
> Used versions:
> 
> - Trusted Firmware v2.11.0
> - Tianocore EDK2 stable202405
> - Tianocore EDK2 Platforms code commit 4bbd0ed
> 
> Firmware is built using Debian 'bookworm' cross toolchain (gcc 12.2.0).

Missing signoff?

Apart from that:
Reviewed-by: Leif Lindholm <quic_llindhol@quicinc.com>

> ---
>   tests/avocado/machine_aarch64_sbsaref.py | 20 ++++++++++----------
>   1 file changed, 10 insertions(+), 10 deletions(-)
> 
> diff --git a/tests/avocado/machine_aarch64_sbsaref.py b/tests/avocado/machine_aarch64_sbsaref.py
> index 98c76c1ff7..6bb82f2a03 100644
> --- a/tests/avocado/machine_aarch64_sbsaref.py
> +++ b/tests/avocado/machine_aarch64_sbsaref.py
> @@ -37,18 +37,18 @@ def fetch_firmware(self):
>   
>           Used components:
>   
> -        - Trusted Firmware 2.10.2
> -        - Tianocore EDK2 stable202402
> -        - Tianocore EDK2-platforms commit 085c2fb
> +        - Trusted Firmware 2.11.0
> +        - Tianocore EDK2 stable202405
> +        - Tianocore EDK2-platforms commit 4bbd0ed
>   
>           """
>   
>           # Secure BootRom (TF-A code)
>           fs0_xz_url = (
>               "https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/"
> -            "20240313-116475/edk2/SBSA_FLASH0.fd.xz"
> +            "20240528-140808/edk2/SBSA_FLASH0.fd.xz"
>           )
> -        fs0_xz_hash = "637593749cc307dea7dc13265c32e5d020267552f22b18a31850b8429fc5e159"
> +        fs0_xz_hash = "fa6004900b67172914c908b78557fec4d36a5f784f4c3dd08f49adb75e1892a9"
>           tar_xz_path = self.fetch_asset(fs0_xz_url, asset_hash=fs0_xz_hash,
>                                         algorithm='sha256')
>           archive.extract(tar_xz_path, self.workdir)
> @@ -57,9 +57,9 @@ def fetch_firmware(self):
>           # Non-secure rom (UEFI and EFI variables)
>           fs1_xz_url = (
>               "https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/"
> -            "20240313-116475/edk2/SBSA_FLASH1.fd.xz"
> +            "20240528-140808/edk2/SBSA_FLASH1.fd.xz"
>           )
> -        fs1_xz_hash = "cb0a5e8cf5e303c5d3dc106cfd5943ffe9714b86afddee7164c69ee1dd41991c"
> +        fs1_xz_hash = "5f3747d4000bc416d9641e33ff4ac60c3cc8cb74ca51b6e932e58531c62eb6f7"
>           tar_xz_path = self.fetch_asset(fs1_xz_url, asset_hash=fs1_xz_hash,
>                                         algorithm='sha256')
>           archive.extract(tar_xz_path, self.workdir)
> @@ -98,15 +98,15 @@ def test_sbsaref_edk2_firmware(self):
>   
>           # AP Trusted ROM
>           wait_for_console_pattern(self, "Booting Trusted Firmware")
> -        wait_for_console_pattern(self, "BL1: v2.10.2(release):")
> +        wait_for_console_pattern(self, "BL1: v2.11.0(release):")
>           wait_for_console_pattern(self, "BL1: Booting BL2")
>   
>           # Trusted Boot Firmware
> -        wait_for_console_pattern(self, "BL2: v2.10.2(release)")
> +        wait_for_console_pattern(self, "BL2: v2.11.0(release)")
>           wait_for_console_pattern(self, "Booting BL31")
>   
>           # EL3 Runtime Software
> -        wait_for_console_pattern(self, "BL31: v2.10.2(release)")
> +        wait_for_console_pattern(self, "BL31: v2.11.0(release)")
>   
>           # Non-trusted Firmware
>           wait_for_console_pattern(self, "UEFI firmware (version 1.0")



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

* Re: [PATCH 1/1] tests/avocado: update sbsa-ref firmware
  2024-05-29 13:12 ` Leif Lindholm
@ 2024-05-29 13:37   ` Marcin Juszkiewicz
  0 siblings, 0 replies; 9+ messages in thread
From: Marcin Juszkiewicz @ 2024-05-29 13:37 UTC (permalink / raw)
  To: Leif Lindholm, qemu-devel
  Cc: qemu-arm, Radoslaw Biernacki, Peter Maydell, Cleber Rosa,
	Philippe Mathieu-Daudé, Wainer dos Santos Moschetta,
	Beraldo Leal

W dniu 29.05.2024 o 15:12, Leif Lindholm pisze:
> On 2024-05-28 19:29, Marcin Juszkiewicz wrote:
>> Partial support for NUMA setup:
>> - cpu nodes
>> - memory nodes
>>
>> Used versions:
>>
>> - Trusted Firmware v2.11.0
>> - Tianocore EDK2 stable202405
>> - Tianocore EDK2 Platforms code commit 4bbd0ed
>>
>> Firmware is built using Debian 'bookworm' cross toolchain (gcc 12.2.0).
> 
> Missing signoff?

Ooops.

Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>

> Apart from that:
> Reviewed-by: Leif Lindholm <quic_llindhol@quicinc.com>
> 
>> ---
>>   tests/avocado/machine_aarch64_sbsaref.py | 20 ++++++++++----------
>>   1 file changed, 10 insertions(+), 10 deletions(-)
>>
>> diff --git a/tests/avocado/machine_aarch64_sbsaref.py 
>> b/tests/avocado/machine_aarch64_sbsaref.py
>> index 98c76c1ff7..6bb82f2a03 100644
>> --- a/tests/avocado/machine_aarch64_sbsaref.py
>> +++ b/tests/avocado/machine_aarch64_sbsaref.py
>> @@ -37,18 +37,18 @@ def fetch_firmware(self):
>>           Used components:
>> -        - Trusted Firmware 2.10.2
>> -        - Tianocore EDK2 stable202402
>> -        - Tianocore EDK2-platforms commit 085c2fb
>> +        - Trusted Firmware 2.11.0
>> +        - Tianocore EDK2 stable202405
>> +        - Tianocore EDK2-platforms commit 4bbd0ed
>>           """
>>           # Secure BootRom (TF-A code)
>>           fs0_xz_url = (
>>               
>> "https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/"
>> -            "20240313-116475/edk2/SBSA_FLASH0.fd.xz"
>> +            "20240528-140808/edk2/SBSA_FLASH0.fd.xz"
>>           )
>> -        fs0_xz_hash = 
>> "637593749cc307dea7dc13265c32e5d020267552f22b18a31850b8429fc5e159"
>> +        fs0_xz_hash = 
>> "fa6004900b67172914c908b78557fec4d36a5f784f4c3dd08f49adb75e1892a9"
>>           tar_xz_path = self.fetch_asset(fs0_xz_url, 
>> asset_hash=fs0_xz_hash,
>>                                         algorithm='sha256')
>>           archive.extract(tar_xz_path, self.workdir)
>> @@ -57,9 +57,9 @@ def fetch_firmware(self):
>>           # Non-secure rom (UEFI and EFI variables)
>>           fs1_xz_url = (
>>               
>> "https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/"
>> -            "20240313-116475/edk2/SBSA_FLASH1.fd.xz"
>> +            "20240528-140808/edk2/SBSA_FLASH1.fd.xz"
>>           )
>> -        fs1_xz_hash = 
>> "cb0a5e8cf5e303c5d3dc106cfd5943ffe9714b86afddee7164c69ee1dd41991c"
>> +        fs1_xz_hash = 
>> "5f3747d4000bc416d9641e33ff4ac60c3cc8cb74ca51b6e932e58531c62eb6f7"
>>           tar_xz_path = self.fetch_asset(fs1_xz_url, 
>> asset_hash=fs1_xz_hash,
>>                                         algorithm='sha256')
>>           archive.extract(tar_xz_path, self.workdir)
>> @@ -98,15 +98,15 @@ def test_sbsaref_edk2_firmware(self):
>>           # AP Trusted ROM
>>           wait_for_console_pattern(self, "Booting Trusted Firmware")
>> -        wait_for_console_pattern(self, "BL1: v2.10.2(release):")
>> +        wait_for_console_pattern(self, "BL1: v2.11.0(release):")
>>           wait_for_console_pattern(self, "BL1: Booting BL2")
>>           # Trusted Boot Firmware
>> -        wait_for_console_pattern(self, "BL2: v2.10.2(release)")
>> +        wait_for_console_pattern(self, "BL2: v2.11.0(release)")
>>           wait_for_console_pattern(self, "Booting BL31")
>>           # EL3 Runtime Software
>> -        wait_for_console_pattern(self, "BL31: v2.10.2(release)")
>> +        wait_for_console_pattern(self, "BL31: v2.11.0(release)")
>>           # Non-trusted Firmware
>>           wait_for_console_pattern(self, "UEFI firmware (version 1.0")
> 



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

* Re: [PATCH 1/1] tests/avocado: update sbsa-ref firmware
  2024-05-28 18:29 [PATCH 1/1] tests/avocado: update sbsa-ref firmware Marcin Juszkiewicz
  2024-05-29 13:12 ` Leif Lindholm
@ 2024-05-29 15:34 ` Alex Bennée
  1 sibling, 0 replies; 9+ messages in thread
From: Alex Bennée @ 2024-05-29 15:34 UTC (permalink / raw)
  To: Marcin Juszkiewicz
  Cc: qemu-devel, qemu-arm, Leif Lindholm, Radoslaw Biernacki,
	Peter Maydell, Cleber Rosa, Philippe Mathieu-Daudé,
	Wainer dos Santos Moschetta, Beraldo Leal

Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> writes:

> Partial support for NUMA setup:
> - cpu nodes
> - memory nodes
>
> Used versions:
>
> - Trusted Firmware v2.11.0
> - Tianocore EDK2 stable202405
> - Tianocore EDK2 Platforms code commit 4bbd0ed
>
> Firmware is built using Debian 'bookworm' cross toolchain (gcc
> 12.2.0).

Queued to testing/next, thanks.

-- 
Alex Bennée
Virtualisation Tech Lead @ Linaro


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

* [PATCH 1/1] tests/avocado: update sbsa-ref firmware
@ 2024-11-25 12:54 Marcin Juszkiewicz
  2024-11-25 13:25 ` Peter Maydell
  0 siblings, 1 reply; 9+ messages in thread
From: Marcin Juszkiewicz @ 2024-11-25 12:54 UTC (permalink / raw)
  To: qemu-devel
  Cc: Radoslaw Biernacki, Leif Lindholm, Peter Maydell, qemu-arm,
	Marcin Juszkiewicz

Firmware is built using Debian 'bookworm' cross toolchain (gcc 12.2.0).

Used versions:

- Trusted Firmware v2.12.0
- Tianocore EDK2 stable202411
- Tianocore EDK2 Platforms code commit 4b3530d

Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
---
 tests/functional/test_aarch64_sbsaref.py | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/tests/functional/test_aarch64_sbsaref.py b/tests/functional/test_aarch64_sbsaref.py
index 9fda396b3a..3a09523265 100755
--- a/tests/functional/test_aarch64_sbsaref.py
+++ b/tests/functional/test_aarch64_sbsaref.py
@@ -25,9 +25,9 @@ def fetch_firmware(test):
 
     Used components:
 
-    - Trusted Firmware         v2.11.0
-    - Tianocore EDK2           4d4f569924
-    - Tianocore EDK2-platforms 3f08401
+    - Trusted Firmware         v2.12.0
+    - Tianocore EDK2           edk2-stable202411
+    - Tianocore EDK2-platforms 4b3530d
 
     """
 
@@ -63,13 +63,13 @@ class Aarch64SbsarefMachine(QemuSystemTest):
 
     ASSET_FLASH0 = Asset(
         ('https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/'
-         '20240619-148232/edk2/SBSA_FLASH0.fd.xz'),
-        '0c954842a590988f526984de22e21ae0ab9cb351a0c99a8a58e928f0c7359cf7')
+         '20241122-189881/edk2/SBSA_FLASH0.fd.xz'),
+        '76eb89d42eebe324e4395329f47447cda9ac920aabcf99aca85424609c3384a5')
 
     ASSET_FLASH1 = Asset(
         ('https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/'
-         '20240619-148232/edk2/SBSA_FLASH1.fd.xz'),
-        'c6ec39374c4d79bb9e9cdeeb6db44732d90bb4a334cec92002b3f4b9cac4b5ee')
+         '20241122-189881/edk2/SBSA_FLASH1.fd.xz'),
+        'f850f243bd8dbd49c51e061e0f79f1697546938f454aeb59ab7d93e5f0d412fc')
 
     def test_sbsaref_edk2_firmware(self):
 
@@ -87,15 +87,15 @@ def test_sbsaref_edk2_firmware(self):
 
         # AP Trusted ROM
         wait_for_console_pattern(self, "Booting Trusted Firmware")
-        wait_for_console_pattern(self, "BL1: v2.11.0(release):")
+        wait_for_console_pattern(self, "BL1: v2.12.0(release):")
         wait_for_console_pattern(self, "BL1: Booting BL2")
 
         # Trusted Boot Firmware
-        wait_for_console_pattern(self, "BL2: v2.11.0(release)")
+        wait_for_console_pattern(self, "BL2: v2.12.0(release)")
         wait_for_console_pattern(self, "Booting BL31")
 
         # EL3 Runtime Software
-        wait_for_console_pattern(self, "BL31: v2.11.0(release)")
+        wait_for_console_pattern(self, "BL31: v2.12.0(release)")
 
         # Non-trusted Firmware
         wait_for_console_pattern(self, "UEFI firmware (version 1.0")
-- 
2.47.0



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

* Re: [PATCH 1/1] tests/avocado: update sbsa-ref firmware
  2024-11-25 12:54 Marcin Juszkiewicz
@ 2024-11-25 13:25 ` Peter Maydell
  2024-12-16 12:46   ` Peter Maydell
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Maydell @ 2024-11-25 13:25 UTC (permalink / raw)
  To: Marcin Juszkiewicz
  Cc: qemu-devel, Radoslaw Biernacki, Leif Lindholm, qemu-arm

On Mon, 25 Nov 2024 at 12:54, Marcin Juszkiewicz
<marcin.juszkiewicz@linaro.org> wrote:
>
> Firmware is built using Debian 'bookworm' cross toolchain (gcc 12.2.0).
>
> Used versions:
>
> - Trusted Firmware v2.12.0
> - Tianocore EDK2 stable202411
> - Tianocore EDK2 Platforms code commit 4b3530d
>
> Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>

Hi; what's the benefit to taking this update? Would it be better
postponed until the 9.2 release is complete?

thanks
-- PMM


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

* Re: [PATCH 1/1] tests/avocado: update sbsa-ref firmware
  2024-11-25 13:25 ` Peter Maydell
@ 2024-12-16 12:46   ` Peter Maydell
  2024-12-17  7:10     ` Marcin Juszkiewicz
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Maydell @ 2024-12-16 12:46 UTC (permalink / raw)
  To: Marcin Juszkiewicz
  Cc: qemu-devel, Radoslaw Biernacki, Leif Lindholm, qemu-arm

On Mon, 25 Nov 2024 at 13:25, Peter Maydell <peter.maydell@linaro.org> wrote:
>
> On Mon, 25 Nov 2024 at 12:54, Marcin Juszkiewicz
> <marcin.juszkiewicz@linaro.org> wrote:
> >
> > Firmware is built using Debian 'bookworm' cross toolchain (gcc 12.2.0).
> >
> > Used versions:
> >
> > - Trusted Firmware v2.12.0
> > - Tianocore EDK2 stable202411
> > - Tianocore EDK2 Platforms code commit 4b3530d
> >
> > Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
>
> Hi; what's the benefit to taking this update? Would it be better
> postponed until the 9.2 release is complete?

We're now past the 9.2 release, but it would still be good
to know what the benefit to updating the firmware images
for this test is.

thanks
-- PMM


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

* Re: [PATCH 1/1] tests/avocado: update sbsa-ref firmware
  2024-12-16 12:46   ` Peter Maydell
@ 2024-12-17  7:10     ` Marcin Juszkiewicz
  2024-12-17 15:24       ` Peter Maydell
  0 siblings, 1 reply; 9+ messages in thread
From: Marcin Juszkiewicz @ 2024-12-17  7:10 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-devel, Radoslaw Biernacki, Leif Lindholm, qemu-arm

W dniu 16.12.2024 o 13:46, Peter Maydell pisze:
> On Mon, 25 Nov 2024 at 13:25, Peter Maydell <peter.maydell@linaro.org> wrote:
>>
>> On Mon, 25 Nov 2024 at 12:54, Marcin Juszkiewicz
>> <marcin.juszkiewicz@linaro.org> wrote:
>>>
>>> Firmware is built using Debian 'bookworm' cross toolchain (gcc 12.2.0).
>>>
>>> Used versions:
>>>
>>> - Trusted Firmware v2.12.0
>>> - Tianocore EDK2 stable202411
>>> - Tianocore EDK2 Platforms code commit 4b3530d
>>>
>>> Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
>>
>> Hi; what's the benefit to taking this update? Would it be better
>> postponed until the 9.2 release is complete?
> 
> We're now past the 9.2 release, but it would still be good
> to know what the benefit to updating the firmware images
> for this test is.

We tend to update firmware to the latest in all places it is used. 
Previous one was built from pre-selected git commits due to changes done 
during cycle.

Now we got both components (TF-A and EDK2) from stable releases.


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

* Re: [PATCH 1/1] tests/avocado: update sbsa-ref firmware
  2024-12-17  7:10     ` Marcin Juszkiewicz
@ 2024-12-17 15:24       ` Peter Maydell
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Maydell @ 2024-12-17 15:24 UTC (permalink / raw)
  To: Marcin Juszkiewicz
  Cc: qemu-devel, Radoslaw Biernacki, Leif Lindholm, qemu-arm

On Tue, 17 Dec 2024 at 07:10, Marcin Juszkiewicz
<marcin.juszkiewicz@linaro.org> wrote:
>
> W dniu 16.12.2024 o 13:46, Peter Maydell pisze:
> > On Mon, 25 Nov 2024 at 13:25, Peter Maydell <peter.maydell@linaro.org> wrote:
> >>
> >> On Mon, 25 Nov 2024 at 12:54, Marcin Juszkiewicz
> >> <marcin.juszkiewicz@linaro.org> wrote:
> >>>
> >>> Firmware is built using Debian 'bookworm' cross toolchain (gcc 12.2.0).
> >>>
> >>> Used versions:
> >>>
> >>> - Trusted Firmware v2.12.0
> >>> - Tianocore EDK2 stable202411
> >>> - Tianocore EDK2 Platforms code commit 4b3530d
> >>>
> >>> Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
> >>
> >> Hi; what's the benefit to taking this update? Would it be better
> >> postponed until the 9.2 release is complete?
> >
> > We're now past the 9.2 release, but it would still be good
> > to know what the benefit to updating the firmware images
> > for this test is.
>
> We tend to update firmware to the latest in all places it is used.
> Previous one was built from pre-selected git commits due to changes done
> during cycle.
>
> Now we got both components (TF-A and EDK2) from stable releases.

Thanks; I've applied this to target-arm.next with the commit
message updated to include the rationale for the change.

-- PMM


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

end of thread, other threads:[~2024-12-17 15:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-28 18:29 [PATCH 1/1] tests/avocado: update sbsa-ref firmware Marcin Juszkiewicz
2024-05-29 13:12 ` Leif Lindholm
2024-05-29 13:37   ` Marcin Juszkiewicz
2024-05-29 15:34 ` Alex Bennée
  -- strict thread matches above, loose matches on Subject: below --
2024-11-25 12:54 Marcin Juszkiewicz
2024-11-25 13:25 ` Peter Maydell
2024-12-16 12:46   ` Peter Maydell
2024-12-17  7:10     ` Marcin Juszkiewicz
2024-12-17 15:24       ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).