All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jiaxun Yang <jiaxun.yang@flygoat.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>, qemu-devel@nongnu.org
Cc: aleksandar.rikalo@syrmia.com, paulburton@kernel.org
Subject: Re: [PATCH v3 3/3] hw/mips/boston: Add FDT generator
Date: Sun, 3 Oct 2021 21:20:03 +0100	[thread overview]
Message-ID: <b6b86f6f-b707-05e8-2bae-e09b98324d79@flygoat.com> (raw)
In-Reply-To: <7e001a0a-c7e4-ac60-d9b7-bfc018a9f9fe@amsat.org>



在 2021/10/3 18:45, Philippe Mathieu-Daudé 写道:
> On 10/2/21 20:45, Jiaxun Yang wrote:
>> Generate FDT on our own if no dtb argument supplied.
>> Avoid introducing unused device in FDT with user supplied dtb.
>>
>> Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
>> --
>> v2: Address f4bug cmments (Thanks!)
>> ---
>>   hw/mips/boston.c | 234 +++++++++++++++++++++++++++++++++++++++++++++--
>>   1 file changed, 226 insertions(+), 8 deletions(-)
>>   static void boston_mach_init(MachineState *machine)
>>   {
>>       DeviceState *dev;
>> @@ -555,21 +771,23 @@ static void boston_mach_init(MachineState *machine)
>>                              NULL, 0, EM_MIPS, 1, 0);
>>   
>>           if (kernel_size) {
>> +            int dt_size;
>> +            g_autofree const void *dtb_file_data, *dtb_load_data;
>>               hwaddr dtb_paddr = QEMU_ALIGN_UP(kernel_high, 64 * KiB);
>>               hwaddr dtb_vaddr = cpu_mips_phys_to_kseg0(NULL, dtb_paddr);
>>   
>>               s->kernel_entry = kernel_entry;
>>               if (machine->dtb) {
>> -                int dt_size;
>> -                g_autofree const void *dtb_file_data, *dtb_load_data;
>> -
>>                   dtb_file_data = load_device_tree(machine->dtb, &dt_size);
>> -                dtb_load_data = boston_fdt_filter(s, dtb_file_data, NULL, &dtb_vaddr);
> Isn't it better to let boston_fdt_filter() here, ...
>
>> -
>> -                /* Calculate real fdt size after filter */
>> -                dt_size = fdt_totalsize(dtb_load_data);
>> -                rom_add_blob_fixed("dtb", dtb_load_data, dt_size, dtb_paddr);
>> +            } else {
>> +                dtb_file_data = create_fdt(s, boston_memmap, &dt_size);
> ... and pass kernel_cmdline & machine->ram_size to create_fdt(),
> filling the bootargs & memory nodes?
That will be done in boston_fdt_filter, which shares between FDT 
generator path
and dtb file path.

Thanks.
- Jiaxun
>
>>               }
>> +
>> +            dtb_load_data = boston_fdt_filter(s, dtb_file_data, NULL, &dtb_vaddr);
>> +
>> +            /* Calculate real fdt size after filter */
>> +            dt_size = fdt_totalsize(dtb_load_data);
>> +            rom_add_blob_fixed("dtb", dtb_load_data, dt_size, dtb_paddr);
>>           } else {
>>               /* Try to load file as FIT */
>>               fit_err = load_fit(&boston_fit_loader, machine->kernel_filename, s);
>>



  reply	other threads:[~2021-10-03 20:21 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-02 18:45 [PATCH v3 0/3] hw/mips/boston: ELF kernel support Jiaxun Yang
2021-10-02 18:45 ` [PATCH v3 1/3] hw/mips/boston: Massage memory map information Jiaxun Yang
2021-10-02 18:45 ` [PATCH v3 2/3] hw/mips/boston: Allow loading elf kernel and dtb Jiaxun Yang
2021-10-02 18:45 ` [PATCH v3 3/3] hw/mips/boston: Add FDT generator Jiaxun Yang
2021-10-03 17:45   ` Philippe Mathieu-Daudé
2021-10-03 20:20     ` Jiaxun Yang [this message]
2021-10-11 13:58 ` [PATCH v3 0/3] hw/mips/boston: ELF kernel support Jiaxun Yang
2021-10-15  8:49   ` Philippe Mathieu-Daudé
2021-10-15 21:46     ` Jiaxun Yang

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=b6b86f6f-b707-05e8-2bae-e09b98324d79@flygoat.com \
    --to=jiaxun.yang@flygoat.com \
    --cc=aleksandar.rikalo@syrmia.com \
    --cc=f4bug@amsat.org \
    --cc=paulburton@kernel.org \
    --cc=qemu-devel@nongnu.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 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.