linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Neil Armstrong <narmstrong@baylibre.com>
To: Stefan Agner <stefan@agner.ch>, Robin Murphy <robin.murphy@arm.com>
Cc: Byron Stanoszek <gandalf@winds.org>,
	linux-amlogic@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org,
	Jerome Brunet <jbrunet@baylibre.com>,
	Kevin Hilman <khilman@baylibre.com>,
	Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	Mike Rapoport <rppt@kernel.org>
Subject: Re: Random reboots on ODROID-N2+
Date: Mon, 26 Jul 2021 09:54:14 +0200	[thread overview]
Message-ID: <e0cd09ed-6c24-2bc6-c09a-0c0ccb7ae6c4@baylibre.com> (raw)
In-Reply-To: <50c6925775c207d0751e20fa9d45611a@agner.ch>

Hi,

On 23/07/2021 21:48, Stefan Agner wrote:
> On 2021-07-23 19:47, Robin Murphy wrote:
>> On 2021-07-23 17:14, Robin Murphy wrote:
>>> On 2021-07-23 16:56, Stefan Agner wrote:
> <snip>
>>>>>
>>>>> Booting with "efi=debug" should (among other things) print the memory
>>>>> map at boot if you want to double-check that that is the source of the
>>>>> mismatch. Our EFI code should be perfectly capable of setting the
>>>>> memblock flag if the region *is* described appropriately, see
>>>>> reserve_regions() in drivers/firmware/efi/efi-init.c.
>>>>
>>>> Booting 5.12.10 with "efi=debug" on U-Boot 2021.04 gave this:
>>>> [    0.000000] Machine model: Hardkernel ODROID-N2Plus
>>>> [    0.000000] efi: Getting UEFI parameters from /chosen in DT:
>>>> [    0.000000] efi: UEFI not found.
>>>> [    0.000000] OF: fdt: Reserved memory: failed to reserve memory for
>>>> node 'secmon@5000000': base 0x0000000005000000, size 3 MiB
>>>>
>>>> So it seems UEFI is not in the play here?
>>>
>>> Ah, OK, in that case I guess the question remains why does early_init_dt_reserve_memory_arch() think the region is already reserved? My instinctive assumption was an EFI memory map being present; seeing that U-Boot does indeed reflect DT reservations there *and* has had a likely-looking bug recently was then just overwhelmingly suggestive :)
>>
>> Actually, poking at U-Boot a bit more I find
>> meson_board_add_reserved_memory() - can you check /sys/firmware/fdt
>> and see if the region ends up being passed as a /memreserve/ as well
>> as a proper reserved-memory node?
>>
>> IIRC the semantics of /memreserve/ aren't really well-defined enough
>> to be suitable for the kind of things which require no-map, and my new
>> guess is that that's what ends up conflicting here.
> 
> Seems to be present in booth:

Indeed, in order so support any combination:
- upstream u-boot
- vendor u-boot
- upstream linux
- other OS

The secmon is in the upstream Linux DT, and upstream u-boot reads the secure memory regions
from the first stage bootloaders and adds them into the DT memreserve.

It worked fine since Linux 4.10-ish, until 5.10.

Neil

> 
> On v5.12.10
> # fdtdump /sys/firmware/fdt
> ...
> /memreserve/ 0x5000000 0x300000;
> ...
>     reserved-memory {
>         #address-cells = <0x00000002>;
>         #size-cells = <0x00000002>;
>         ranges;
>         secmon@5000000 {
>             reg = <0x00000000 0x05000000 0x00000000 0x00300000>;
>             no-map;
>             phandle = <0x00000068>;
>         };
>         linux,cma {
>             compatible = "shared-dma-pool";
>             reusable;
>             size = <0x00000000 0x10000000>;
>             alignment = <0x00000000 0x00400000>;
>             linux,cma-default;
>         };
>     };
> 
> --
> Stefan
> 


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2021-07-26  8:05 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-17  9:14 Random reboots on ODROID-N2+ Stefan Agner
2021-05-17 21:09 ` Martin Blumenstingl
2021-05-18  9:16   ` Stefan Agner
2021-05-18  9:35     ` Neil Armstrong
2021-05-18  1:33 ` Andrew Lunn
2021-05-18 10:15   ` Stefan Agner
2021-05-19 20:09 ` Stefan Agner
2021-06-22  7:39 ` Stefan Agner
2021-07-23 14:25   ` Byron Stanoszek
2021-07-23 15:36     ` Robin Murphy
2021-07-23 15:56       ` Stefan Agner
2021-07-23 16:14         ` Robin Murphy
2021-07-23 17:47           ` Robin Murphy
2021-07-23 19:48             ` Stefan Agner
2021-07-26  7:54               ` Neil Armstrong [this message]
2021-07-26 12:07                 ` Stefan Agner
2021-07-26 12:31                   ` Robin Murphy

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=e0cd09ed-6c24-2bc6-c09a-0c0ccb7ae6c4@baylibre.com \
    --to=narmstrong@baylibre.com \
    --cc=gandalf@winds.org \
    --cc=jbrunet@baylibre.com \
    --cc=khilman@baylibre.com \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=martin.blumenstingl@googlemail.com \
    --cc=robin.murphy@arm.com \
    --cc=rppt@kernel.org \
    --cc=stefan@agner.ch \
    /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).