public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platforms][PATCH 1/1] Platform/RPi/AcpiTables: Move PPTT constants to the alsc source
@ 2020-03-27 10:34 Pete Batard
  2020-03-30 14:53 ` Ard Biesheuvel
  0 siblings, 1 reply; 2+ messages in thread
From: Pete Batard @ 2020-03-27 10:34 UTC (permalink / raw)
  To: devel; +Cc: ard.biesheuvel, leif, philmd

There's no real reason to have the PPTT constants factorized in
AcpiTables.h, and hiding them away with the interrupts is only
going to end up being counter-productive for folks trying to
understand or maintain the code.

Move these sections to Pptt.aslc where they belong.

Signed-off-by: Pete Batard <pete@akeo.ie>
---
 Platform/RaspberryPi/AcpiTables/AcpiTables.h | 18 ----------------
 Platform/RaspberryPi/AcpiTables/Pptt.aslc    | 22 ++++++++++++++++++++
 2 files changed, 22 insertions(+), 18 deletions(-)

diff --git a/Platform/RaspberryPi/AcpiTables/AcpiTables.h b/Platform/RaspberryPi/AcpiTables/AcpiTables.h
index 9ee202255939..dfae763d8107 100644
--- a/Platform/RaspberryPi/AcpiTables/AcpiTables.h
+++ b/Platform/RaspberryPi/AcpiTables/AcpiTables.h
@@ -136,15 +136,6 @@ typedef struct
 #define BCM2836_MMCHS1_INTERRUPT                0x5E
 #define BCM2836_MINI_UART_INTERRUPT             0x3D
 #define BCM2836_PL011_UART_INTERRUPT            0x59
-#define CORTEX_L1D_SIZE                         SIZE_16KB
-#define CORTEX_L1D_SETS                         64
-#define CORTEX_L1D_ASSC                         4
-#define CORTEX_L1I_SIZE                         SIZE_16KB
-#define CORTEX_L1I_SETS                         128
-#define CORTEX_L1I_ASSC                         2
-#define CORTEX_L2_SIZE                          SIZE_512KB
-#define CORTEX_L2_SETS                          512
-#define CORTEX_L2_ASSC                          16
 #elif (RPI_MODEL == 4)
 #define BCM2836_V3D_BUS_INTERRUPT               0x2A
 #define BCM2836_DMA_INTERRUPT                   0x3B
@@ -172,15 +163,6 @@ typedef struct
 #define BCM2836_PL011_UART_INTERRUPT            0x99
 #define GENET_INTERRUPT0                        0xBD
 #define GENET_INTERRUPT1                        0xBE
-#define CORTEX_L1D_SIZE                         SIZE_32KB
-#define CORTEX_L1D_SETS                         256
-#define CORTEX_L1D_ASSC                         2
-#define CORTEX_L1I_SIZE                         (3*SIZE_16KB)
-#define CORTEX_L1I_SETS                         256
-#define CORTEX_L1I_ASSC                         3
-#define CORTEX_L2_SIZE                          SIZE_1MB
-#define CORTEX_L2_SETS                          1024
-#define CORTEX_L2_ASSC                          16
 #endif
 
 #endif // __ACPITABLES_H__
diff --git a/Platform/RaspberryPi/AcpiTables/Pptt.aslc b/Platform/RaspberryPi/AcpiTables/Pptt.aslc
index bc09e5fdaee4..a52bc5a31adf 100644
--- a/Platform/RaspberryPi/AcpiTables/Pptt.aslc
+++ b/Platform/RaspberryPi/AcpiTables/Pptt.aslc
@@ -15,6 +15,28 @@
 #define NUM_CORES                           4
 #define NUM_CLUSTERS                        1
 
+#if (RPI_MODEL == 3)
+#define CORTEX_L1D_SIZE                     SIZE_16KB
+#define CORTEX_L1D_SETS                     64
+#define CORTEX_L1D_ASSC                     4
+#define CORTEX_L1I_SIZE                     SIZE_16KB
+#define CORTEX_L1I_SETS                     128
+#define CORTEX_L1I_ASSC                     2
+#define CORTEX_L2_SIZE                      SIZE_512KB
+#define CORTEX_L2_SETS                      512
+#define CORTEX_L2_ASSC                      16
+#elif (RPI_MODEL == 4)
+#define CORTEX_L1D_SIZE                     SIZE_32KB
+#define CORTEX_L1D_SETS                     256
+#define CORTEX_L1D_ASSC                     2
+#define CORTEX_L1I_SIZE                     (3*SIZE_16KB)
+#define CORTEX_L1I_SETS                     256
+#define CORTEX_L1I_ASSC                     3
+#define CORTEX_L2_SIZE                      SIZE_1MB
+#define CORTEX_L2_SETS                      1024
+#define CORTEX_L2_ASSC                      16
+#endif
+
 #define FIELD_OFFSET(type, name)            __builtin_offsetof(type, name)
 
 #pragma pack(1)
-- 
2.21.0.windows.1


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

* Re: [edk2-platforms][PATCH 1/1] Platform/RPi/AcpiTables: Move PPTT constants to the alsc source
  2020-03-27 10:34 [edk2-platforms][PATCH 1/1] Platform/RPi/AcpiTables: Move PPTT constants to the alsc source Pete Batard
@ 2020-03-30 14:53 ` Ard Biesheuvel
  0 siblings, 0 replies; 2+ messages in thread
