Re: [PATCH v6 4/4] of/fdt: mark hotpluggable memory

From: Frank Rowand
Date: Mon Dec 26 2016 - 19:10:10 EST


On 12/25/16 01:02, Heinrich Schuchardt wrote:
> The patch adds a new property "linux,hotpluggable" to memory nodes of the
> device tree.
>
> memory@0 {
> reg = <0x0 0x01000000 0x0 0x7f000000>;
> linux,hotpluggable;
> }
>
> Memory areas marked by this property can later be disabled using the hotplugging
> API. Especially for virtual machines this is a very useful capability.
>
> Unfortunately the notation chosen does not fit well with the concept of
> devicetree overlays which allow to change the devicetree during runtime.

Why would one want to change the hot pluggable memory node via an overlay?
In other words, what is missing from the hot pluggable memory paradigm
that instead requires overlays?

If something is missing from the hot pluggable memory code, then it seems
to me that it should be added to that code instead of hacking around it
by using device tree overlays.

-Frank

>
> I suggest to use the following notation
>
> memory@0 {
> compatible = "linux,hotpluggable-memory";
> reg = <0x0 0x01000000 0x0 0x7f000000>;
> status = "disabled";
> }
>
> This will allow us to write a device driver that can react to changes of the
> devicetree made via devicetree overlays.
>
> This driver could react to the change of the status between "okay" and
> "disabled" and update the memory status accordingly.
>
> Further we could use devicetree overlays to provide additional hotpluggable
> memory.
>
> The referenced patch has already been pulled for 4.10. But I hope it is not
> too late for this design change.
>
> Best regards
>
> Heinrich Schuchardt
>