From: Helge Deller <deller@gmx.de>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Igor Mammedov" <imammedo@redhat.com>,
qemu-devel@nongnu.org, "Sven Schnelle" <svens@stackframe.org>
Cc: Richard Henderson <rth@twiddle.net>
Subject: Re: [PATCH 1/3] hw/hppa/machine: Correctly check the firmware is in PDC range
Date: Wed, 8 Jan 2020 22:15:41 +0100 [thread overview]
Message-ID: <25674517-77f3-eb1a-1a4c-db953ef4e04b@gmx.de> (raw)
In-Reply-To: <20200108181425.21485-2-f4bug@amsat.org>
On 08.01.20 19:14, Philippe Mathieu-Daudé wrote:
> The firmware has to reside in the PDC range. If the Elf file
> expects to load it below FIRMWARE_START, it is incorrect,
> regardless the RAM size.
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Helge Deller <deller@gmx.de>
> ---
> Note we define FIRMWARE_END=0xf0800000 but in the specs
> the PDC ends at 0xf1000000.
> ---
> hw/hppa/machine.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/hppa/machine.c b/hw/hppa/machine.c
> index 5d0de26140..6775d879f8 100644
> --- a/hw/hppa/machine.c
> +++ b/hw/hppa/machine.c
> @@ -155,7 +155,7 @@ static void machine_hppa_init(MachineState *machine)
> qemu_log_mask(CPU_LOG_PAGE, "Firmware loaded at 0x%08" PRIx64
> "-0x%08" PRIx64 ", entry at 0x%08" PRIx64 ".\n",
> firmware_low, firmware_high, firmware_entry);
> - if (firmware_low < ram_size || firmware_high >= FIRMWARE_END) {
> + if (firmware_low < FIRMWARE_START || firmware_high >= FIRMWARE_END) {
> error_report("Firmware overlaps with memory or IO space");
> exit(1);
> }
>
next prev parent reply other threads:[~2020-01-08 21:20 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-08 18:14 [PATCH 0/3] hw/hppa/machine: Do not limit the RAM to 3840MB Philippe Mathieu-Daudé
2020-01-08 18:14 ` [PATCH 1/3] hw/hppa/machine: Correctly check the firmware is in PDC range Philippe Mathieu-Daudé
2020-01-08 21:15 ` Helge Deller [this message]
2020-01-08 18:14 ` [PATCH 2/3] hw/hppa/machine: Do not limit the RAM to 3840MB Philippe Mathieu-Daudé
2020-01-08 21:39 ` Helge Deller
2020-01-08 23:45 ` Philippe Mathieu-Daudé
2020-01-09 10:15 ` Igor Mammedov
2020-01-09 11:09 ` Philippe Mathieu-Daudé
2020-01-09 11:39 ` Igor Mammedov
2020-01-08 18:14 ` [RFC PATCH 3/3] hw/hppa/machine: Warn when using more than 4095MB of RAM Philippe Mathieu-Daudé
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=25674517-77f3-eb1a-1a4c-db953ef4e04b@gmx.de \
--to=deller@gmx.de \
--cc=f4bug@amsat.org \
--cc=imammedo@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=svens@stackframe.org \
/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).