devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org>
To: Anton Staaf <robotboy-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
Subject: Re: [PATCH v4 2/3] dtc: Support character literals in cell lists
Date: Tue, 20 Sep 2011 13:34:41 +1000	[thread overview]
Message-ID: <20110920033441.GI29197@yookeroo.fritz.box> (raw)
In-Reply-To: <CAF6FioWTyMEf_BP+_VcJ57jqQt-y9np0n7SkTy6TFMNWWQE-MQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On Mon, Sep 19, 2011 at 07:54:09PM -0700, Anton Staaf wrote:
> On Mon, Sep 19, 2011 at 5:59 PM, David Gibson
> <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org> wrote:
> > On Mon, Sep 19, 2011 at 09:45:34AM -0700, Anton Staaf wrote:
> >> On Sun, Sep 18, 2011 at 7:00 PM, David Gibson
> >> <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org> wrote:
> >> > On Sat, Sep 17, 2011 at 11:49:21AM -0500, Jon Loeliger wrote:
> >> >> > On Fri, Sep 09, 2011 at 12:16:30PM -0700, Anton Staaf wrote:
> >> >> > > With this patch the following property assignment:
> >> >> > >
> >> >> > >     property = <0x12345678 'a' '\r' 100>;
> >> >> > >
> >> >> > > is equivalent to:
> >> >> > >
> >> >> > >     property = <0x12345678 0x00000061 0x0000000D 0x00000064>
> >> >> > >
> >> >> > > Signed-off-by: Anton Staaf <robotboy-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
> >> >> >
> >> >> > Acked-by: David Gibson <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org>
> >> >>
> >> >> So, I *think* we want to wait until the question of size
> >> >> is resolved some more, right?  Or, take this in any event
> >> >> as "without a type indicator they are all 32-bit values"?
> >> >
> >> > No this patch is fine to take without changing the cell size
> >> > semantics.  It's just that it becomes a lot more useful when we do get
> >> > those.
> >>
> >> Yup, I'm working on a size patch by the way.  Any comments on my
> >> previous post about it would be helpful.  But in the mean time I'm
> >> going ahead with a solution where the current cell size is stored in
> >> the "struct data" type references are not allowed in cell lists of
> >> size other than 32 bits.
> >
> > Ah, sorry, I meant to give comments on that earlier but got
> > sidetracked.
> >
> > Storing the cell size in struct data doesn't really work - a single
> > property could be assembled from several cell lists of different
> > sizes.  By the time the reference substitution happens, they will have
> > been all merged into a single struct data.
> >
> > I think prohibiting cell references anywhere but 32-bit cell lists is
> > the right approach, but we need to work out a way to do the check
> > during the parse phase.
> 
> Yes absolutely.  My intent with storing the current cell size in the
> data struct was to use that to do the parse time rejection of
> references in all but 32-bit cell lists.  That is the current cell
> size would not be used past parsing, for exactly the reason you
> mention.  My thought was that every creation of a cell list would set
> the current cell size to 32 or the value defined by /size/ and the
> closing '>' would set it back to 0.  The empty_data initializer would
> set the current cell size to 0, even though it should never be used
> outside of the <...> context.  Then when a reference or literal are to
> be appended to the current data struct we can check for the value 32
> if it's a reference, and otherwise use the current cell size to
> validate (ensure it fits in the current cell size) and pad (add
> leading zero's) the literal.  Padding won't actually be required if
> the literal parsing routine always returns a 64-bit value.

Oh, I see.  I guess that would work, but it's a really nasty misuse of
a long-term data structure to store some short-term information.  No,
I'm pretty sure we can rearrange the grammer to handle this more
cleanly.

Maybe something like this:

cellarrayprefix = DT_SIZE DT_LITERAL '<'
                | cellarrayprefix cellval
		| cellarrayprefix DT_REF
		| cellarrayprefix DT_LABEL

The semantic type of cellarray prefix would need to contain both a
struct data and a int for the cell size, which is a bit fiddly, but
should be doable.  The DT_REF case can check the cell size part of $1
and error if it's no 32-bit.

-- 
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

  parent reply	other threads:[~2011-09-20  3:34 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-09 19:16 [PATCH v4 0/3] Support character literals Anton Staaf
     [not found] ` <1315595791-25793-1-git-send-email-robotboy-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2011-09-09 19:16   ` [PATCH v4 1/3] dtc: Refactor character literal parsing code Anton Staaf
     [not found]     ` <1315595791-25793-2-git-send-email-robotboy-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2011-09-09 21:07       ` Jon Loeliger
2011-09-09 19:16   ` [PATCH v4 2/3] dtc: Support character literals in cell lists Anton Staaf
     [not found]     ` <1315595791-25793-3-git-send-email-robotboy-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2011-09-12  0:44       ` David Gibson
     [not found]         ` <20110912004437.GG9025-787xzQ0H9iQXU02nzanrWNbf9cGiqdzd@public.gmane.org>
2011-09-17 16:49           ` Jon Loeliger
     [not found]             ` <E1R4y4v-0000Nf-5A-CYoMK+44s/E@public.gmane.org>
2011-09-19  2:00               ` David Gibson
     [not found]                 ` <20110919020034.GJ9025-787xzQ0H9iQXU02nzanrWNbf9cGiqdzd@public.gmane.org>
2011-09-19 16:45                   ` Anton Staaf
     [not found]                     ` <CAF6FioU5_uEh0fLyRBnD7DkPyo_UfjAaWxNONXSxDukpg3QPeg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-09-20  0:59                       ` David Gibson
     [not found]                         ` <20110920005931.GB29197-787xzQ0H9iQXU02nzanrWNbf9cGiqdzd@public.gmane.org>
2011-09-20  2:54                           ` Anton Staaf
     [not found]                             ` <CAF6FioWTyMEf_BP+_VcJ57jqQt-y9np0n7SkTy6TFMNWWQE-MQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-09-20  3:34                               ` David Gibson [this message]
     [not found]                                 ` <20110920033441.GI29197-787xzQ0H9iQXU02nzanrWNbf9cGiqdzd@public.gmane.org>
2011-09-21 19:38                                   ` Anton Staaf
     [not found]                                     ` <CAF6FioUJkya4kSFQ6+6tYbGcNw5WPSUT8UkgUANmqhhBwZhU1g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-09-22  2:09                                       ` David Gibson
     [not found]                                         ` <20110922020916.GC22223-787xzQ0H9iQXU02nzanrWNbf9cGiqdzd@public.gmane.org>
2011-09-22 14:29                                           ` Jon Loeliger
2011-09-22 14:27       ` Jon Loeliger
2011-09-09 19:16   ` [PATCH v4 3/3] dtc: Support character literals in bytestrings Anton Staaf

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=20110920033441.GI29197@yookeroo.fritz.box \
    --to=david-xt8fgy+axnrb3ne2bgzf6laj5h9x9tb+@public.gmane.org \
    --cc=devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org \
    --cc=robotboy-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;
as well as URLs for NNTP newsgroup(s).