Patrick Delaunay
6d66502bc7
lmb: Add 2 config to define the max number of regions
...
Add 2 configs CONFIG_LMB_MEMORY_REGIONS and CONFIG_LMB_RESERVED_REGIONS
to change independently the max number of the regions in lmb
library.
When CONFIG_LMB_USE_MAX_REGIONS=y, move the lmb property arrays to
struct lmb and manage the array size with the element 'max' of struct
lmb_region; their are still allocated in stack.
When CONFIG_LMB_USE_MAX_REGIONS=n, keep the current location in
struct lmb_region to allow compiler optimization.
Increase CONFIG_LMB_RESERVED_REGIONS is useful to avoid lmb errors in
bootm when the number of reserved regions (not adjacent) is reached:
+ 1 region for relocated U-Boot
+ 1 region for initrd
+ 1 region for relocated linux device tree
+ reserved memory regions present in Linux device tree.
The current limit of 8 regions is reached with only 5 reserved regions
in DT.
see Linux kernel commit bf23c51f1f49 ("memblock: Move memblock arrays
to static storage in memblock.c and make their size a variable")
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com >
2021-04-22 14:09:45 -04:00
..
2021-02-01 15:11:41 +08:00
2021-04-12 17:45:40 -04:00
2021-04-22 14:09:45 -04:00
2021-04-15 14:22:17 +05:30
2021-04-18 04:29:36 +02:00
2021-04-20 07:31:12 -04:00
2021-02-16 11:48:20 -05:00
2021-04-12 14:25:30 -04:00
2021-04-12 14:25:31 -04:00
2021-04-06 16:33:19 +12:00
2021-04-14 15:06:08 -04:00
2021-02-18 11:56:26 +01:00
2021-02-21 06:08:00 +01:00
2021-03-05 10:25:43 +05:30
2021-03-19 10:36:06 -04:00
2021-04-20 07:31:12 -04:00
2021-02-02 15:33:42 -05:00
2021-02-02 15:33:42 -05:00
2021-01-25 21:52:00 +00:00
2021-01-25 21:52:00 +00:00
2021-02-02 15:33:42 -05:00
2021-01-31 14:08:56 +01:00
2021-01-27 17:03:16 -05:00
2021-01-27 17:03:16 -05:00
2021-02-02 15:33:42 -05:00
2021-02-22 11:07:57 +01:00
2021-02-02 15:33:42 -05:00
2021-03-27 13:59:37 +13:00
2021-04-10 12:00:24 +02:00
2021-03-27 15:04:31 +13:00
2021-02-02 15:33:42 -05:00
2021-02-21 06:08:00 +01:00
2021-03-02 14:03:02 -05:00
2021-02-02 15:33:42 -05:00
2021-04-10 16:08:39 +02:00
2021-01-30 14:25:42 -07:00
2021-01-31 14:08:56 +01:00
2021-02-02 15:33:42 -05:00
2021-03-26 17:03:08 +13:00
2021-01-30 14:25:41 -07:00
2021-03-25 20:19:19 +01:00
2021-03-25 20:19:19 +01:00
2021-04-10 12:00:24 +02:00
2021-04-10 12:00:24 +02:00
2021-02-08 08:52:50 +01:00
2021-04-16 17:32:34 -04:00
2021-04-16 11:55:55 -04:00
2021-02-21 06:08:00 +01:00
2021-02-02 15:33:42 -05:00
2021-02-26 15:30:55 +01:00
2021-01-23 07:56:53 +01:00
2021-02-18 11:56:25 +01:00
2021-04-06 08:55:53 +02:00
2021-04-08 23:44:40 +02:00
2021-04-06 18:36:04 +08:00
2021-03-23 15:27:08 +05:30
2021-02-02 15:33:42 -05:00
2021-04-08 20:29:52 +02:00
2021-04-10 08:04:42 -04:00
2021-02-10 10:00:51 +01:00
2021-04-12 17:17:11 -04:00
2021-03-26 17:03:08 +13:00
2021-02-02 15:33:42 -05:00
2021-04-22 14:09:45 -04:00
2021-02-15 10:16:45 -05:00
2021-02-02 15:33:42 -05:00
2021-02-16 11:16:08 -05:00
2021-02-02 15:33:42 -05:00
2021-04-10 12:00:24 +02:00
2021-04-22 14:09:45 -04:00
2021-04-06 16:33:19 +12:00
2021-03-27 15:04:31 +13:00
2021-02-02 15:33:42 -05:00
2021-02-19 15:10:41 +08:00
2021-04-08 08:50:52 +02:00
2021-02-16 11:48:20 -05:00
2021-04-20 07:31:12 -04:00
2021-04-06 16:33:19 +12:00
2021-02-21 06:08:00 +01:00
2021-04-22 14:09:45 -04:00
2021-02-10 10:00:51 +01:00
2021-02-16 11:48:20 -05:00
2021-02-18 11:56:25 +01:00
2021-04-10 16:07:12 +02:00
2021-04-12 17:44:55 -04:00
2021-02-02 15:33:42 -05:00
2021-03-27 15:04:31 +13:00
2021-04-12 17:17:11 -04:00
2021-03-13 13:14:52 -05:00
2021-02-02 15:33:42 -05:00
2021-02-04 20:37:57 +05:30
2021-03-27 13:59:37 +13:00
2021-02-02 15:33:42 -05:00
2021-03-27 15:04:31 +13:00
2021-04-06 16:33:19 +12:00
2021-04-19 11:34:01 -04:00
2021-02-16 11:16:07 -05:00
2021-04-20 07:31:12 -04:00
2021-03-02 14:03:02 -05:00
2021-02-02 15:33:42 -05:00
2021-01-31 14:08:56 +01:00
2021-04-06 16:33:19 +12:00
2021-03-02 15:53:37 -05:00
2021-03-02 15:53:37 -05:00
2021-03-02 15:53:37 -05:00
2021-03-02 15:53:37 -05:00
2021-02-02 15:33:42 -05:00
2021-02-21 06:08:00 +01:00
2021-02-21 06:08:00 +01:00
2021-02-02 15:33:42 -05:00
2021-01-31 14:08:56 +01:00
2021-01-27 17:03:16 -05:00
2021-02-22 20:06:43 +01:00
2021-01-27 17:03:16 -05:00