* [PATCH] Platform/ARM/Morello: Correct the private resources in PPTT
@ 2021-05-19 13:34 chandni cherukuri
2021-06-07 10:37 ` [edk2-devel] " christopher.jones
2021-06-08 8:30 ` Sami Mujawar
0 siblings, 2 replies; 3+ messages in thread
From: chandni cherukuri @ 2021-05-19 13:34 UTC (permalink / raw)
To: devel; +Cc: Ard Biesheuvel, Leif Lindholm, Sami Mujawar, Chandni Cherukuri
As per ACPI specification, only the head of the list needs to be
listed as a resources by a processore node, as cache node itself
contains a link to the next level of cache.
Signed-off-by: Chandni Cherukuri <chandni.cherukuri@arm.com>
---
Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c | 3 +--
Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c b/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c
index 89fadbcb03..7c949812ec 100644
--- a/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c
+++ b/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c
@@ -389,8 +389,7 @@ EDKII_COMMON_PLATFORM_REPOSITORY_INFO CommonPlatformInfo = {
// Resources private to each individual 'core instance in Cluster
{
{ REFERENCE_TOKEN (CacheInfo[1]) }, // -> 'core's L1 I-cache in Cluster
- { REFERENCE_TOKEN (CacheInfo[2]) }, // -> 'core's L1 D-cache in Cluster
- { REFERENCE_TOKEN (CacheInfo[3]) } // -> 'core's L2 cache in Cluster
+ { REFERENCE_TOKEN (CacheInfo[2]) } // -> 'core's L1 D-cache in Cluster
},
// Resources private to the SoC
diff --git a/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h b/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h
index fea4a0efd2..09ebc9a842 100644
--- a/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h
+++ b/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h
@@ -205,9 +205,8 @@ HandleCmObjectRefByToken (
/** The number of resources private to 'core instance
- L1 data cache
- L1 instruction cache
- - L2 cache
*/
-#define CORE_RESOURCE_COUNT 3
+#define CORE_RESOURCE_COUNT 2
/** The number of resources private to SoC
- slc cache
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [edk2-devel] [PATCH] Platform/ARM/Morello: Correct the private resources in PPTT
2021-05-19 13:34 [PATCH] Platform/ARM/Morello: Correct the private resources in PPTT chandni cherukuri
@ 2021-06-07 10:37 ` christopher.jones
2021-06-08 8:30 ` Sami Mujawar
1 sibling, 0 replies; 3+ messages in thread
From: christopher.jones @ 2021-06-07 10:37 UTC (permalink / raw)
To: chandni cherukuri, devel
[-- Attachment #1: Type: text/plain, Size: 155 bytes --]
Hi Chandni,
I have built and verified this patch and it looks good to me.
Reviewed-by: Chris Jones < christopher. jones @arm.com>
Thanks,
Chris
[-- Attachment #2: Type: text/html, Size: 510 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Platform/ARM/Morello: Correct the private resources in PPTT
2021-05-19 13:34 [PATCH] Platform/ARM/Morello: Correct the private resources in PPTT chandni cherukuri
2021-06-07 10:37 ` [edk2-devel] " christopher.jones
@ 2021-06-08 8:30 ` Sami Mujawar
1 sibling, 0 replies; 3+ messages in thread
From: Sami Mujawar @ 2021-06-08 8:30 UTC (permalink / raw)
To: Chandni Cherukuri, devel; +Cc: Ard Biesheuvel, Leif Lindholm, nd
Pushed as 7bf73ecc3c47..442dfd5da647
Thanks.
Regards,
Sami Mujawar
On 19/05/2021 02:34 PM, Chandni Cherukuri wrote:
> As per ACPI specification, only the head of the list needs to be
> listed as a resources by a processore node, as cache node itself
> contains a link to the next level of cache.
>
> Signed-off-by: Chandni Cherukuri <chandni.cherukuri@arm.com>
> ---
> Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c | 3 +--
> Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h | 3 +--
> 2 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c b/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c
> index 89fadbcb03..7c949812ec 100644
> --- a/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c
> +++ b/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.c
> @@ -389,8 +389,7 @@ EDKII_COMMON_PLATFORM_REPOSITORY_INFO CommonPlatformInfo = {
> // Resources private to each individual 'core instance in Cluster
> {
> { REFERENCE_TOKEN (CacheInfo[1]) }, // -> 'core's L1 I-cache in Cluster
> - { REFERENCE_TOKEN (CacheInfo[2]) }, // -> 'core's L1 D-cache in Cluster
> - { REFERENCE_TOKEN (CacheInfo[3]) } // -> 'core's L2 cache in Cluster
> + { REFERENCE_TOKEN (CacheInfo[2]) } // -> 'core's L1 D-cache in Cluster
> },
>
> // Resources private to the SoC
> diff --git a/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h b/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h
> index fea4a0efd2..09ebc9a842 100644
> --- a/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h
> +++ b/Platform/ARM/Morello/ConfigurationManager/ConfigurationManagerDxe/ConfigurationManager.h
> @@ -205,9 +205,8 @@ HandleCmObjectRefByToken (
> /** The number of resources private to 'core instance
> - L1 data cache
> - L1 instruction cache
> - - L2 cache
> */
> -#define CORE_RESOURCE_COUNT 3
> +#define CORE_RESOURCE_COUNT 2
>
> /** The number of resources private to SoC
> - slc cache
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-06-08 8:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-19 13:34 [PATCH] Platform/ARM/Morello: Correct the private resources in PPTT chandni cherukuri
2021-06-07 10:37 ` [edk2-devel] " christopher.jones
2021-06-08 8:30 ` Sami Mujawar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox