Devicetree
 help / color / mirror / Atom feed
From: Jon Smirl <jonsmirl-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Russell King - ARM Linux <linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>
Cc: devicetree-discuss
	<devicetree-discuss-mnsaURCQ41sdnm+yROfE0A@public.gmane.org>,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel-xIg/pKzrS19vn6HldHNs0ANdhmdF6hFW@public.gmane.org,
	Scott Wood <scottwood-KZfg59tc24xl57MIdRCFDg@public.gmane.org>,
	Janboe Ye <yuan-bo.ye-3WKxDLwmzFNWk0Htik3J/w@public.gmane.org>,
	Timur Tabi <timur-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
Subject: Re: [RFC] [PATCH] Device Tree on ARM platform
Date: Thu, 28 May 2009 08:47:37 -0400	[thread overview]
Message-ID: <9e4733910905280547w7ee65d40yb4b3ab9559e14dae@mail.gmail.com> (raw)
In-Reply-To: <20090528091513.GA14789-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>

On Thu, May 28, 2009 at 5:15 AM, Russell King - ARM Linux
<linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org> wrote:
> On Thu, May 28, 2009 at 05:37:16PM +1000, Benjamin Herrenschmidt wrote:
>> On Wed, 2009-05-27 at 18:56 +0100, Russell King wrote:
>> >
>> > smc91x is a prime example of the kind of information drivers need - base
>> > address and irq are very much insufficient to describe how this device is
>> > connected.  There's much more information required to specify this device
>> > fully, and throwing it into the driver doesn't work.  We've been there
>> > and proven that point.
>>
>> The device-tree is a very nice and convenient way to convey all the
>> informations the driver need straight to the driver without any platform
>> code in the middle :-)
>
> I'm still uncertain whether that's actually a true statement.  For some
> cases, of course it's true, but I have a nasty suspicion that we have
> corner cases where OF won't cope well with.
>
> As I see it, if we were to convert to OF, we're boxing ourselves in to
> a corner that would be extremely difficult to get out of.  We would
> never be able to step back from OF.  Lets take an example.  If we were
> to convert PXA to OF including all the PXA SoC drivers, and a board
> configuration came along which required hacks to a driver.  Later on
> we find that most platform authors are applying similar hacks because
> their hardware is subtly different but those differences can't be
> expressed via OF.  At this point, what do we do?  We can't say "well,
> OF doesn't work well on this platform, we want to get rid of it" that
> would be extremely difficult to impossible to do.
>
>
> For example, how would an IrDA transceiver be expressed in OF?
>
> Obviously it would have to start off with some sort of UART definition
> for SIR, with a separate (and sometimes unrelated in terms of register
> space and SoC pin configuration) FIR unit.  Whether FIR is used or not
> is platform specific.  So far so good, I don't see a problem yet.
>
> We then have one or two GPIOs doing some function - eg, one GPIO might
> be a simple power on/off while the other controls FIR or SIR mode in
> the transceiver itself.  Or the two lines might be a bit combination
> which selects 'off', 'on + sir', 'on + fir' modes depending on the
> transceiver used.  In the case of one GPIO it might be the mode select
> or it might be the power control.
>
> I suspect this can be expressed by having some sort of OF table specifying
> several gpios & their value for each combination of power & mode...
> except some platforms have special control registers in FPGAs which do
> not appear as GPIOs... so how are those expressed?  We have function
> pointers back into platform code to cope with this at present.
>
>
> Another example - LCD displays.  Some platforms need a certain sequence
> of GPIO activations with delays between when powering up and down the
> LCD display.  Currently we express this in the platform support file and
> pass a function pointer into the LCD Driver.  Can this be expressed with
> OF?
>
>
> Another example - backlights.  Some platforms need to twiddle a GPIO
> at a certain point in the brightness scale and reset the PWM, and they
> currently do this via an (optional) function pointer in the generic PWM
> backlight driver.  Can this be expressed with OF?
>
>
> That's just a few examples of areas where we haven't been able to describe
> platforms using pure data-based descriptions, and they're all things that
> we don't want to stuff into the individual drivers (doing so involves lots
> of ifdefs and namespace pollution - we saw that in 2.4 kernels.)
>
> In order for me to be convinced that OF is not going to cause us grief,
> I'd like to see a range of platforms converted to OF to check that we're
> not going to find any unexpected problems - eg, a load of PXA platforms,
> particularly those with the above kinds of problems.

