All of lore.kernel.org
 help / color / mirror / Atom feed
* Problem with commit to add overlay symbols to live device tree
@ 2017-10-19 17:06 Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w
       [not found] ` <85c5a40bb6eb4d4ebe522b3034528a36-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w @ 2017-10-19 17:06 UTC (permalink / raw)
  To: frank.rowand-7U/KSKJipcs, robh-DgEjT+Ai2ygdnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA

Hi Frank, Rob,

I ran some tests with kernel v4.14-rc2, where I came across an issue with your commit "of: overlay: add overlay symbols to live device tree" (d1651b03c2df75db8eda3fbcd3a07adb337ee8b0, https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/of?h=v4.14-rc5&id=d1651b03c2df75db8eda3fbcd3a07adb337ee8b0). I am not sure whether this is a problem with your change or whether I made a mistake somewhere.

Without this commit, the following device tree overlay works fine on a Raspberry Pi:

/dts-v1/;
/plugin/;

/ {
	fragment@0 {
		target-path = "/soc/spi@7e204000";
		__overlay__ {
			#address-cells = <1>;
			#size-cells = <0>;
			status = "okay";

		        spidev1: spi@1 {
				compatible = "spidev";
				reg = <1>;
				spi-max-frequency = <5000000>;
			};
		};
	};
};

But with the commit, it is rejected:

OF: overlay: no symbols in root of device tree.
OF: overlay: of_build_overlay_info() failed for tree@/
create_overlay: Failed to create overlay (err=-22)

Only if I remove the spidev1 label, it continues to work with the commit (but this is not always possible in more complex overlays).

I hope this does not make a difference, but I use the configfs interface to load the overlay, that is not part of mainline, but shipped by several distributions nonetheless (for example in the Raspberry Pi kernel, https://github.com/raspberrypi/linux/commit/cccc24635da69799335566eb464a4c9e1fb4a8ad).

Could you tell me whether this change in behavior is intentional and whether I have to fix something in my usage?

Thanks
Alexander
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Problem with commit to add overlay symbols to live device tree
       [not found] ` <85c5a40bb6eb4d4ebe522b3034528a36-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
@ 2017-10-19 19:53   ` Frank Rowand
       [not found]     ` <59E9029D.1030700-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Frank Rowand @ 2017-10-19 19:53 UTC (permalink / raw)
  To: Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w,
	frank.rowand-7U/KSKJipcs, robh-DgEjT+Ai2ygdnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA

Hi Alexander,

