]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
kern/ieee1275/init: Convert plain numbers to constants in Vec5
authorAvnish Chouhan <avnish@linux.vnet.ibm.com>
Mon, 27 Mar 2023 06:55:39 +0000 (12:25 +0530)
committerDaniel Kiper <daniel.kiper@oracle.com>
Wed, 29 Mar 2023 18:35:05 +0000 (20:35 +0200)
This patch converts the plain numbers used in Vec5 properties to constants.

1. LPAR: Client program supports logical partitioning and
   associated hcall()s.
2. SPLPAR: Client program supports the Shared
   Processor LPAR Option.
3. CMO: Enables the Cooperative Memory Over-commitment Option.
4. MAX_CPU: Defines maximum number of CPUs supported.

Signed-off-by: Avnish Chouhan <avnish@linux.vnet.ibm.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
grub-core/kern/ieee1275/init.c

index 7337e289dfac6dbbf84fa18e97ec9ccac60194f6..72474a908a90245c2b2dfd70268c3f0d1f781feb 100644 (file)
@@ -72,6 +72,12 @@ extern char _end[];
 grub_addr_t grub_ieee1275_original_stack;
 #endif
 
+#define LPAR     0x80
+#define SPLPAR   0x40
+#define BYTE2    (LPAR | SPLPAR)
+#define CMO      0x80
+#define MAX_CPU  256
+
 void
 grub_exit (void)
 {
@@ -573,7 +579,7 @@ grub_ieee1275_ibm_cas (void)
     .vec4 = 0x0001, /* set required minimum capacity % to the lowest value */
     .vec5_size = 1 + sizeof (struct option_vector5) - 2,
     .vec5 = {
-      0, 192, 0, 128, 0, 0, 0, 0, 256
+      0, BYTE2, 0, CMO, 0, 0, 0, 0, MAX_CPU
     }
   };