I've also run into the problem of tying very machine specific code to
a device tree. This is coupled to the desire to have function pointer
callbacks.  I agree that this is a problem and the OF aware platforms
have the same problem. However, I don't think the problem has anything
to do with device trees, instead I believe the problem is internal to
Linux.

In general we're missing a design for a single file that holds all of
the machine specific code. There isn't any simple way right now to put
all of this code into a single file. In the current model this code
gets scattered all over the place.

If you look at arch/powerpc/platforms/... you'll find a few machine
specific files in there. That concept could be extended. After the
device tree loads, the machine specific file runs if there is one. At
that point, the machine specific code could insert function pointers
into the device tree. Later when the device drivers load they could
find these pointers and use them to implement machine specific
overrides. All of this machine specific override code would live in a
single file.

For ARM the model could be to use the machine number to load a device
tree built into the kernel (these trees would slowly migrate into the
firmware). After the device tree is selected the machine specific code
would add the override function pointers. Unified OF aware device
drivers would load using the device tree. These drivers would find the
function pointers and use them to implement machine specific features.

The function pointers also provides a way to migrate away from machine
specific code.  If we discover some machines specific code really
should be common code, the function pointer can be eliminated since
all of the support is in the kernel and not in the firmware.


>
> And no, Dave Miller saying "I've been using this for 15 years on Sparc"
> "Three architectures are using it" isn't going to convince me.  The proof
> is in the code, not the waffle.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>



-- 
Jon Smirl
jonsmirl-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org

  parent reply	other threads:[~2009-05-28 12:47 UTC|newest]

Thread overview: 142+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1243408083.13460.14.camel@debian-nb>
2009-05-27 14:27 ` [RFC] [PATCH] Device Tree on ARM platform Grant Likely
2009-05-27 14:39   ` Timur Tabi
     [not found]     ` <ed82fe3e0905270739k38018c87ka11f62c5977e45fb-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-27 15:05       ` Robert Schwebel
2009-05-27 16:32         ` Mark Brown
2009-05-27 18:50           ` Jon Smirl
     [not found]             ` <9e4733910905271150q1d51538draa8d039c8b147c05-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-27 22:24               ` Mark Brown
     [not found]                 ` <20090527222420.GC5591-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2009-05-28  0:04                   ` Jon Smirl
2009-05-28 13:07                     ` Mark Brown
     [not found]           ` <20090527163223.GE1970-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2009-05-27 20:42             ` Grant Likely
     [not found]               ` <fa686aa40905271342v5bc51665tb9b5d92950a43b82-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-27 21:38                 ` Mark Brown
     [not found]         ` <20090527150527.GK6805-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-27 15:39           ` Grant Likely
     [not found]             ` <fa686aa40905270839m375bbdacqb1acb1be0a2d2da0-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-27 16:20               ` Robert Schwebel
     [not found]                 ` <20090527162000.GM6805-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-27 20:35                   ` Grant Likely
     [not found]                     ` <fa686aa40905271335o1165419hda2334bef42aa3f-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-27 23:48                       ` Robert Schwebel
     [not found]                         ` <20090527234801.GP6805-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-27 23:52                           ` David Miller
2009-05-27 23:58                           ` Scott Wood
     [not found]                             ` <4A1DD3A0.3010501-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2009-05-28  0:02                               ` David Miller