On 10/19/17 10:06, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
> Hi Frank, Rob,
> 
> I ran some tests with kernel v4.14-rc2, where I came across an issue
> with your commit "of: overlay: add overlay symbols to live device
> tree" (d1651b03c2df75db8eda3fbcd3a07adb337ee8b0,
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/of?h=v4.14-rc5&id=d1651b03c2df75db8eda3fbcd3a07adb337ee8b0).
> I am not sure whether this is a problem with your change or whether I
> made a mistake somewhere.
> 
> Without this commit, the following device tree overlay works fine on
> a Raspberry Pi:
> 
> /dts-v1/;
> /plugin/;
> 
> / {
> 	fragment@0 {
> 		target-path = "/soc/spi@7e204000";
> 		__overlay__ {
> 			#address-cells = <1>;
> 			#size-cells = <0>;
> 			status = "okay";
> 
> 		        spidev1: spi@1 {
> 				compatible = "spidev";
> 				reg = <1>;
> 				spi-max-frequency = <5000000>;
> 			};
> 		};
> 	};
> };
> 
> But with the commit, it is rejected:
> 
> OF: overlay: no symbols in root of device tree.
> OF: overlay: of_build_overlay_info() failed for tree@/
> create_overlay: Failed to create overlay (err=-22)
> 
> Only if I remove the spidev1 label, it continues to work with the
> commit (but this is not always possible in more complex overlays).
> 
> I hope this does not make a difference, but I use the configfs
> interface to load the overlay, that is not part of mainline, but
> shipped by several distributions nonetheless (for example in the
> Raspberry Pi kernel,
> https://github.com/raspberrypi/linux/commit/cccc24635da69799335566eb464a4c9e1fb4a8ad).
>
>
> Could you tell me whether this change in behavior is intentional and
> whether I have to fix something in my usage?

Yes, the change is intentional.

If you are using overlays, the expectation is that the device tree
that was used to boot contains symbols (the paths of nodes that
have phandles) so that phandle references in the overlay can be
fixed up to match the values in the base devicetree.  Symbols
will be added to the device tree if if is compiled with the
"@" option.  This is the first method to avoid the overlay
load error.

If you compile the overlay with the "@" option then symbols
will be added to the overlay DTB.  Previous to commit
d1651b03c2df, these symbols would be ignored when an overlay
was loaded.  If you remove the "@" from the compile of
overlays, then everything should work the same way it did
before the commit.  This is the second way to avoid the
load overlay error.


> Thanks
> Alexander
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Problem with commit to add overlay symbols to live device tree
       [not found]     ` <59E9029D.1030700-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2017-10-20 12:11       ` Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w
       [not found]         ` <d0bd4312e9314c8ba6c56d800d07c0a9-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w @ 2017-10-20 12:11 UTC (permalink / raw)
  To: frowand.list-Re5JQEeQqe8AvxtiuMwx3w, frank.rowand-7U/KSKJipcs,
	robh-DgEjT+Ai2ygdnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA

> Hi Alexander,
> 
> On 10/19/17 10:06, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
> > Hi Frank, Rob,
> >
> > I ran some tests with kernel v4.14-rc2, where I came across an issue
> > with your commit "of: overlay: add overlay symbols to live device
> > tree" (d1651b03c2df75db8eda3fbcd3a07adb337ee8b0,
> >
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/d
> rivers/of?h=v4.14-rc5&id=d1651b03c2df75db8eda3fbcd3a07adb337ee8b0).
> > I am not sure whether this is a problem with your change or whether I
> > made a mistake somewhere.
> >
> > Without this commit, the following device tree overlay works fine on
> > a Raspberry Pi:
> >
> > /dts-v1/;
> > /plugin/;
> >
> > / {
> > 	fragment@0 {
> > 		target-path = "/soc/spi@7e204000";
> > 		__overlay__ {
> > 			#address-cells = <1>;
> > 			#size-cells = <0>;
> > 			status = "okay";
> >
> > 		        spidev1: spi@1 {
> > 				compatible = "spidev";
> > 				reg = <1>;
> > 				spi-max-frequency = <5000000>;
> > 			};
> > 		};
> > 	};
> > };
> >
> > But with the commit, it is rejected:
> >
> > OF: overlay: no symbols in root of device tree.
> > OF: overlay: of_build_overlay_info() failed for tree@/
> > create_overlay: Failed to create overlay (err=-22)
> >
> > Only if I remove the spidev1 label, it continues to work with the
> > commit (but this is not always possible in more complex overlays).
> >
> > I hope this does not make a difference, but I use the configfs
> > interface to load the overlay, that is not part of mainline, but
> > shipped by several distributions nonetheless (for example in the
> > Raspberry Pi kernel,
> >
> https://github.com/raspberrypi/linux/commit/cccc24635da69799335566eb46
> 4a4c9e1fb4a8ad).
> >
> >
> > Could you tell me whether this change in behavior is intentional and
> > whether I have to fix something in my usage?
> 
> Yes, the change is intentional.
> 
> If you are using overlays, the expectation is that the device tree
> that was used to boot contains symbols (the paths of nodes that
> have phandles) so that phandle references in the overlay can be
> fixed up to match the values in the base devicetree.  Symbols
> will be added to the device tree if if is compiled with the
> "@" option.  This is the first method to avoid the overlay
> load error.

Ah, thanks, this does solve the problem. I use nothing special to generate the base devicetree, just "make dtbs". Would it make sense to add the "@" option to the kernel Makefile, so that symbols are added by default? Or does this have any downside? I'd suspect that many more people will be hit by this change, since most tutorials for overlays that I have seen include the "@" option for the dtc calls.

> If you compile the overlay with the "@" option then symbols
> will be added to the overlay DTB.  Previous to commit
> d1651b03c2df, these symbols would be ignored when an overlay
> was loaded.  If you remove the "@" from the compile of
> overlays, then everything should work the same way it did
> before the commit.  This is the second way to avoid the
> load overlay error.
> 
> 
> > Thanks
> > Alexander
> > --
> > To unsubscribe from this list: send the line "unsubscribe devicetree" in
> > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Problem with commit to add overlay symbols to live device tree
       [not found]         ` <d0bd4312e9314c8ba6c56d800d07c0a9-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
@ 2017-10-20 20:57           ` Frank Rowand
       [not found]             ` <59EA6348.5020205-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Frank Rowand @ 2017-10-20 20:57 UTC (permalink / raw)
  To: Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w,
	frank.rowand-7U/KSKJipcs, robh-DgEjT+Ai2ygdnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA

On 10/20/17 05:11, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
>> Hi Alexander,
>>
>> On 10/19/17 10:06, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
>>> Hi Frank, Rob,
>>>
>>> I ran some tests with kernel v4.14-rc2, where I came across an issue
>>> with your commit "of: overlay: add overlay symbols to live device
>>> tree" (d1651b03c2df75db8eda3fbcd3a07adb337ee8b0,
>>>
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/d
>> rivers/of?h=v4.14-rc5&id=d1651b03c2df75db8eda3fbcd3a07adb337ee8b0).
>>> I am not sure whether this is a problem with your change or whether I
>>> made a mistake somewhere.
>>>
>>> Without this commit, the following device tree overlay works fine on
>>> a Raspberry Pi:
>>>
>>> /dts-v1/;
>>> /plugin/;
>>>
>>> / {
>>> 	fragment@0 {
>>> 		target-path = "/soc/spi@7e204000";
>>> 		__overlay__ {
>>> 			#address-cells = <1>;
>>> 			#size-cells = <0>;
>>> 			status = "okay";
>>>
>>> 		        spidev1: spi@1 {
>>> 				compatible = "spidev";
>>> 				reg = <1>;
>>> 				spi-max-frequency = <5000000>;
>>> 			};
>>> 		};
>>> 	};
>>> };
>>>
>>> But with the commit, it is rejected:
>>>
>>> OF: overlay: no symbols in root of device tree.
>>> OF: overlay: of_build_overlay_info() failed for tree@/
>>> create_overlay: Failed to create overlay (err=-22)
>>>
>>> Only if I remove the spidev1 label, it continues to work with the
>>> commit (but this is not always possible in more complex overlays).
>>>
>>> I hope this does not make a difference, but I use the configfs
>>> interface to load the overlay, that is not part of mainline, but
>>> shipped by several distributions nonetheless (for example in the
>>> Raspberry Pi kernel,
>>>
>> https://github.com/raspberrypi/linux/commit/cccc24635da69799335566eb46
>> 4a4c9e1fb4a8ad).
>>>
>>>
>>> Could you tell me whether this change in behavior is intentional and
>>> whether I have to fix something in my usage?
>>
>> Yes, the change is intentional.
>>
>> If you are using overlays, the expectation is that the device tree
>> that was used to boot contains symbols (the paths of nodes that
>> have phandles) so that phandle references in the overlay can be
>> fixed up to match the values in the base devicetree.  Symbols
>> will be added to the device tree if if is compiled with the
>> "@" option.  This is the first method to avoid the overlay
>> load error.
> 
> Ah, thanks, this does solve the problem. I use nothing special to
> generate the base devicetree, just "make dtbs". Would it make sense
> to add the "@" option to the kernel Makefile, so that symbols are
> added by default? Or does this have any downside? I'd suspect that

Yes, there is a large downside.  Compiling with the "@" option will
increase the size of the DTB.  Most boards will not use overlays, 
and in those cases this overhead has no value.  So "@" should be
opt-in, not default.


> many more people will be hit by this change, since most tutorials for
> overlays that I have seen include the "@" option for the dtc calls.> 
>> If you compile the overlay with the "@" option then symbols
>> will be added to the overlay DTB.  Previous to commit
>> d1651b03c2df, these symbols would be ignored when an overlay
>> was loaded.  If you remove the "@" from the compile of
>> overlays, then everything should work the same way it did
>> before the commit.  This is the second way to avoid the
>> load overlay error.
>>
>>
>>> Thanks
>>> Alexander
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe devicetree" in
>>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Problem with commit to add overlay symbols to live device tree
       [not found]             ` <59EA6348.5020205-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2017-11-09 17:09               ` Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w
       [not found]                 ` <c4deba835169411ea2645c27c734dd31-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w @ 2017-11-09 17:09 UTC (permalink / raw)
  To: frowand.list-Re5JQEeQqe8AvxtiuMwx3w, frank.rowand-7U/KSKJipcs,
	robh-DgEjT+Ai2ygdnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA

> On 10/20/17 05:11, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
> >> Hi Alexander,
> >>
> >> On 10/19/17 10:06, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
> >>> Hi Frank, Rob,
> >>>
> >>> I ran some tests with kernel v4.14-rc2, where I came across an issue
> >>> with your commit "of: overlay: add overlay symbols to live device
> >>> tree" (d1651b03c2df75db8eda3fbcd3a07adb337ee8b0,
> >>>
> >>
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/d
> >> rivers/of?h=v4.14-
> rc5&id=d1651b03c2df75db8eda3fbcd3a07adb337ee8b0).
> >>> I am not sure whether this is a problem with your change or whether I
> >>> made a mistake somewhere.
> >>>
> >>> Without this commit, the following device tree overlay works fine on
> >>> a Raspberry Pi:
> >>>
> >>> /dts-v1/;
> >>> /plugin/;
> >>>
> >>> / {
> >>> 	fragment@0 {
> >>> 		target-path = "/soc/spi@7e204000";
> >>> 		__overlay__ {
> >>> 			#address-cells = <1>;
> >>> 			#size-cells = <0>;
> >>> 			status = "okay";
> >>>
> >>> 		        spidev1: spi@1 {
> >>> 				compatible = "spidev";
> >>> 				reg = <1>;
> >>> 				spi-max-frequency = <5000000>;
> >>> 			};
> >>> 		};
> >>> 	};
> >>> };
> >>>
> >>> But with the commit, it is rejected:
> >>>
> >>> OF: overlay: no symbols in root of device tree.
> >>> OF: overlay: of_build_overlay_info() failed for tree@/
> >>> create_overlay: Failed to create overlay (err=-22)
> >>>
> >>> Only if I remove the spidev1 label, it continues to work with the
> >>> commit (but this is not always possible in more complex overlays).
> >>>
> >>> I hope this does not make a difference, but I use the configfs
> >>> interface to load the overlay, that is not part of mainline, but
> >>> shipped by several distributions nonetheless (for example in the
> >>> Raspberry Pi kernel,
> >>>
> >>
> https://github.com/raspberrypi/linux/commit/cccc24635da69799335566eb46
> >> 4a4c9e1fb4a8ad).
> >>>
> >>>
> >>> Could you tell me whether this change in behavior is intentional and
> >>> whether I have to fix something in my usage?
> >>
> >> Yes, the change is intentional.
> >>
> >> If you are using overlays, the expectation is that the device tree
> >> that was used to boot contains symbols (the paths of nodes that
> >> have phandles) so that phandle references in the overlay can be
> >> fixed up to match the values in the base devicetree.  Symbols
> >> will be added to the device tree if if is compiled with the
> >> "@" option.  This is the first method to avoid the overlay
> >> load error.
> >
> > Ah, thanks, this does solve the problem. I use nothing special to
> > generate the base devicetree, just "make dtbs". Would it make sense
> > to add the "@" option to the kernel Makefile, so that symbols are
> > added by default? Or does this have any downside? I'd suspect that
> 
> Yes, there is a large downside.  Compiling with the "@" option will
> increase the size of the DTB.  Most boards will not use overlays,
> and in those cases this overhead has no value.  So "@" should be
> opt-in, not default.

I see. Is there a way (a config option maybe?) that I can use to get this behavior without patching the Makefile?

> > many more people will be hit by this change, since most tutorials for
> > overlays that I have seen include the "@" option for the dtc calls.>
> >> If you compile the overlay with the "@" option then symbols
> >> will be added to the overlay DTB.  Previous to commit
> >> d1651b03c2df, these symbols would be ignored when an overlay
> >> was loaded.  If you remove the "@" from the compile of
> >> overlays, then everything should work the same way it did
> >> before the commit.  This is the second way to avoid the
> >> load overlay error.

Do I understand that correctly, that when I remove the "@" option from the dtc calls, the same call should work both with an old (pre-d1651b03c2df) and a new kernel? If the old kernel just ignored the symbols, they were not used for anything, so it should not matter whether they were contained in the overlay DTB or not, right?

> >>
> >>
> >>> Thanks
> >>> Alexander
> >>> --
> >>> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> >>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> >>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >
> 

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Problem with commit to add overlay symbols to live device tree
       [not found]                 ` <c4deba835169411ea2645c27c734dd31-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
@ 2017-11-09 20:02                   ` Frank Rowand
       [not found]                     ` <a444bccd-1d42-44b9-398c-095fb4fb9055-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Frank Rowand @ 2017-11-09 20:02 UTC (permalink / raw)
  To: Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w,
	frank.rowand-7U/KSKJipcs, robh-DgEjT+Ai2ygdnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA

On 11/09/17 09:09, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
>> On 10/20/17 05:11, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
>>>> Hi Alexander,
>>>>
>>>> On 10/19/17 10:06, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
>>>>> Hi Frank, Rob,
>>>>>
>>>>> I ran some tests with kernel v4.14-rc2, where I came across an issue
>>>>> with your commit "of: overlay: add overlay symbols to live device
>>>>> tree" (d1651b03c2df75db8eda3fbcd3a07adb337ee8b0,
>>>>>
>>>>
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/d
>>>> rivers/of?h=v4.14-
>> rc5&id=d1651b03c2df75db8eda3fbcd3a07adb337ee8b0).
>>>>> I am not sure whether this is a problem with your change or whether I
>>>>> made a mistake somewhere.
>>>>>
>>>>> Without this commit, the following device tree overlay works fine on
>>>>> a Raspberry Pi:
>>>>>
>>>>> /dts-v1/;
>>>>> /plugin/;
>>>>>
>>>>> / {
>>>>> 	fragment@0 {
>>>>> 		target-path = "/soc/spi@7e204000";
>>>>> 		__overlay__ {
>>>>> 			#address-cells = <1>;
>>>>> 			#size-cells = <0>;
>>>>> 			status = "okay";
>>>>>
>>>>> 		        spidev1: spi@1 {
>>>>> 				compatible = "spidev";
>>>>> 				reg = <1>;
>>>>> 				spi-max-frequency = <5000000>;
>>>>> 			};
>>>>> 		};
>>>>> 	};
>>>>> };
>>>>>
>>>>> But with the commit, it is rejected:
>>>>>
>>>>> OF: overlay: no symbols in root of device tree.
>>>>> OF: overlay: of_build_overlay_info() failed for tree@/
>>>>> create_overlay: Failed to create overlay (err=-22)
>>>>>
>>>>> Only if I remove the spidev1 label, it continues to work with the
>>>>> commit (but this is not always possible in more complex overlays).
>>>>>
>>>>> I hope this does not make a difference, but I use the configfs
>>>>> interface to load the overlay, that is not part of mainline, but
>>>>> shipped by several distributions nonetheless (for example in the
>>>>> Raspberry Pi kernel,
>>>>>
>>>>
>> https://github.com/raspberrypi/linux/commit/cccc24635da69799335566eb46
>>>> 4a4c9e1fb4a8ad).
>>>>>
>>>>>
>>>>> Could you tell me whether this change in behavior is intentional and
>>>>> whether I have to fix something in my usage?
>>>>
>>>> Yes, the change is intentional.
>>>>
>>>> If you are using overlays, the expectation is that the device tree
>>>> that was used to boot contains symbols (the paths of nodes that
>>>> have phandles) so that phandle references in the overlay can be
>>>> fixed up to match the values in the base devicetree.  Symbols
>>>> will be added to the device tree if if is compiled with the
>>>> "@" option.  This is the first method to avoid the overlay
>>>> load error.
>>>
>>> Ah, thanks, this does solve the problem. I use nothing special to
>>> generate the base devicetree, just "make dtbs". Would it make sense
>>> to add the "@" option to the kernel Makefile, so that symbols are
>>> added by default? Or does this have any downside? I'd suspect that
>>
>> Yes, there is a large downside.  Compiling with the "@" option will
>> increase the size of the DTB.  Most boards will not use overlays,
>> and in those cases this overhead has no value.  So "@" should be
>> opt-in, not default.
> 
> I see. Is there a way (a config option maybe?) that I can use to get this behavior without patching the Makefile?

To compile a DTB with -@, you can specify the value of DTC_FLAGS
on the make command line.  For example:

   DTC_FLAGS="-@" make qcom-apq8074-dragonboard.dtb

This will work for arm.  For some other architectures, you may want to
add additional flags to DTC_FLAGS, and for microblaze this will not work
with the current makefile (the arch makefiles should probably be changed
to be: DTC_FLAGS += ... or to remove the "-p 1024" if no longer needed):

  $ git grep DTC_FLAGS | grep Makefile: | grep arch
  arch/c6x/boot/dts/Makefile:DTC_FLAGS ?= -p 1024
  arch/microblaze/boot/dts/Makefile:DTC_FLAGS := -p 1024
  arch/openrisc/boot/dts/Makefile:#DTC_FLAGS ?= -p 1024
  arch/powerpc/boot/Makefile:DTC_FLAGS	?= -p 1024


>>> many more people will be hit by this change, since most tutorials for
>>> overlays that I have seen include the "@" option for the dtc calls.>
>>>> If you compile the overlay with the "@" option then symbols
>>>> will be added to the overlay DTB.  Previous to commit
>>>> d1651b03c2df, these symbols would be ignored when an overlay
>>>> was loaded.  If you remove the "@" from the compile of
>>>> overlays, then everything should work the same way it did
>>>> before the commit.  This is the second way to avoid the
>>>> load overlay error.
> 
> Do I understand that correctly, that when I remove the "@" option
> from the dtc calls, the same call should work both with an old
> (pre-d1651b03c2df) and a new kernel? If the old kernel just ignored
> the symbols, they were not used for anything, so it should not matter
> whether they were contained in the overlay DTB or not, right?

I just mentioned that workaround as another temporary way to work
around your specific case.  You should probably just forget I even
mentioned it.


>>>>
>>>>
>>>>> Thanks
>>>>> Alexander
>>>>> --
>>>>> To unsubscribe from this list: send the line "unsubscribe devicetree" in
>>>>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>>>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>>
>>
> 
> 

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Problem with commit to add overlay symbols to live device tree
       [not found]                     ` <a444bccd-1d42-44b9-398c-095fb4fb9055-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2017-11-13 12:11                       ` Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w
       [not found]                         ` <5a3447ded9eb407989b5af4cc2ad4aab-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w @ 2017-11-13 12:11 UTC (permalink / raw)
  To: frowand.list-Re5JQEeQqe8AvxtiuMwx3w, frank.rowand-7U/KSKJipcs,
	robh-DgEjT+Ai2ygdnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA

> On 11/09/17 09:09, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
> >> On 10/20/17 05:11, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
> >>>> Hi Alexander,
> >>>>
> >>>> On 10/19/17 10:06, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
> >>>>> Hi Frank, Rob,
> >>>>>
> >>>>> I ran some tests with kernel v4.14-rc2, where I came across an issue
> >>>>> with your commit "of: overlay: add overlay symbols to live device
> >>>>> tree" (d1651b03c2df75db8eda3fbcd3a07adb337ee8b0,
> >>>>>
> >>>>
> >>
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/d
> >>>> rivers/of?h=v4.14-
> >> rc5&id=d1651b03c2df75db8eda3fbcd3a07adb337ee8b0).
> >>>>> I am not sure whether this is a problem with your change or whether I
> >>>>> made a mistake somewhere.
> >>>>>
> >>>>> Without this commit, the following device tree overlay works fine on
> >>>>> a Raspberry Pi:
> >>>>>
> >>>>> /dts-v1/;
> >>>>> /plugin/;
> >>>>>
> >>>>> / {
> >>>>> 	fragment@0 {
> >>>>> 		target-path = "/soc/spi@7e204000";
> >>>>> 		__overlay__ {
> >>>>> 			#address-cells = <1>;
> >>>>> 			#size-cells = <0>;
> >>>>> 			status = "okay";
> >>>>>
> >>>>> 		        spidev1: spi@1 {
> >>>>> 				compatible = "spidev";
> >>>>> 				reg = <1>;
> >>>>> 				spi-max-frequency = <5000000>;
> >>>>> 			};
> >>>>> 		};
> >>>>> 	};
> >>>>> };
> >>>>>
> >>>>> But with the commit, it is rejected:
> >>>>>
> >>>>> OF: overlay: no symbols in root of device tree.
> >>>>> OF: overlay: of_build_overlay_info() failed for tree@/
> >>>>> create_overlay: Failed to create overlay (err=-22)
> >>>>>
> >>>>> Only if I remove the spidev1 label, it continues to work with the
> >>>>> commit (but this is not always possible in more complex overlays).
> >>>>>
> >>>>> I hope this does not make a difference, but I use the configfs
> >>>>> interface to load the overlay, that is not part of mainline, but
> >>>>> shipped by several distributions nonetheless (for example in the
> >>>>> Raspberry Pi kernel,
> >>>>>
> >>>>
> >>
> https://github.com/raspberrypi/linux/commit/cccc24635da69799335566eb46
> >>>> 4a4c9e1fb4a8ad).
> >>>>>
> >>>>>
> >>>>> Could you tell me whether this change in behavior is intentional and
> >>>>> whether I have to fix something in my usage?
> >>>>
> >>>> Yes, the change is intentional.
> >>>>
> >>>> If you are using overlays, the expectation is that the device tree
> >>>> that was used to boot contains symbols (the paths of nodes that
> >>>> have phandles) so that phandle references in the overlay can be
> >>>> fixed up to match the values in the base devicetree.  Symbols
> >>>> will be added to the device tree if if is compiled with the
> >>>> "@" option.  This is the first method to avoid the overlay
> >>>> load error.
> >>>
> >>> Ah, thanks, this does solve the problem. I use nothing special to
> >>> generate the base devicetree, just "make dtbs". Would it make sense
> >>> to add the "@" option to the kernel Makefile, so that symbols are
> >>> added by default? Or does this have any downside? I'd suspect that
> >>
> >> Yes, there is a large downside.  Compiling with the "@" option will
> >> increase the size of the DTB.  Most boards will not use overlays,
> >> and in those cases this overhead has no value.  So "@" should be
> >> opt-in, not default.
> >
> > I see. Is there a way (a config option maybe?) that I can use to get this
> behavior without patching the Makefile?
> 
> To compile a DTB with -@, you can specify the value of DTC_FLAGS
> on the make command line.  For example:
> 
>    DTC_FLAGS="-@" make qcom-apq8074-dragonboard.dtb
> 
> This will work for arm.

I tried that for my Raspberry Pi 2, with the mainline kernel (so no Raspberry Pi specific patches, still v4.14-rc2). Unfortunately, with that DTB the machine does not boot anymore, there is no output at all from the kernel:

---
switch to partitions #0, OK
mmc0 is current device
Scanning mmc 0:1...
Found U-Boot script /boot.scr
reading /boot.scr
696 bytes read in 11 ms (61.5 KiB/s)
## Executing script at 02000000
reading /zImage
6017520 bytes read in 791 ms (7.3 MiB/s)
reading /dtbs/bcm2836-rpi-2-b.dtb
18795 bytes read in 188 ms (96.7 KiB/s)
reading /initramfs-linux.img
4173703 bytes read in 546 ms (7.3 MiB/s)
Kernel image @ 0x1000000 [ 0x000000 - 0x5bd1f0 ]
## Flattened Device Tree blob at 00000100
   Booting using the fdt blob at 0x000100
   reserving fdt memory region: addr=0 size=1000
   Using Device Tree in place at 00000100, end 00007a6a

Starting kernel ...
---

Using an older DTB for the same kernel build works though.

I've used the dtc to get back the source for both DTBs and compared those. They are identical, except for several (linux,)phandle properties that appeared in various nodes and the large __symbols__ section. Also, the dtc generates two more warnings when parsing the new DTB, but I'm not sure whether those are significant:

Warning (clocks_property): property 'clocks' size (21) is invalid, expected multiple of 4 in node /__symbols__
Warning (gpios_property): property 'gpio' size (19) is invalid, expected multiple of 4 in node /__symbols__

Can something else be broken in the DTB, that is not visible within the DTS? Or could this be a size issue? The new DTB is ~6KB larger than the old one (18KB vs. 12KB). Any idea how to debug this further?

> For some other architectures, you may want to
> add additional flags to DTC_FLAGS, and for microblaze this will not work
> with the current makefile (the arch makefiles should probably be changed
> to be: DTC_FLAGS += ... or to remove the "-p 1024" if no longer needed):
> 
>   $ git grep DTC_FLAGS | grep Makefile: | grep arch
>   arch/c6x/boot/dts/Makefile:DTC_FLAGS ?= -p 1024
>   arch/microblaze/boot/dts/Makefile:DTC_FLAGS := -p 1024
>   arch/openrisc/boot/dts/Makefile:#DTC_FLAGS ?= -p 1024
>   arch/powerpc/boot/Makefile:DTC_FLAGS	?= -p 1024
> 
> 
> >>> many more people will be hit by this change, since most tutorials for
> >>> overlays that I have seen include the "@" option for the dtc calls.>
> >>>> If you compile the overlay with the "@" option then symbols
> >>>> will be added to the overlay DTB.  Previous to commit
> >>>> d1651b03c2df, these symbols would be ignored when an overlay
> >>>> was loaded.  If you remove the "@" from the compile of
> >>>> overlays, then everything should work the same way it did
> >>>> before the commit.  This is the second way to avoid the
> >>>> load overlay error.
> >
> > Do I understand that correctly, that when I remove the "@" option
> > from the dtc calls, the same call should work both with an old
> > (pre-d1651b03c2df) and a new kernel? If the old kernel just ignored
> > the symbols, they were not used for anything, so it should not matter
> > whether they were contained in the overlay DTB or not, right?
> 
> I just mentioned that workaround as another temporary way to work
> around your specific case.  You should probably just forget I even
> mentioned it.
> 
> 
> >>>>
> >>>>
> >>>>> Thanks
> >>>>> Alexander
> >>>>> --
> >>>>> To unsubscribe from this list: send the line "unsubscribe devicetree"
> in
> >>>>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> >>>>> More majordomo info at  http://vger.kernel.org/majordomo-
> info.html
> >>>
> >>
> >
> >
> 
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Problem with commit to add overlay symbols to live device tree
       [not found]                         ` <5a3447ded9eb407989b5af4cc2ad4aab-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
@ 2017-11-13 19:48                           ` Frank Rowand
  0 siblings, 0 replies; 8+ messages in thread
From: Frank Rowand @ 2017-11-13 19:48 UTC (permalink / raw)
  To: Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w,
	frank.rowand-7U/KSKJipcs, robh-DgEjT+Ai2ygdnm+yROfE0A
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA

On 11/13/17 04:11, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
>> On 11/09/17 09:09, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
>>>> On 10/20/17 05:11, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
>>>>>> Hi Alexander,
>>>>>>
>>>>>> On 10/19/17 10:06, Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org wrote:
>>>>>>> Hi Frank, Rob,
>>>>>>>
>>>>>>> I ran some tests with kernel v4.14-rc2, where I came across an issue
>>>>>>> with your commit "of: overlay: add overlay symbols to live device
>>>>>>> tree" (d1651b03c2df75db8eda3fbcd3a07adb337ee8b0,
>>>>>>>
>>>>>>
>>>>
>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/d
>>>>>> rivers/of?h=v4.14-
>>>> rc5&id=d1651b03c2df75db8eda3fbcd3a07adb337ee8b0).
>>>>>>> I am not sure whether this is a problem with your change or whether I
>>>>>>> made a mistake somewhere.
>>>>>>>
>>>>>>> Without this commit, the following device tree overlay works fine on
>>>>>>> a Raspberry Pi:
>>>>>>>
>>>>>>> /dts-v1/;
>>>>>>> /plugin/;
>>>>>>>
>>>>>>> / {
>>>>>>> 	fragment@0 {
>>>>>>> 		target-path = "/soc/spi@7e204000";
>>>>>>> 		__overlay__ {
>>>>>>> 			#address-cells = <1>;
>>>>>>> 			#size-cells = <0>;
>>>>>>> 			status = "okay";
>>>>>>>
>>>>>>> 		        spidev1: spi@1 {
>>>>>>> 				compatible = "spidev";
>>>>>>> 				reg = <1>;
>>>>>>> 				spi-max-frequency = <5000000>;
>>>>>>> 			};
>>>>>>> 		};
>>>>>>> 	};
>>>>>>> };
>>>>>>>
>>>>>>> But with the commit, it is rejected:
>>>>>>>
>>>>>>> OF: overlay: no symbols in root of device tree.
>>>>>>> OF: overlay: of_build_overlay_info() failed for tree@/
>>>>>>> create_overlay: Failed to create overlay (err=-22)
>>>>>>>
>>>>>>> Only if I remove the spidev1 label, it continues to work with the
>>>>>>> commit (but this is not always possible in more complex overlays).
>>>>>>>
>>>>>>> I hope this does not make a difference, but I use the configfs
>>>>>>> interface to load the overlay, that is not part of mainline, but
>>>>>>> shipped by several distributions nonetheless (for example in the
>>>>>>> Raspberry Pi kernel,
>>>>>>>
>>>>>>
>>>>
>> https://github.com/raspberrypi/linux/commit/cccc24635da69799335566eb46
>>>>>> 4a4c9e1fb4a8ad).
>>>>>>>
>>>>>>>
>>>>>>> Could you tell me whether this change in behavior is intentional and
>>>>>>> whether I have to fix something in my usage?
>>>>>>
>>>>>> Yes, the change is intentional.
>>>>>>
>>>>>> If you are using overlays, the expectation is that the device tree
>>>>>> that was used to boot contains symbols (the paths of nodes that
>>>>>> have phandles) so that phandle references in the overlay can be
>>>>>> fixed up to match the values in the base devicetree.  Symbols
>>>>>> will be added to the device tree if if is compiled with the
>>>>>> "@" option.  This is the first method to avoid the overlay
>>>>>> load error.
>>>>>
>>>>> Ah, thanks, this does solve the problem. I use nothing special to
>>>>> generate the base devicetree, just "make dtbs". Would it make sense
>>>>> to add the "@" option to the kernel Makefile, so that symbols are
>>>>> added by default? Or does this have any downside? I'd suspect that
>>>>
>>>> Yes, there is a large downside.  Compiling with the "@" option will
>>>> increase the size of the DTB.  Most boards will not use overlays,
>>>> and in those cases this overhead has no value.  So "@" should be
>>>> opt-in, not default.
>>>
>>> I see. Is there a way (a config option maybe?) that I can use to get this
>> behavior without patching the Makefile?
>>
>> To compile a DTB with -@, you can specify the value of DTC_FLAGS
>> on the make command line.  For example:
>>
>>    DTC_FLAGS="-@" make qcom-apq8074-dragonboard.dtb
>>
>> This will work for arm.
> 
> I tried that for my Raspberry Pi 2, with the mainline kernel (so no Raspberry Pi specific patches, still v4.14-rc2). Unfortunately, with that DTB the machine does not boot anymore, there is no output at all from the kernel:
> 
> ---
> switch to partitions #0, OK
> mmc0 is current device
> Scanning mmc 0:1...
> Found U-Boot script /boot.scr
> reading /boot.scr
> 696 bytes read in 11 ms (61.5 KiB/s)
> ## Executing script at 02000000
> reading /zImage
> 6017520 bytes read in 791 ms (7.3 MiB/s)
> reading /dtbs/bcm2836-rpi-2-b.dtb
> 18795 bytes read in 188 ms (96.7 KiB/s)
> reading /initramfs-linux.img
> 4173703 bytes read in 546 ms (7.3 MiB/s)
> Kernel image @ 0x1000000 [ 0x000000 - 0x5bd1f0 ]
> ## Flattened Device Tree blob at 00000100
>    Booting using the fdt blob at 0x000100
>    reserving fdt memory region: addr=0 size=1000
>    Using Device Tree in place at 00000100, end 00007a6a
> 
> Starting kernel ...
> ---
> 
> Using an older DTB for the same kernel build works though.

I could interpret that sentence a couple of different ways, so I
want to clarify.  I'm not sure if by "older DTB" you mean a DTB
created from an older version of the kernel source.

If you build the DTB in v4.14-rc2, without the -@ flag, does that
boot successfully?  If so, how do the U-boot messages differ?

Later in this email, you say the DTB compiled with -@ is 18KB.
18 * 1024 = 18432 or 0x4800, which is a quite a bit smaller
than the U-boot message would imply ("in place at 00000100, end 00007a6a").
That may be a red-herring, or it might be a clue.  I don't know
how much data U-boot adds to the device tree, and I don't know
if that message means what I'm reading it to say.


> I've used the dtc to get back the source for both DTBs and compared
> those. They are identical, except for several (linux,)phandle
> properties that appeared in various nodes and the large __symbols__
> section.

If the new phandles are for nodes that have labels, where the labels
are not referenced elsewhere in the device tree source, then that
is an expected difference.  If compiled without the -@ flag then
dtc can discard unused phandles, but with the -@ flag dtc does not
know if an overlay might use the label, so it has to create a
__symbols__ node property for the label and create the phandle
in the labeled node.

One side effect of this is that the phandle values for other
nodes can change.  This should not matter because phandle values
used in other properties should be specified as phandle references,
not as integer values.  For example, < &my_label >.

It is legal syntax to specify an integer value as a phandle reference,
but doing so means the reference will break if the value of the
referenced phandle changes, for example if a new label is added
then the phandle numbers can change.  It is _not_ likely that
this is your problem, but it is one thing to check for.


> Also, the dtc generates two more warnings when parsing the
> new DTB, but I'm not sure whether those are significant:
> 
> Warning (clocks_property): property 'clocks' size (21) is invalid, expected multiple of 4 in node /__symbols__
> Warning (gpios_property): property 'gpio' size (19) is invalid, expected multiple of 4 in node /__symbols__

The two warnings can be ignored.  Those two properties have string
values in the __symbols__ node.  The checks are for the clocks and
gpio properties in normal device nodes, which would not have string
values.


> Can something else be broken in the DTB, that is not visible within
> the DTS?

Something else could be broken in the DTB, but that is not what I
would expect in this case (gut feel).


> Or could this be a size issue? The new DTB is ~6KB larger
> than the old one (18KB vs. 12KB).
It could definitely be a size issue.  In theory, there could be a limit in
the bootloader or the kernel.  In current implementation, I do not know if
this is actually a possible problem or not, without looking at the source.

The U-boot message "reserving fdt memory region: addr=0 size=1000" might
be a clue.  What units is size in?


> Any idea how to debug this further?

I don't know if there are any U-boot features that might help, but it's
worth checking.

For the kernel, look into CONFIG_DEBUG_LL and adding earlyprintk info to
the kernel command line.


>> For some other architectures, you may want to
>> add additional flags to DTC_FLAGS, and for microblaze this will not work
>> with the current makefile (the arch makefiles should probably be changed
>> to be: DTC_FLAGS += ... or to remove the "-p 1024" if no longer needed):
>>
>>   $ git grep DTC_FLAGS | grep Makefile: | grep arch
>>   arch/c6x/boot/dts/Makefile:DTC_FLAGS ?= -p 1024
>>   arch/microblaze/boot/dts/Makefile:DTC_FLAGS := -p 1024
>>   arch/openrisc/boot/dts/Makefile:#DTC_FLAGS ?= -p 1024
>>   arch/powerpc/boot/Makefile:DTC_FLAGS	?= -p 1024
>>
>>
>>>>> many more people will be hit by this change, since most tutorials for
>>>>> overlays that I have seen include the "@" option for the dtc calls.>
>>>>>> If you compile the overlay with the "@" option then symbols
>>>>>> will be added to the overlay DTB.  Previous to commit
>>>>>> d1651b03c2df, these symbols would be ignored when an overlay
>>>>>> was loaded.  If you remove the "@" from the compile of
>>>>>> overlays, then everything should work the same way it did
>>>>>> before the commit.  This is the second way to avoid the
>>>>>> load overlay error.
>>>
>>> Do I understand that correctly, that when I remove the "@" option
>>> from the dtc calls, the same call should work both with an old
>>> (pre-d1651b03c2df) and a new kernel? If the old kernel just ignored
>>> the symbols, they were not used for anything, so it should not matter
>>> whether they were contained in the overlay DTB or not, right?
>>
>> I just mentioned that workaround as another temporary way to work
>> around your specific case.  You should probably just forget I even
>> mentioned it.
>>
>>
>>>>>>
>>>>>>
>>>>>>> Thanks
>>>>>>> Alexander
>>>>>>> --
>>>>>>> To unsubscribe from this list: send the line "unsubscribe devicetree"
>> in
>>>>>>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>>>>>>> More majordomo info at  http://vger.kernel.org/majordomo-
>> info.html
>>>>>
>>>>
>>>
>>>
>>
> 

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-11-13 19:48 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-19 17:06 Problem with commit to add overlay symbols to live device tree Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w
     [not found] ` <85c5a40bb6eb4d4ebe522b3034528a36-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
2017-10-19 19:53   ` Frank Rowand
     [not found]     ` <59E9029D.1030700-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-10-20 12:11       ` Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w
     [not found]         ` <d0bd4312e9314c8ba6c56d800d07c0a9-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
2017-10-20 20:57           ` Frank Rowand
     [not found]             ` <59EA6348.5020205-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-11-09 17:09               ` Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w
     [not found]                 ` <c4deba835169411ea2645c27c734dd31-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
2017-11-09 20:02                   ` Frank Rowand
     [not found]                     ` <a444bccd-1d42-44b9-398c-095fb4fb9055-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-11-13 12:11                       ` Alexander.Steffen-d0qZbvYSIPpWk0Htik3J/w
     [not found]                         ` <5a3447ded9eb407989b5af4cc2ad4aab-d0qZbvYSIPpWk0Htik3J/w@public.gmane.org>
2017-11-13 19:48                           ` Frank Rowand

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.