[RFC PATCH v2 35/48] lmb: add a flag to allow suppressing memory map change notification
Sughosh Ganu
sughosh.ganu at linaro.org
Thu Jul 4 09:35:31 CEST 2024
Add a flag LMB_NONOTIFY that can be passed to the LMB API's for
reserving memory. This will then result in no notification being sent
from the LMB module for the changes to the LMB's memory map.
Signed-off-by: Sughosh Ganu <sughosh.ganu at linaro.org>
---
Changes since V1: New patch
include/lmb.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/lmb.h b/include/lmb.h
index afab04426d..dbf3e9e30f 100644
--- a/include/lmb.h
+++ b/include/lmb.h
@@ -24,6 +24,7 @@ enum lmb_flags {
LMB_NONE = BIT(0),
LMB_NOMAP = BIT(1),
LMB_NOOVERWRITE = BIT(2),
+ LMB_NONOTIFY = BIT(3),
};
/**
--
2.34.1
More information about the U-Boot
mailing list