All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] of: make MAX_RESERVED_REGIONS configurable
@ 2021-11-15  7:32 Calvin Zhang
  2021-11-15 14:05 ` Rob Herring
  0 siblings, 1 reply; 3+ messages in thread
From: Calvin Zhang @ 2021-11-15  7:32 UTC (permalink / raw)
  To: Randy Dunlap, Rob Herring, Frank Rowand
  Cc: devicetree, linux-kernel, Calvin Zhang

MAX_RESERVED_REGIONS has changed several times. Max reserved regions
count grows bigger as more SOC subsystems require reserved regions.

Add a Kconfig for it so that when properly configured, the static
reserved_mem array consumes less memory on systems with few reserved
regions.

Signed-off-by: Calvin Zhang <calvinzhang.cool@gmail.com>
---
 drivers/of/Kconfig           | 10 ++++++++++
 drivers/of/of_reserved_mem.c |  3 +--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/drivers/of/Kconfig b/drivers/of/Kconfig
index 80b5fd44ab1c..47ffff9f6aba 100644
--- a/drivers/of/Kconfig
+++ b/drivers/of/Kconfig
@@ -73,6 +73,16 @@ config OF_IRQ
 config OF_RESERVED_MEM
 	def_bool OF_EARLY_FLATTREE
 
+config OF_MAX_RESERVED_REGIONS
+	int "Maximum count of reserved regions"
+	depends on OF_RESERVED_MEM
+	default 64
+	help
+	  Reserved regions in /reserved-memory node includes static
+	  reservations with fixed location and dynamic ones for device
+	  CMA regions. This parameter sets the maximum number of reserved
+	  regions in the system.
+
 config OF_RESOLVE
 	bool
 
diff --git a/drivers/of/of_reserved_mem.c b/drivers/of/of_reserved_mem.c
index 9c0fb962c22b..d90ae4c03011 100644
--- a/drivers/of/of_reserved_mem.c
+++ b/drivers/of/of_reserved_mem.c
@@ -25,8 +25,7 @@
 
 #include "of_private.h"
 
-#define MAX_RESERVED_REGIONS	64
-static struct reserved_mem reserved_mem[MAX_RESERVED_REGIONS];
+static struct reserved_mem reserved_mem[CONFIG_OF_MAX_RESERVED_REGIONS];
 static int reserved_mem_count;
 
 static int __init early_init_dt_alloc_reserved_memory_arch(phys_addr_t size,
-- 
2.30.2


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

* Re: [PATCH v2] of: make MAX_RESERVED_REGIONS configurable
  2021-11-15  7:32 [PATCH v2] of: make MAX_RESERVED_REGIONS configurable Calvin Zhang
@ 2021-11-15 14:05 ` Rob Herring
  2021-11-15 22:55   ` Calvin Zhang
  0 siblings, 1 reply; 3+ messages in thread
From: Rob Herring @ 2021-11-15 14:05 UTC (permalink / raw)
  To: Calvin Zhang; +Cc: Randy Dunlap, Frank Rowand, devicetree, linux-kernel

On Mon, Nov 15, 2021 at 1:33 AM Calvin Zhang <calvinzhang.cool@gmail.com> wrote:
>
> MAX_RESERVED_REGIONS has changed several times. Max reserved regions
> count grows bigger as more SOC subsystems require reserved regions.
>
> Add a Kconfig for it so that when properly configured, the static
> reserved_mem array consumes less memory on systems with few reserved
> regions.

Please read prior discussions:

https://lore.kernel.org/all/?q=of+MAX_RESERVED_REGIONS

And these 2 in particular:

https://lore.kernel.org/all/CAL_JsqJQcWsguwfehAoaRf4o-2VqXxSzKzTqg7s4+N1bp=6V5Q@mail.gmail.com/
https://lore.kernel.org/all/CAL_JsqLGvUYQmCGXLgSO+6kFj2i87dpaTbMGbyu5oMt=eeu35A@mail.gmail.com/

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

* Re: [PATCH v2] of: make MAX_RESERVED_REGIONS configurable
  2021-11-15 14:05 ` Rob Herring
@ 2021-11-15 22:55   ` Calvin Zhang
  0 siblings, 0 replies; 3+ messages in thread
From: Calvin Zhang @ 2021-11-15 22:55 UTC (permalink / raw)
  To: Rob Herring
  Cc: Calvin Zhang, Randy Dunlap, Frank Rowand, devicetree, linux-kernel

On Mon, Nov 15, 2021 at 08:05:45AM -0600, Rob Herring wrote:
>On Mon, Nov 15, 2021 at 1:33 AM Calvin Zhang <calvinzhang.cool@gmail.com> wrote:
>>
>> MAX_RESERVED_REGIONS has changed several times. Max reserved regions
>> count grows bigger as more SOC subsystems require reserved regions.
>>
>> Add a Kconfig for it so that when properly configured, the static
>> reserved_mem array consumes less memory on systems with few reserved
>> regions.
>
>Please read prior discussions:
>
>https://lore.kernel.org/all/?q=of+MAX_RESERVED_REGIONS
>
>And these 2 in particular:
>
>https://lore.kernel.org/all/CAL_JsqJQcWsguwfehAoaRf4o-2VqXxSzKzTqg7s4+N1bp=6V5Q@mail.gmail.com/
>https://lore.kernel.org/all/CAL_JsqLGvUYQmCGXLgSO+6kFj2i87dpaTbMGbyu5oMt=eeu35A@mail.gmail.com/
>
OK. I will try to make the array dynamic.

Thanks,
Calvin

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

end of thread, other threads:[~2021-11-16  0:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-15  7:32 [PATCH v2] of: make MAX_RESERVED_REGIONS configurable Calvin Zhang
2021-11-15 14:05 ` Rob Herring
2021-11-15 22:55   ` Calvin Zhang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.