Re: [RFT PATCH v3 27/27] arm64: apple: Add initial Apple Mac mini (M1, 2020) devicetree

From: Mark Kettenis
Date: Fri Mar 05 2021 - 11:00:24 EST


> From: Hector Martin <marcan@xxxxxxxxx>
> Date: Fri, 5 Mar 2021 20:14:10 +0900
>
> On 05/03/2021 20.03, Krzysztof Kozlowski wrote:
> >> + memory@800000000 {
> >> + device_type = "memory";
> >> + reg = <0x8 0 0x2 0>; /* To be filled by loader */
> >
> > Shouldn't this be 0x800000000 with ~0x80000000 length (or whatever is
> > more common)? Or did I miss some ranges?
>
> The base model has 8GB of RAM, and RAM always starts at 0x800000000,
> hence that reg property.
>
> It's not actually useful to try to boot Linux like this, because it'll
> step all over device carveouts on both ends and break, but since those
> are potentially dynamic it doesn't really make sense to use a more
> specific example for the dts.
>
> E.g. on my system, with my current firmware version, this ends up
> getting patched to:
>
> reg = <0x8 0x0134c000 0x1 0xda294000>

It may be better to handle the memory reserved by the firmware using a
"/reserved-memory" node. I think the benefit of that could be that it
communicates the entire range of physical memory to the kernel, which
means it could use large mappings in the page tables. Unless the
"/reserved-memory" node defines a region that has the "no-map"
property of course.

That doesn't really have an impact on this diff though. The
firmware/bootloader would still have to modify the property on 16GB
models.