From: Ard Biesheuvel @ 2020-03-30 14:53 UTC (permalink / raw)
  To: Pete Batard
  Cc: edk2-devel-groups-io, Leif Lindholm, Philippe Mathieu-Daudé

On Fri, 27 Mar 2020 at 11:35, Pete Batard <pete@akeo.ie> wrote:
>
> There's no real reason to have the PPTT constants factorized in
> AcpiTables.h, and hiding them away with the interrupts is only
> going to end up being counter-productive for folks trying to
> understand or maintain the code.
>
> Move these sections to Pptt.aslc where they belong.
>
> Signed-off-by: Pete Batard <pete@akeo.ie>

Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

Pushed as cdd63d10d5efaeec1cd5fa5f11a8353e4de832d7

> ---
>  Platform/RaspberryPi/AcpiTables/AcpiTables.h | 18 ----------------
>  Platform/RaspberryPi/AcpiTables/Pptt.aslc    | 22 ++++++++++++++++++++
>  2 files changed, 22 insertions(+), 18 deletions(-)
>
> diff --git a/Platform/RaspberryPi/AcpiTables/AcpiTables.h b/Platform/RaspberryPi/AcpiTables/AcpiTables.h
> index 9ee202255939..dfae763d8107 100644
> --- a/Platform/RaspberryPi/AcpiTables/AcpiTables.h
> +++ b/Platform/RaspberryPi/AcpiTables/AcpiTables.h
> @@ -136,15 +136,6 @@ typedef struct
>  #define BCM2836_MMCHS1_INTERRUPT                0x5E
>  #define BCM2836_MINI_UART_INTERRUPT             0x3D
>  #define BCM2836_PL011_UART_INTERRUPT            0x59
> -#define CORTEX_L1D_SIZE                         SIZE_16KB
> -#define CORTEX_L1D_SETS                         64
> -#define CORTEX_L1D_ASSC                         4
> -#define CORTEX_L1I_SIZE                         SIZE_16KB
> -#define CORTEX_L1I_SETS                         128
> -#define CORTEX_L1I_ASSC                         2
> -#define CORTEX_L2_SIZE                          SIZE_512KB
> -#define CORTEX_L2_SETS                          512
> -#define CORTEX_L2_ASSC                          16
>  #elif (RPI_MODEL == 4)
>  #define BCM2836_V3D_BUS_INTERRUPT               0x2A
>  #define BCM2836_DMA_INTERRUPT                   0x3B
> @@ -172,15 +163,6 @@ typedef struct
>  #define BCM2836_PL011_UART_INTERRUPT            0x99
>  #define GENET_INTERRUPT0                        0xBD
>  #define GENET_INTERRUPT1                        0xBE
> -#define CORTEX_L1D_SIZE                         SIZE_32KB
> -#define CORTEX_L1D_SETS                         256
> -#define CORTEX_L1D_ASSC                         2
> -#define CORTEX_L1I_SIZE                         (3*SIZE_16KB)
> -#define CORTEX_L1I_SETS                         256
> -#define CORTEX_L1I_ASSC                         3
> -#define CORTEX_L2_SIZE                          SIZE_1MB
> -#define CORTEX_L2_SETS                          1024
> -#define CORTEX_L2_ASSC                          16
>  #endif
>
>  #endif // __ACPITABLES_H__
> diff --git a/Platform/RaspberryPi/AcpiTables/Pptt.aslc b/Platform/RaspberryPi/AcpiTables/Pptt.aslc
> index bc09e5fdaee4..a52bc5a31adf 100644
> --- a/Platform/RaspberryPi/AcpiTables/Pptt.aslc
> +++ b/Platform/RaspberryPi/AcpiTables/Pptt.aslc
> @@ -15,6 +15,28 @@
>  #define NUM_CORES                           4
>  #define NUM_CLUSTERS                        1
>
> +#if (RPI_MODEL == 3)
> +#define CORTEX_L1D_SIZE                     SIZE_16KB
> +#define CORTEX_L1D_SETS                     64
> +#define CORTEX_L1D_ASSC                     4
> +#define CORTEX_L1I_SIZE                     SIZE_16KB
> +#define CORTEX_L1I_SETS                     128
> +#define CORTEX_L1I_ASSC                     2
> +#define CORTEX_L2_SIZE                      SIZE_512KB
> +#define CORTEX_L2_SETS                      512
> +#define CORTEX_L2_ASSC                      16
> +#elif (RPI_MODEL == 4)
> +#define CORTEX_L1D_SIZE                     SIZE_32KB
> +#define CORTEX_L1D_SETS                     256
> +#define CORTEX_L1D_ASSC                     2
> +#define CORTEX_L1I_SIZE                     (3*SIZE_16KB)
> +#define CORTEX_L1I_SETS                     256
> +#define CORTEX_L1I_ASSC                     3
> +#define CORTEX_L2_SIZE                      SIZE_1MB
> +#define CORTEX_L2_SETS                      1024
> +#define CORTEX_L2_ASSC                      16
> +#endif
> +
>  #define FIELD_OFFSET(type, name)            __builtin_offsetof(type, name)
>
>  #pragma pack(1)
> --
> 2.21.0.windows.1
>

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

end of thread, other threads:[~2020-03-30 14:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-27 10:34 [edk2-platforms][PATCH 1/1] Platform/RPi/AcpiTables: Move PPTT constants to the alsc source Pete Batard
2020-03-30 14:53 ` Ard Biesheuvel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox