All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chris Packham <Chris.Packham@alliedtelesis.co.nz>
To: Frank Rowand <frowand.list@gmail.com>,
	"pantelis.antoniou@konsulko.com" <pantelis.antoniou@konsulko.com>,
	"robh+dt@kernel.org" <robh+dt@kernel.org>
Cc: "devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Hamish Martin <Hamish.Martin@alliedtelesis.co.nz>
Subject: Re: Using device tree overlays in Linux
Date: Mon, 8 Apr 2019 01:27:40 +0000	[thread overview]
Message-ID: <224942bd629e41eaa23ab327b015134e@svr-chch-ex1.atlnz.lc> (raw)
In-Reply-To: 61185ee9-4bee-eec3-f0d0-6d6760595845@gmail.com

Hi Frank,

On 8/04/19 1:05 PM, Frank Rowand wrote:
> Hi Chris,
> 
> On 4/3/19 6:50 PM, Chris Packham wrote:
>> Hi,
>>
>> I'm implementing support for some modular Linux based systems using
>> device tree overlays. The code is working but it seems a little more
>> fiddly that than it should be so I'm wondering if I'm doing it right.
> 
> Let me start by saying that I strongly discourage using device tree
> overlays in the Linux kernel until the support is more baked.  For
> some info on how unbaked overlays are, see:
> 
>     https://elinux.org/Frank%27s_Evolving_Overlay_Thoughts
> 
> You should consider applying overlays in the Linux kernel to be
> fragile at best.
> 
> If you can not figure out how to solve your needs without using
> overlays, then having the boot loader apply the overlay instead
> of the kernel applying the overlay avoids most of the issues.
> 

Consider us beta-testers :).

We've got a few modular systems that have miscellaneous devices that we 
want to be hot-swapping at run time. For the most part the devices in 
question are i2c based. We want to use overlays as it saves manually 
instantiating devices and avoids needing specific knowledge of the base 
platform.

>> An example of what I'm doing is
>>
>>
>> arch/arm/boot/dts/Makefile:
>> DTC_FLAGS_myboard += -@
>>
>> drivers/foo/Makefile:
>> obj-y += myplugin.dtb.o
>> obj-y += mydriver.o
>>
>> drivers/foo/myplugin.dts:
>> /dts-v1/;
>> /plugin/;
>> /{
>> 	fragment@0 {
>> 		target = <&i2c0>;
>> 		__overlay__ {
>> 			gpio@74 {
>> 				compatible = "nxp,pca9539";
>> 				reg = <0x74>
>> 			};
>> 		};
>> 	};
>> };
> 
> The fragment and __overlay__ nodes are implementation, subject to
> change, and should not be hand coded.  The dtc compiler has added
> features to allow a more generic source code.  The above should be:
> 
> // SPDX-License-Identifier: GPL-2.0
> /dts-v1/;
> /plugin/;
> 
> &i2c0 {
> 	gpio@74 {
> 		compatible = "nxp,pca9539";
> 		reg = <0x74>;
> 	};
> };
> 
> (Not compiled, not tested.)
> 
> The rcar overlay sources were merged before dtc was updated to
> handle this new syntax, so they are not a good example for
> how to write an overlay.

OK thanks. I suspected as much. I'll update my code based on your example.

>> drivers/foo/mydriver.c:
>> extern uint8_t __dtb_myplugin_begin[];
>> extern uint8_t __dtb_myplugin_end[];
>>
>> int mydriver_probe(struct platform_device *pdev)
>> {
>> 	u32 size = __dtb_myplugin_end - __dtb_myplugin_begin;
>> 	int overlay_id;
>> 	int ret;
>> 	
>> 	ret = of_overlay_fdt_apply(__dtb_myplugin_begin,
>> 				   size, &overlay_id);
>> 	return ret;
>> }
> 
> I'm guessing that you have simplified your use case to make it easier to
> describe (thank you for that).  But that also makes it harder to understand
> the use case, and whether this is a good solution.  Can you describe your
> use case in some more detail?

As I said above we have a few different modular systems we're trying to 
support. But they all do basically the same thing.

The insertion of a module is detected based on a gpio line being asserted.

Then we identify what was just inserted, the details vary a little per 
platform but in one instance we load an overlay that has instantiates an 
i2c eeprom identifying the module.

Once we know which specific module has been inserted based on the data 
in the eeprom we load another overlay that instantiates the rest of the 
devices on that module.

>> The first issue is that I need to add -@ to the DTC_FLAGS for my board
>> dtb. I kind of understand that I only need -@ if my overlay targets
>> something symbolic so I might not need it but I was surprised that there
>> wasn't a Kconfig option that makes this happen automatically.
>>
>> externing things in C files makes checkpatch.pl complain. I see the
>> of/unittests.c and rcar_du_of.c hide this with a macro. I was again
>> surprised that there wasn't a common macro to declare these.
> 
> unittests.c should not be used as a model of how to code for devicetree.
> There are some hacks that are needed to be able to test, but should not
> be used by normal drivers.
> 
> The rcar use of overlays is a temporary hack to provide backward
> compatibility.  The intent is to drop this code once the backward
> compatibility window ends.

Yes I suspected as much.

> The long-term intent (once enough of the overlay code is in place) is
> to provide an overlay loader than can apply an overlay .dtb from a file.

Would that be a kernel helper or driven via udev?

  reply	other threads:[~2019-04-08  1:27 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-04  1:50 Using device tree overlays in Linux Chris Packham
2019-04-06  6:07 ` Rob Herring
2019-04-08  1:05 ` Frank Rowand
2019-04-08  1:27   ` Chris Packham [this message]
2019-04-09 19:19     ` Frank Rowand
2019-04-09 20:54       ` Chris Packham
2019-04-09 19:33     ` Frank Rowand
2019-04-09 20:47       ` Chris Packham

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=224942bd629e41eaa23ab327b015134e@svr-chch-ex1.atlnz.lc \
    --to=chris.packham@alliedtelesis.co.nz \
    --cc=Hamish.Martin@alliedtelesis.co.nz \
    --cc=devicetree@vger.kernel.org \
    --cc=frowand.list@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pantelis.antoniou@konsulko.com \
    --cc=robh+dt@kernel.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.