2009-05-28  0:07                               ` Robert Schwebel
     [not found]                                 ` <20090528000707.GR6805-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-28  0:15                                   ` David Miller
     [not found]                                     ` <20090527.171525.204909140.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-28 10:37                                       ` Mark Brown
     [not found]                                         ` <20090528103745.GA19523-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2009-05-28 22:32                                           ` Grant Likely
2009-05-29 12:34                                             ` Mark Brown
     [not found]                                               ` <20090529123411.GB14650-HF5t3jzXg/6ND3a5+9QAFujbO/Zr0HzV@public.gmane.org>
2009-05-30  9:52                                                 ` Benjamin Herrenschmidt
2009-05-30 10:21                                                   ` Russell King - ARM Linux
     [not found]                                                     ` <20090530102153.GA6910-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2009-05-30 17:56                                                       ` Mark Brown
2009-06-02  7:57                                                     ` Holger Schurig
     [not found]                                                       ` <200906020957.20493.hs4233-x6+DxXLjN1AJvtFkdXX2Hg4jNU5vUVPG@public.gmane.org>
2009-06-02  9:48                                                         ` Mark Brown
2009-05-28  2:57                                   ` David Gibson
     [not found]                                     ` <20090528025718.GC1464-787xzQ0H9iRg7VrjXcPTGA@public.gmane.org>
2009-05-28  3:36                                       ` Grant Likely
2009-05-28  3:29                                   ` Grant Likely
2009-05-28  9:51                                     ` Wolfgang Denk
     [not found]                                       ` <20090528095126.99DB4832E416-C2Gvrrd9BC/j/ljBK/0BTg@public.gmane.org>
2009-05-28  9:59                                         ` David Miller
2009-05-28 10:13                                         ` Robert Schwebel
     [not found]                                           ` <20090528101339.GV6805-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-28 13:33                                             ` Jon Smirl
     [not found]                                               ` <9e4733910905280633u15546189q37a4b4080158249c-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-28 13:42                                                 ` Robert Schwebel
2009-05-28  9:38                                 ` Wolfgang Denk
2009-05-28  3:21                               ` Grant Likely
2009-05-28  3:16                           ` Grant Likely
2009-05-28  0:55                   ` Stephen Neuendorffer
2009-05-27 18:56             ` Alexander Clouter
     [not found]               ` <2ve0f6-8fn.ln1-kuKQLpWnKMRB2HF5bZY0Orm56z/blAVA@public.gmane.org>
2009-05-27 20:46                 ` Grant Likely
2009-05-27 21:32                   ` Alexander Clouter
2009-05-28 14:29                     ` Dmitry Eremin-Solenikov
2009-05-27 15:41           ` Peter Korsgaard
     [not found]             ` <87vdnm8sec.fsf-uXGAPMMVk8amE9MCos8gUmSdvHPH+/yF@public.gmane.org>
2009-05-27 16:23               ` Scott Wood
2009-05-27 17:56                 ` Russell King
     [not found]                   ` <20090527175609.GB31861-f404yB8NqCZvn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2009-05-27 19:08                     ` Scott Wood
     [not found]                       ` <4A1D8FBA.6040802-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2009-05-27 19:13                         ` Jon Smirl
2009-05-27 19:21                           ` Russell King - ARM Linux
     [not found]                             ` <20090527192116.GA31110-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2009-05-27 19:39                               ` Jean-Christophe PLAGNIOL-VILLARD
     [not found]                                 ` <20090527193927.GD30039-RQcB7r2h9QmfDR2tN2SG5Ni2O/JbrIOy@public.gmane.org>
2009-05-27 20:22                                   ` Grant Likely
     [not found]                                     ` <fa686aa40905271322x2f62c3dcs355374b30b4db3ca-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-27 20:19                                       ` Jean-Christophe PLAGNIOL-VILLARD
     [not found]                                         ` <20090527201951.GF30039-RQcB7r2h9QmfDR2tN2SG5Ni2O/JbrIOy@public.gmane.org>
2009-05-27 20:54                                           ` Grant Likely
     [not found]                                             ` <fa686aa40905271354y50b9583cp9f53c35354edc285-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-28  3:04                                               ` David Gibson
2009-05-28  7:58                                               ` Benjamin Herrenschmidt
2009-05-27 23:57                                       ` Robert Schwebel
     [not found]                                         ` <20090527235704.GQ6805-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-28  0:00                                           ` David Miller
