qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clg@kaod.org>
To: Sittisak Sinprem <ssinprem@celestica.com>
Cc: qemu-devel@nongnu.org, qemu-arm@nongnu.org,
	peter.maydell@linaro.org, andrew@aj.id.au,
	srikanth@celestica.com, ssumet@celestica.com,
	thangavelu.v@celestica.com, kgengan@celestica.com,
	anandaramanv@celestica.com, Joel Stanley <joel@jms.id.au>
Subject: Re: [PATCH qemu] aspeed add montblanc bmc reference from fuji
Date: Wed, 28 Jun 2023 18:34:28 +0200	[thread overview]
Message-ID: <75e183e9-f253-60f3-c7bd-a064b8887ca1@kaod.org> (raw)
In-Reply-To: <CAE+aGtVDXtPbZxC-OJvQ0R+dOk0S=_gx+0wfyJ+wbA_xn=NLMg@mail.gmail.com>

On 6/28/23 12:07, Sittisak Sinprem wrote:
> Got it Cedric, I just know for it,
> 
> I am fixing, and will re-send the patch as V2.

Could you please use the patch below and send in your series ?

Thanks,

C.


 From cfbc865ffe8a4dffe4ac764eb10416aa906a7170 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= <clg@kaod.org>
Date: Wed, 28 Jun 2023 18:32:20 +0200
Subject: [PATCH] aspeed: Introduce ASPEED_RAM_SIZE helper for 32-bit hosts
  limitation
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

On 32-bit hosts, RAM has a 2047 MB limit. Use a macro to define the
default ram size of machines (AST2600 SoC) that can have 2 GB.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
---
  hw/arm/aspeed.c | 21 +++++++++------------
  1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/hw/arm/aspeed.c b/hw/arm/aspeed.c
index eefd2e275015..0ae252232597 100644
--- a/hw/arm/aspeed.c
+++ b/hw/arm/aspeed.c
@@ -49,6 +49,13 @@ struct AspeedMachineState {
      uint32_t hw_strap1;
  };
  
+/* On 32-bit hosts, lower RAM to 1G because of the 2047 MB limit */
+#if HOST_LONG_BITS == 32
+#define ASPEED_RAM_SIZE(sz) MIN((sz), 1 * GiB)
+#else
+#define ASPEED_RAM_SIZE(sz) (sz)
+#endif
+
  /* Palmetto hardware value: 0x120CE416 */
  #define PALMETTO_BMC_HW_STRAP1 (                                        \
          SCU_AST2400_HW_STRAP_DRAM_SIZE(DRAM_SIZE_256MB) |               \
@@ -1504,12 +1511,7 @@ static void aspeed_machine_rainier_class_init(ObjectClass *oc, void *data)
      aspeed_machine_ast2600_class_init(oc, data);
  };
  
-/* On 32-bit hosts, lower RAM to 1G because of the 2047 MB limit */
-#if HOST_LONG_BITS == 32
-#define FUJI_BMC_RAM_SIZE (1 * GiB)
-#else
-#define FUJI_BMC_RAM_SIZE (2 * GiB)
-#endif
+#define FUJI_BMC_RAM_SIZE ASPEED_RAM_SIZE(2 * GiB)
  
  static void aspeed_machine_fuji_class_init(ObjectClass *oc, void *data)
  {
@@ -1533,12 +1535,7 @@ static void aspeed_machine_fuji_class_init(ObjectClass *oc, void *data)
      aspeed_machine_ast2600_class_init(oc, data);
  };
  
-/* On 32-bit hosts, lower RAM to 1G because of the 2047 MB limit */
-#if HOST_LONG_BITS == 32
-#define BLETCHLEY_BMC_RAM_SIZE (1 * GiB)
-#else
-#define BLETCHLEY_BMC_RAM_SIZE (2 * GiB)
-#endif
+#define BLETCHLEY_BMC_RAM_SIZE ASPEED_RAM_SIZE(2 * GiB)
  
  static void aspeed_machine_bletchley_class_init(ObjectClass *oc, void *data)
  {
-- 
2.41.0




  reply	other threads:[~2023-06-28 16:35 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-28  9:09 [PATCH qemu] aspeed add montblanc bmc reference from fuji ~ssinprem
2023-06-28 10:03 ` Cédric Le Goater
2023-06-28 10:07   ` Sittisak Sinprem
2023-06-28 16:34     ` Cédric Le Goater [this message]
2023-06-29  2:57       ` Sittisak Sinprem
2023-06-29  5:43         ` Cédric Le Goater
2023-06-30  6:08 ` Michael Tokarev
2023-06-30  6:09   ` Cédric Le Goater

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=75e183e9-f253-60f3-c7bd-a064b8887ca1@kaod.org \
    --to=clg@kaod.org \
    --cc=anandaramanv@celestica.com \
    --cc=andrew@aj.id.au \
    --cc=joel@jms.id.au \
    --cc=kgengan@celestica.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=srikanth@celestica.com \
    --cc=ssinprem@celestica.com \
    --cc=ssumet@celestica.com \
    --cc=thangavelu.v@celestica.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).