From: David Gibson <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org>
To: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: Simon Glass <sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>,
Devicetree Compiler
<devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH v4 0/4] Introduce fdtgrep for subsetting and hashing FDTs
Date: Thu, 17 Feb 2022 16:44:59 +1100 [thread overview]
Message-ID: <Yg3g29VZnXHA4ban@yekko> (raw)
In-Reply-To: <CAL_JsqJkG84jnn3OiC+aYOdqRvYcMWzfEg4r-74bbFsGC-4img-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 4179 bytes --]
On Wed, Feb 09, 2022 at 06:19:01PM -0600, Rob Herring wrote:
> On Wed, Feb 9, 2022 at 10:04 AM Simon Glass <sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org> wrote:
> >
> > +Rob Herring
> >
> > Hi David and Rob,
> >
> > On Tue, 8 Feb 2022 at 23:31, David Gibson <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org> wrote:
> > >
> > > On Tue, Feb 08, 2022 at 02:43:44PM -0700, Simon Glass wrote:
> > > > Hi David,
> > > >
> > > > On Sun, 6 Feb 2022 at 21:10, David Gibson <david-xT8FGy+AXnRB3Ne2BGzF6ryscVyMRj84@public.gmane.org.au> wrote:
> > > > >
> > > > > On Sun, Nov 07, 2021 at 03:43:42PM -0700, Simon Glass wrote:
> > > > > > Note: This was last sent 6 years ago. It really belongs upstream and I
> > > > > > believe it is useful functionality for libfdt, so I am trying again.
> > > > > > Please take a fresh look at this. It is cut back from the previous series.
> > > > > > If accepted we can expand the feature set piece by piece from here.
> > > > >
> > > > > Sorry it's taken me so long to look at this. Again. I can't dispute
> > > > > that it's useful for certain use cases. But as for belonging
> > > > > upstream...
> > > > >
> > > > > This series adds quite a lot of conceptual complexity. It introduces
> > > > > a new data structure, new state structures, a entirely new mode of
> > > > > working with a tree and a bunch of configuration parameter types on
> > > > > top of the new entry points and new tool. I still find the semantics
> > > > > of the different criteria for inclusion/exclusion from a region pretty
> > > > > bewildering.
> > > >
> > > > It is sufficient to achieve its purpose, but I don't think it is any
> > > > more complex than that.
> > >
> > > I don't disagree, but that still ends up being quite complex.
> > >
> > > > > That makes me pretty disinclined to add this to the scope of
> > > > > maintenance for libfdt. As you've probably noticed, I'm already
> > > > > struggling to keep on top of maintenance for the existing libfdt
> > > > > interfaces. AFAICT everything here can be implemented fairly
> > > > > naturally in terms of libfdt's existing public interface. so I'm not
> > > > > really seeing a compelling reason for this to be merged into libfdt,
> > > > > rather than being its own separate library that depends on libfdt.
> > > >
> > > > Are you suggesting:
> > > >
> > > > 1. that libfdt should move to a new maintainer
> > > > 2. that you would accept these patches if someone else maintained them
> > > > within the libfdt tree
> > > > 3. that we set up a separate tree to fork libfdt, with these changes in
> > > > 4. that we put these changes in a separate tree?
> > >
> > > Right now (4) is what I'm suggesting. Or to be more precise, creating
> > > a new repo with "libfdtrange" or whatever, that depends on libfdt.
> > >
> > > (1) and/or (2) are potentially worthy of further discussion. (3) is
> > > just a bad idea, IMO.
> >
> > Where are things going with device tree validation in terms of
> > source-code location?
>
> Right now it doesn't use libfdt at all, but that's what I'm working on
> if we can get pieces in place to package pylibfdt sorted out. If not,
> I may be doing 3 just for packaging.
It doesn't seem to me that the validation should be using libfdt,
except in a limited capacity for an initial read. Schema checking is
likely to do lots of random access to various nodes and properties, so
pre-reading the dtb into a "live" tree format seems like it would be a
good idea.
> > Is it likely there might be a separate tree for
> > that, which could perhaps hold other libfdt dependent things?
>
> It is a separate tree[1], but it's a pure python project and I don't
> think it's the right place for a C library. But we can setup a new
> project in the GH devicetree.org group[2] if you want.
>
> Rob
>
> [1] https://github.com/devicetree-org/dt-schema/
> [2] https://github.com/devicetree-org/
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2022-02-17 5:44 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-07 22:43 [PATCH v4 0/4] Introduce fdtgrep for subsetting and hashing FDTs Simon Glass
[not found] ` <20211107224346.3181320-1-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2021-11-07 22:43 ` [PATCH v4 1/4] README: Explain how to add a new API function Simon Glass
[not found] ` <20211107224346.3181320-2-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2021-12-28 9:14 ` David Gibson
2021-11-07 22:43 ` [PATCH v4 2/4] libfdt: Add functions to find regions in an FDT Simon Glass
2021-11-07 22:43 ` [PATCH v4 3/4] Add fdtgrep to grep and hash FDTs Simon Glass
2021-11-07 22:43 ` [PATCH v4 4/4] Add tests for fdtgrep Simon Glass
2022-02-07 4:09 ` [PATCH v4 0/4] Introduce fdtgrep for subsetting and hashing FDTs David Gibson
2022-02-08 21:43 ` Simon Glass
[not found] ` <CAPnjgZ2HZCtfhF2BhUYk0a-UOVrMf0i_uQrbGPhWJoaq1ZtW1w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-02-09 4:05 ` David Gibson
2022-02-09 16:04 ` Simon Glass
[not found] ` <CAPnjgZ2-tgy-L15S=p4dajpF+hSwX-McPSU3Fez2=cXOqXypZQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-02-10 0:19 ` Rob Herring
[not found] ` <CAL_JsqJkG84jnn3OiC+aYOdqRvYcMWzfEg4r-74bbFsGC-4img-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-02-17 5:44 ` David Gibson [this message]
2022-02-17 20:37 ` Simon Glass
[not found] ` <CAPnjgZ2OjgXxQ0HxC_pBe+yZnmbJL-QYd+jDDQ5eacO=vkerNQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-02-17 22:09 ` Rob Herring
[not found] ` <CAL_JsqLkOMELMjCNJ_xSt7hdVvHx5dMfrifzRWFuZQkGcsXwjQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-02-17 22:44 ` Simon Glass
[not found] ` <CAPnjgZ1TM751YD-VOgk-+Kc--shAt4=1FaFdTyGGn5_27P0s0g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-03-12 2:24 ` Simon Glass
[not found] ` <CAPnjgZ2HNTfdBz0jp0sqFhFN=sduTjkJR-5uVABvfZ_+O3Qj6Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-03-14 16:22 ` Rob Herring
[not found] ` <CAL_Jsq+KzcUasbCOagXoLopDrNHrQQ5j0nE+CsgK_W1f8y9+0w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-03-14 16:38 ` Simon Glass
[not found] ` <CAPnjgZ0cf=qVS=C-mno_0aB0gGXYu06LBoVp1n8QQT=mFfaj9g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-03-14 17:11 ` Rob Herring
[not found] ` <CAL_JsqLMUrEoNXh9y4CpOgbcSsK1SRUPBoeDvd4+Vx9pkyXO2Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-03-14 17:44 ` Simon Glass
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=Yg3g29VZnXHA4ban@yekko \
--to=david-xt8fgy+axnrb3ne2bgzf6laj5h9x9tb+@public.gmane.org \
--cc=devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=sjg-F7+t8E8rja9g9hUCZPvPmw@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