2009-05-28  3:21                                           ` Grant Likely
     [not found]                                             ` <fa686aa40905272021w18a148caqd2b73c4448da2b28-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-28  6:34                                               ` Wolfram Sang
     [not found]                                                 ` <20090528063445.GA12004-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-28  7:55                                                   ` Benjamin Herrenschmidt
2009-05-28 13:34                                                   ` Grant Likely
2009-05-28  7:48                                           ` Benjamin Herrenschmidt
2009-05-28 14:22                                     ` Ben Dooks
2009-05-27 20:28                                   ` David Miller
     [not found]                                     ` <20090527.132827.65331718.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-27 20:31                                       ` Jean-Christophe PLAGNIOL-VILLARD
2009-05-28  2:52                               ` David Gibson
     [not found]                                 ` <20090528025258.GB1464-787xzQ0H9iRg7VrjXcPTGA@public.gmane.org>
2009-05-28  4:27                                   ` David Miller
     [not found]                                     ` <20090527.212730.183576278.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-28  4:47                                       ` David Gibson
     [not found]                                         ` <20090528044732.GK1464-787xzQ0H9iRg7VrjXcPTGA@public.gmane.org>
2009-05-28  5:31                                           ` David Miller
     [not found]                                             ` <20090527.223147.94364683.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-28  5:47                                               ` David Gibson
2009-05-28  7:47                               ` Benjamin Herrenschmidt
2009-05-28 14:17                           ` Ben Dooks
2009-05-28 14:24                             ` Robert Schwebel
     [not found]                             ` <20090528141743.GA16199-SMNkleLxa3Z6Wcw2j4pizdi2O/JbrIOy@public.gmane.org>
2009-05-28 14:47                               ` Grant Likely
2009-05-27 19:29                         ` Russell King
2009-05-27 19:47                           ` Sergei Shtylyov
     [not found]                           ` <20090527192909.GA32398-f404yB8NqCZvn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2009-05-27 19:53                             ` Scott Wood
     [not found]                               ` <4A1D9A1E.80603-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2009-05-27 19:54                                 ` Timur Tabi
     [not found]                                   ` <4A1D9A66.5020002-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2009-05-27 20:25                                     ` David Miller
     [not found]                                       ` <20090527.132553.40558501.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-27 20:27                                         ` Timur Tabi
     [not found]                                           ` <4A1DA24D.5000101-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2009-05-27 20:55                                             ` David Miller
     [not found]                                               ` <20090527.135500.217447785.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-27 23:26                                                 ` Robert Schwebel
2009-05-27 20:35                                       ` M. Warner Losh
2009-05-27 20:14                                 ` Jean-Christophe PLAGNIOL-VILLARD
2009-05-27 20:23                             ` David Miller
     [not found]                               ` <20090527.132328.78091350.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-27 20:27                                 ` Jean-Christophe PLAGNIOL-VILLARD
     [not found]                                   ` <20090527202701.GA16219-RQcB7r2h9QmfDR2tN2SG5Ni2O/JbrIOy@public.gmane.org>
2009-05-27 20:48                                     ` Josh Boyer
2009-05-27 20:56                                     ` David Miller
2009-05-27 20:52                             ` Mark Brown
     [not found]                               ` <20090527205218.GA5591-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2009-05-27 21:05                                 ` Grant Likely
     [not found]                                   ` <fa686aa40905271405pc2f1738gc8dd139f61a0e27-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-28  0:11                                     ` Jon Smirl
2009-05-28 12:43                                     ` Sascha Hauer
2009-05-28 13:18                                       ` Thomas Gleixner
     [not found]                                         ` <alpine.LFD.2.00.0905281457170.3397-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-05-28 15:04                                           ` Sascha Hauer
     [not found]                                             ` <20090528150409.GO22742-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-28 15:27                                               ` Thomas Gleixner
2009-05-29  0:51                                               ` Benjamin Herrenschmidt
2009-05-29  7:52                                                 ` Sascha Hauer
     [not found]                                                   ` <20090529075238.GC24565-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-29  9:08                                                     ` Benjamin Herrenschmidt
