[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 0/6] Dynamic allocation of memory regions and IBM vTPM v2
From: |
Stefan Berger |
Subject: |
[PATCH v3 0/6] Dynamic allocation of memory regions and IBM vTPM v2 |
Date: |
Mon, 30 Jan 2023 14:16:15 -0500 |
Hello,
This is an addition to the series sent from Daniel Axtens
(https://lists.gnu.org/archive/html/grub-devel/2022-04/msg00064.html).
Patch 'ieee1275: request memory with ibm,client-architecture-support'
implements vectors 1-4 of client-architecture-support negotiation
However, during some tests, we found this can be a problem if:
- we have more than 64 CPUs
- Hardware Management Console (HMC) is configured to minimum of CPUs >64 (for
example, min of 200 CPUs)
- Grub needs to request memory.
If vector 5 is not implemented, Power Hypervisor will consider the default
value for vector 5 and 64 will bet set as the maximum
number of CPUs supported by the OS, causing the machine to fail to init.
Today we support 256 CPUs (max) on Power, so we need to implement vector 5
and set the MAX CPUs bits to this value.
Stefan
v3:
- Added #if defined(__powerpc__) [1/6]
- Address possible integer underlow [3/6]
- Added comment why tpm_init() function cannot be called from GRUB_MOD_INIT()
- Added Reviewed-by tags to {1,2,5,6}/6
v2:
- Followed Daniel K.'s list of suggestions checking the list more than
twice and adjusted formatting, line breaks, etc. in all patches
- Conditional compilation of ppc64-specific code using #ifdef __powerpc__
- Fixing of installation of memtool; adding of warning message for
__powerpc__ since it requires a reboot after running memory stress test
- Tested it on i386-pc and PowerKVM
Daniel Axtens (4):
ieee1275: request memory with ibm, client-architecture-support
ieee1275: drop len -= 1 quirk in heap_init
ieee1275: support runtime memory claiming
Add memtool module with memory allocation stress-test
Diego Domingos (1):
ieee1275: implement vec5 for cas negotiation
Stefan Berger (1):
ibmvtpm: Add support for trusted boot using a vTPM 2.0
configure.ac | 1 +
docs/grub-dev.texi | 7 +-
docs/grub.texi | 3 +-
grub-core/Makefile.core.def | 13 +
grub-core/commands/ieee1275/ibmvtpm.c | 155 +++++++++
grub-core/commands/memtools.c | 160 +++++++++
grub-core/kern/ieee1275/cmain.c | 5 +
grub-core/kern/ieee1275/init.c | 445 +++++++++++++++++++++++++-
grub-core/kern/mm.c | 4 +
include/grub/ieee1275/ieee1275.h | 13 +
10 files changed, 789 insertions(+), 17 deletions(-)
create mode 100644 grub-core/commands/ieee1275/ibmvtpm.c
create mode 100644 grub-core/commands/memtools.c
--
2.25.1
- [PATCH v3 0/6] Dynamic allocation of memory regions and IBM vTPM v2, Stefan Berger, 2023/01/30
- [PATCH v3 2/6] ieee1275: drop len -= 1 quirk in heap_init, Stefan Berger, 2023/01/30
- [PATCH v3 1/6] ieee1275: request memory with ibm, client-architecture-support, Stefan Berger, 2023/01/30
- [PATCH v3 6/6] ibmvtpm: Add support for trusted boot using a vTPM 2.0, Stefan Berger, 2023/01/30
- [PATCH v3 4/6] ieee1275: implement vec5 for cas negotiation, Stefan Berger, 2023/01/30
- [PATCH v3 3/6] ieee1275: support runtime memory claiming, Stefan Berger, 2023/01/30
- [PATCH v3 5/6] Add memtool module with memory allocation stress-test, Stefan Berger, 2023/01/30
- [PATCH v3 0/6] Dynamic allocation of memory regions and IBM vTPM v2,
Stefan Berger <=
- [PATCH v3 1/6] ieee1275: request memory with ibm, client-architecture-support, Stefan Berger, 2023/01/30
- [PATCH v3 5/6] Add memtool module with memory allocation stress-test, Stefan Berger, 2023/01/30
- [PATCH v3 3/6] ieee1275: support runtime memory claiming, Stefan Berger, 2023/01/30
- [PATCH v3 4/6] ieee1275: implement vec5 for cas negotiation, Stefan Berger, 2023/01/30
- [PATCH v3 6/6] ibmvtpm: Add support for trusted boot using a vTPM 2.0, Stefan Berger, 2023/01/30
- [PATCH v3 2/6] ieee1275: drop len -= 1 quirk in heap_init, Stefan Berger, 2023/01/30