2009-05-31 10:52                                                 ` Russell King - ARM Linux
     [not found]                                       ` <20090528124307.GN22742-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-05-28 14:31                                         ` Grant Likely
2009-05-28  3:25                                 ` David Gibson
2009-05-28  8:10                             ` Benjamin Herrenschmidt
2009-05-28  7:38                         ` Benjamin Herrenschmidt
2009-05-27 20:43                     ` Grant Likely
2009-05-28  7:37                     ` Benjamin Herrenschmidt
2009-05-28  9:15                       ` Russell King - ARM Linux
     [not found]                         ` <20090528091513.GA14789-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2009-05-28  9:57                           ` David Miller
     [not found]                             ` <20090528.025739.16559619.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-28 10:11                               ` Benjamin Herrenschmidt
2009-05-28 10:33                                 ` Robert Schwebel
2009-05-28 10:34                                 ` Russell King - ARM Linux
     [not found]                                   ` <20090528103421.GC14789-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2009-05-28 22:33                                     ` Benjamin Herrenschmidt
2009-05-28 10:14                               ` Russell King - ARM Linux
     [not found]                                 ` <20090528101440.GB14789-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2009-05-28 21:30                                   ` David Miller
2009-05-28 12:17                             ` Dmitry Eremin-Solenikov
2009-05-28 12:48                               ` David Gibson
     [not found]                                 ` <20090528124817.GB4565-787xzQ0H9iRg7VrjXcPTGA@public.gmane.org>
2009-05-28 12:55                                   ` David Gibson
2009-05-28 14:13                               ` Grant Likely
     [not found]                                 ` <fa686aa40905280713u2b3ef5fvbe3d58ccdb629b60-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-28 16:53                                   ` Russell King - ARM Linux
2009-05-28 17:05                                     ` Grant Likely
2009-05-28 18:46                                     ` Alexander Clouter
2009-05-28 22:21                                   ` Benjamin Herrenschmidt
2009-05-29  1:39                                     ` David Gibson
     [not found]                                       ` <20090529013908.GA7831-787xzQ0H9iRg7VrjXcPTGA@public.gmane.org>
2009-05-29  1:59                                         ` Mitch Bradley
     [not found]                                           ` <4A1F4189.8060702-D5eQfiDGL7eakBO8gow8eQ@public.gmane.org>
2009-05-29  3:52                                             ` Benjamin Herrenschmidt
2009-05-29  4:11                                               ` David Miller
2009-05-29  4:11                                             ` David Miller
     [not found]                                               ` <20090528.211123.46272556.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2009-05-29  4:56                                                 ` Benjamin Herrenschmidt
2009-05-29  5:11                                                   ` David Miller
2009-05-28 10:00                           ` Benjamin Herrenschmidt
2009-05-28 11:44                           ` Jean-Christophe PLAGNIOL-VILLARD
2009-05-28 12:47                           ` Jon Smirl [this message]
     [not found]                             ` <9e4733910905280547w7ee65d40yb4b3ab9559e14dae-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-28 14:39                               ` Grant Likely
2009-05-28 14:54                           ` Grant Likely
2009-05-27 18:26                 ` Peter Korsgaard
2009-05-28  3:02           ` David Gibson
2009-05-28  7:32           ` Benjamin Herrenschmidt
2009-05-28 13:38             ` Grant Likely
2009-05-27 22:01       ` Mitch Bradley
     [not found]         ` <4A1DB855.2030608-D5eQfiDGL7eakBO8gow8eQ@public.gmane.org>
2009-05-28  8:17           ` Benjamin Herrenschmidt
2009-05-27 17:44   ` Russell King
     [not found]     ` <20090527174440.GA31861-f404yB8NqCZvn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2009-05-27 17:52       ` Grant Likely
     [not found]         ` <fa686aa40905271052k3f55eb73k2cb0c3cff3c94d7b-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-05-28  3:44           ` David Gibson

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=9e4733910905280547w7ee65d40yb4b3ab9559e14dae@mail.gmail.com \
    --to=jonsmirl-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=devicetree-discuss-mnsaURCQ41sdnm+yROfE0A@public.gmane.org \
    --cc=linux-arm-kernel-xIg/pKzrS19vn6HldHNs0ANdhmdF6hFW@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
    --cc=scottwood-KZfg59tc24xl57MIdRCFDg@public.gmane.org \
    --cc=timur-KZfg59tc24xl57MIdRCFDg@public.gmane.org \
    --cc=yuan-bo.ye-3WKxDLwmzFNWk0Htik3J/w@public.gmane.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox