All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Grant Likely <grant.likely@secretlab.ca>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>,
	monstr@monstr.eu, microblaze-uclinux@itee.uq.edu.au,
	devicetree-discuss@lists.ozlabs.org, sparclinux@vger.kernel.org,
	linuxppc-dev@lists.ozlabs.org, davem@davemloft.net
Subject: Re: [RFC PATCH 05/12] of: add common header for flattened device tree representation
Date: Wed, 14 Oct 2009 15:47:07 +1100	[thread overview]
Message-ID: <20091014044707.GA3952@yookeroo.seuss> (raw)
In-Reply-To: <fa686aa40910090007lef3fddbod0c5843abfe33be5@mail.gmail.com>

On Fri, Oct 09, 2009 at 01:07:57AM -0600, Grant Likely wrote:
> On Fri, Oct 9, 2009 at 12:35 AM, David Gibson
> <david@gibson.dropbear.id.au> wrote:
> > On Tue, Oct 06, 2009 at 10:30:59PM -0600, Grant Likely wrote:
> >> Add a common header file for working with the flattened device tree
> >> data structure and merge the shared data tags used by Microblaze and
> >> PowerPC
> >>
> >> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
> >> ---
> >>
> >>  arch/microblaze/include/asm/prom.h |   12 +-----------
> >>  arch/powerpc/include/asm/prom.h    |   12 +-----------
> >>  include/linux/of_fdt.h             |   30 ++++++++++++++++++++++++++++++
> >>  3 files changed, 32 insertions(+), 22 deletions(-)
> >>  create mode 100644 include/linux/of_fdt.h
> >>
> >> diff --git a/arch/microblaze/include/asm/prom.h b/arch/microblaze/include/asm/prom.h
> >> index 64e8b3a..5f461f0 100644
> >> --- a/arch/microblaze/include/asm/prom.h
> >> +++ b/arch/microblaze/include/asm/prom.h
> >> @@ -17,20 +17,10 @@
> >>  #ifndef _ASM_MICROBLAZE_PROM_H
> >>  #define _ASM_MICROBLAZE_PROM_H
> >>  #ifdef __KERNEL__
> >> -
> >> -/* Definitions used by the flattened device tree */
> >> -#define OF_DT_HEADER         0xd00dfeed /* marker */
> >> -#define OF_DT_BEGIN_NODE     0x1 /* Start of node, full name */
> >> -#define OF_DT_END_NODE               0x2 /* End node */
> >> -#define OF_DT_PROP           0x3 /* Property: name off, size, content */
> >> -#define OF_DT_NOP            0x4 /* nop */
> >> -#define OF_DT_END            0x9
> >> -
> >> -#define OF_DT_VERSION                0x10
> >
> >
> > So, if you're merging all these, I guess the question is do we also
> > want to merge them with scripts/dtc/libfdt/fdt.h, and by extension
> > with the upstream libfdt header file which defines the same things.
> 
> I see your question and raise you another.  Where should the merge
> file live for it to be included both by dtc and kernel code? Or should
> it just be cloned in the kernel tree?

Yeah, a good question.  As I see it there are two options.  Number one
is just make sure everything relevant that the kernel needs is in the
libfdt version, then just have the kernel code reference it from its
location in scripts/dtc.  Other option is we clone the file in the
kernel tree.  Requires keeping in sync, in theory at least, but since
that file has been pretty static (since it's only supposed to contain
passive structures/constants related to the physical flat tree
structure - no code or prototypes).

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

WARNING: multiple messages have this Message-ID (diff)
From: David Gibson <david@gibson.dropbear.id.au>
To: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
Cc: Stephen Rothwell <sfr-3FnU+UHB4dNDw9hX6IcOSA@public.gmane.org>,
	microblaze-uclinux-rVRm/Wmeqae7NGdpmJTKYQ@public.gmane.org,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
	sparclinux-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
	davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org
Subject: Re: [RFC PATCH 05/12] of: add common header for flattened device
Date: Wed, 14 Oct 2009 04:47:07 +0000	[thread overview]
Message-ID: <20091014044707.GA3952@yookeroo.seuss> (raw)
In-Reply-To: <fa686aa40910090007lef3fddbod0c5843abfe33be5-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On Fri, Oct 09, 2009 at 01:07:57AM -0600, Grant Likely wrote:
> On Fri, Oct 9, 2009 at 12:35 AM, David Gibson
> <david@gibson.dropbear.id.au> wrote:
> > On Tue, Oct 06, 2009 at 10:30:59PM -0600, Grant Likely wrote:
> >> Add a common header file for working with the flattened device tree
> >> data structure and merge the shared data tags used by Microblaze and
> >> PowerPC
> >>
> >> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
> >> ---
> >>
> >>  arch/microblaze/include/asm/prom.h |   12 +-----------
> >>  arch/powerpc/include/asm/prom.h    |   12 +-----------
> >>  include/linux/of_fdt.h             |   30 ++++++++++++++++++++++++++++++
> >>  3 files changed, 32 insertions(+), 22 deletions(-)
> >>  create mode 100644 include/linux/of_fdt.h
> >>
> >> diff --git a/arch/microblaze/include/asm/prom.h b/arch/microblaze/include/asm/prom.h
> >> index 64e8b3a..5f461f0 100644
> >> --- a/arch/microblaze/include/asm/prom.h
> >> +++ b/arch/microblaze/include/asm/prom.h
> >> @@ -17,20 +17,10 @@
> >>  #ifndef _ASM_MICROBLAZE_PROM_H
> >>  #define _ASM_MICROBLAZE_PROM_H
> >>  #ifdef __KERNEL__
> >> -
> >> -/* Definitions used by the flattened device tree */
> >> -#define OF_DT_HEADER         0xd00dfeed /* marker */
> >> -#define OF_DT_BEGIN_NODE     0x1 /* Start of node, full name */
> >> -#define OF_DT_END_NODE               0x2 /* End node */
> >> -#define OF_DT_PROP           0x3 /* Property: name off, size, content */
> >> -#define OF_DT_NOP            0x4 /* nop */
> >> -#define OF_DT_END            0x9
> >> -
> >> -#define OF_DT_VERSION                0x10
> >
> >
> > So, if you're merging all these, I guess the question is do we also
> > want to merge them with scripts/dtc/libfdt/fdt.h, and by extension
> > with the upstream libfdt header file which defines the same things.
> 
> I see your question and raise you another.  Where should the merge
> file live for it to be included both by dtc and kernel code? Or should
> it just be cloned in the kernel tree?

Yeah, a good question.  As I see it there are two options.  Number one
is just make sure everything relevant that the kernel needs is in the
libfdt version, then just have the kernel code reference it from its
location in scripts/dtc.  Other option is we clone the file in the
kernel tree.  Requires keeping in sync, in theory at least, but since
that file has been pretty static (since it's only supposed to contain
passive structures/constants related to the physical flat tree
structure - no code or prototypes).

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

WARNING: multiple messages have this Message-ID (diff)
From: David Gibson <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org>
To: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
Cc: Stephen Rothwell <sfr-3FnU+UHB4dNDw9hX6IcOSA@public.gmane.org>,
	microblaze-uclinux-rVRm/Wmeqae7NGdpmJTKYQ@public.gmane.org,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
	sparclinux-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
	davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org
Subject: Re: [RFC PATCH 05/12] of: add common header for flattened device tree representation
Date: Wed, 14 Oct 2009 15:47:07 +1100	[thread overview]
Message-ID: <20091014044707.GA3952@yookeroo.seuss> (raw)
In-Reply-To: <fa686aa40910090007lef3fddbod0c5843abfe33be5-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On Fri, Oct 09, 2009 at 01:07:57AM -0600, Grant Likely wrote:
> On Fri, Oct 9, 2009 at 12:35 AM, David Gibson
> <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org> wrote:
> > On Tue, Oct 06, 2009 at 10:30:59PM -0600, Grant Likely wrote:
> >> Add a common header file for working with the flattened device tree
> >> data structure and merge the shared data tags used by Microblaze and
> >> PowerPC
> >>
> >> Signed-off-by: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
> >> ---
> >>
> >>  arch/microblaze/include/asm/prom.h |   12 +-----------
> >>  arch/powerpc/include/asm/prom.h    |   12 +-----------
> >>  include/linux/of_fdt.h             |   30 ++++++++++++++++++++++++++++++
> >>  3 files changed, 32 insertions(+), 22 deletions(-)
> >>  create mode 100644 include/linux/of_fdt.h
> >>
> >> diff --git a/arch/microblaze/include/asm/prom.h b/arch/microblaze/include/asm/prom.h
> >> index 64e8b3a..5f461f0 100644
> >> --- a/arch/microblaze/include/asm/prom.h
> >> +++ b/arch/microblaze/include/asm/prom.h
> >> @@ -17,20 +17,10 @@
> >>  #ifndef _ASM_MICROBLAZE_PROM_H
> >>  #define _ASM_MICROBLAZE_PROM_H
> >>  #ifdef __KERNEL__
> >> -
> >> -/* Definitions used by the flattened device tree */
> >> -#define OF_DT_HEADER         0xd00dfeed /* marker */
> >> -#define OF_DT_BEGIN_NODE     0x1 /* Start of node, full name */
> >> -#define OF_DT_END_NODE               0x2 /* End node */
> >> -#define OF_DT_PROP           0x3 /* Property: name off, size, content */
> >> -#define OF_DT_NOP            0x4 /* nop */
> >> -#define OF_DT_END            0x9
> >> -
> >> -#define OF_DT_VERSION                0x10
> >
> >
> > So, if you're merging all these, I guess the question is do we also
> > want to merge them with scripts/dtc/libfdt/fdt.h, and by extension
> > with the upstream libfdt header file which defines the same things.
> 
> I see your question and raise you another.  Where should the merge
> file live for it to be included both by dtc and kernel code? Or should
> it just be cloned in the kernel tree?

Yeah, a good question.  As I see it there are two options.  Number one
is just make sure everything relevant that the kernel needs is in the
libfdt version, then just have the kernel code reference it from its
location in scripts/dtc.  Other option is we clone the file in the
kernel tree.  Requires keeping in sync, in theory at least, but since
that file has been pretty static (since it's only supposed to contain
passive structures/constants related to the physical flat tree
structure - no code or prototypes).

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

  reply	other threads:[~2009-10-14  4:47 UTC|newest]

Thread overview: 136+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-10-07  4:29 [RFC PATCH 00/12] Merge common OpenFirmware device tree code Grant Likely
2009-10-07  4:29 ` Grant Likely
2009-10-07  4:30 ` [RFC PATCH 01/12] of: Rework linux/of.h and asm/prom.h include ordering Grant Likely
2009-10-07  4:30   ` Grant Likely
2009-10-07  4:30   ` [RFC PATCH 01/12] of: Rework linux/of.h and asm/prom.h include Grant Likely
2009-10-07  4:30 ` [RFC PATCH 02/12] of: merge phandle, ihandle and struct property Grant Likely
2009-10-07  4:30 ` Grant Likely
2009-10-07  4:30   ` Grant Likely
2009-10-07  4:30 ` [RFC PATCH 03/12] of: merge struct device_node Grant Likely
2009-10-07  4:30   ` Grant Likely
2009-10-07  4:30   ` Grant Likely
2009-10-07  4:30 ` [RFC PATCH 04/12] of: Move OF_IS_DYNAMIC and OF_MARK_DYNAMIC macros to of.h Grant Likely
2009-10-07  4:30 ` Grant Likely
2009-10-07  4:30   ` [RFC PATCH 04/12] of: Move OF_IS_DYNAMIC and OF_MARK_DYNAMIC macros Grant Likely
2009-10-07  4:30 ` [RFC PATCH 05/12] of: add common header for flattened device tree representation Grant Likely
2009-10-07  4:30 ` Grant Likely
2009-10-07  4:30   ` [RFC PATCH 05/12] of: add common header for flattened device tree Grant Likely
2009-10-07  4:57   ` [RFC PATCH 05/12] of: add common header for flattened device tree representation Stephen Rothwell
2009-10-07  4:57     ` Stephen Rothwell
2009-10-07  4:57     ` [RFC PATCH 05/12] of: add common header for flattened device Stephen Rothwell
2009-10-07 12:14     ` [microblaze-uclinux] Re: [RFC PATCH 05/12] of: add common header for flattened device tree representation Michal Simek
2009-10-07 12:14       ` Michal Simek
2009-10-07 12:14       ` [microblaze-uclinux] Re: [RFC PATCH 05/12] of: add common header Michal Simek
2009-10-07 13:38       ` [microblaze-uclinux] Re: [RFC PATCH 05/12] of: add common header for flattened device tree representation Grant Likely
2009-10-07 13:38         ` Grant Likely
2009-10-07 13:38         ` [microblaze-uclinux] Re: [RFC PATCH 05/12] of: add common header Grant Likely
2009-10-07 14:07         ` [microblaze-uclinux] Re: [RFC PATCH 05/12] of: add common header for flattened device tree representation Michal Simek
2009-10-07 14:07           ` [microblaze-uclinux] Re: [RFC PATCH 05/12] of: add common header Michal Simek
2009-10-07  5:14   ` [RFC PATCH 05/12] of: add common header for flattened device tree representation Benjamin Herrenschmidt
2009-10-07  5:14     ` Benjamin Herrenschmidt
2009-10-07  5:14     ` [RFC PATCH 05/12] of: add common header for flattened device Benjamin Herrenschmidt
2009-10-07 13:41     ` [RFC PATCH 05/12] of: add common header for flattened device tree representation Grant Likely
2009-10-07 13:41       ` Grant Likely
2009-10-07 13:41       ` [RFC PATCH 05/12] of: add common header for flattened device tree Grant Likely
2009-10-09  6:35   ` [RFC PATCH 05/12] of: add common header for flattened device tree representation David Gibson
2009-10-09  6:35     ` David Gibson
2009-10-09  6:35     ` [RFC PATCH 05/12] of: add common header for flattened device David Gibson
2009-10-09  7:07     ` [RFC PATCH 05/12] of: add common header for flattened device tree representation Grant Likely
2009-10-09  7:07       ` Grant Likely
2009-10-09  7:07       ` [RFC PATCH 05/12] of: add common header for flattened device tree Grant Likely
2009-10-14  4:47       ` David Gibson [this message]
2009-10-14  4:47         ` [RFC PATCH 05/12] of: add common header for flattened device tree representation David Gibson
2009-10-14  4:47         ` [RFC PATCH 05/12] of: add common header for flattened device David Gibson
2009-10-07  4:31 ` [RFC PATCH 06/12] of: merge struct boot_param_header from Microblaze and PowerPC Grant Likely
2009-10-07  4:31 ` Grant Likely
2009-10-07  4:31   ` [RFC PATCH 06/12] of: merge struct boot_param_header from Microblaze Grant Likely
2009-10-07  4:31 ` [RFC PATCH 07/12] of: merge of_node_*_flag() and set_node_proc_entry() Grant Likely
2009-10-07  4:31   ` Grant Likely
2009-10-07  4:31 ` Grant Likely
2009-10-07  4:31 ` [RFC PATCH 08/12] of: merge of_read_number() an of_read_ulong() Grant Likely
2009-10-07  4:31 ` Grant Likely
2009-10-07  4:31   ` Grant Likely
2009-10-07  4:31 ` [RFC PATCH 09/12] of: merge of_node_get(), of_node_put() and of_find_all_nodes() Grant Likely
2009-10-07  4:31 ` Grant Likely
2009-10-07  4:31   ` [RFC PATCH 09/12] of: merge of_node_get(), Grant Likely
2009-10-07  4:32 ` [RFC PATCH 10/12] of: merge of_*_flat_dt*() functions Grant Likely
2009-10-07  4:32   ` Grant Likely
2009-10-09  6:36   ` David Gibson
2009-10-09  6:36     ` David Gibson
2009-10-09  6:36     ` David Gibson
2009-10-09  7:03     ` Grant Likely
2009-10-09  7:03       ` Grant Likely
2009-10-09  7:03       ` Grant Likely
2009-10-07  4:32 ` Grant Likely
2009-10-07  4:32 ` [RFC PATCH 11/12] of: merge other miscellaneous prototypes Grant Likely
2009-10-07  4:32 ` Grant Likely
2009-10-07  4:32   ` Grant Likely
2009-10-07  4:32 ` [RFC PATCH 12/12] of: merge of_find_all_nodes() implementations Grant Likely
2009-10-07  4:32 ` Grant Likely
2009-10-07  4:32   ` Grant Likely
2009-10-07  4:49 ` [RFC PATCH 00/12] Merge common OpenFirmware device tree code Grant Likely
2009-10-07  4:49   ` Grant Likely
2009-10-07  4:49   ` Grant Likely
2009-10-07  5:18   ` Julian Calaby
2009-10-07  5:18     ` Julian Calaby
2009-10-07  5:18     ` Julian Calaby
2009-10-07 13:52     ` Sam Creasey
2009-10-07 13:52       ` Sam Creasey
2009-10-07 13:52       ` Sam Creasey
2009-10-07 19:30       ` Mitch Bradley
2009-10-07 19:30         ` Mitch Bradley
2009-10-07 19:30         ` Mitch Bradley
2009-10-07 20:54         ` Chris Newport
2009-10-07 20:54           ` Chris Newport
2009-10-07 20:54           ` Chris Newport
2009-10-07 21:09           ` David Miller
2009-10-07 21:09             ` David Miller
2009-10-07 21:09             ` David Miller
2009-10-08  1:29             ` Chris Newport
2009-10-08  1:29               ` Chris Newport
2009-10-08  4:39               ` David Miller
2009-10-08  4:39                 ` David Miller
2009-10-08  4:39                 ` David Miller
2009-10-08 13:24                 ` Kjetil Oftedal
2009-10-08 13:24                   ` Kjetil Oftedal
2009-10-08 13:24                   ` Kjetil Oftedal
2009-10-07 22:57       ` Brad Boyer
2009-10-07 22:57         ` Brad Boyer
2009-10-07  7:09   ` Rob Landley
2009-10-07  7:09     ` Rob Landley
2009-10-07  7:09     ` Rob Landley
2009-10-07 14:02     ` Grant Likely
2009-10-07 14:02       ` Grant Likely
2009-10-07 14:02       ` Grant Likely
2009-10-07 14:21       ` [microblaze-uclinux] " Michal Simek
2009-10-07 14:21         ` Michal Simek
2009-10-07 14:21         ` [microblaze-uclinux] Re: [RFC PATCH 00/12] Merge common OpenFirmware Michal Simek
2009-10-07  7:27   ` [RFC PATCH 00/12] Merge common OpenFirmware device tree code David Miller
2009-10-07  7:27     ` David Miller
2009-10-07  7:27     ` David Miller
2009-10-07 16:39     ` Stephen Neuendorffer
2009-10-07 16:39       ` Stephen Neuendorffer
2009-10-07 16:39       ` Stephen Neuendorffer
2009-10-07  9:02   ` Wolfram Sang
2009-10-07  9:02     ` Wolfram Sang
2009-10-07  9:02     ` Wolfram Sang
2009-10-07 22:20 ` Leif Sawyer
2009-10-07 22:39 ` David Miller
2009-10-07 22:50 ` Mitch Bradley
2009-10-15  1:00 ` Stephen Rothwell
2009-10-15  1:00   ` Stephen Rothwell
2009-10-15  1:00   ` Stephen Rothwell
2009-10-15  1:01   ` [PATCH 1/2] of: create asm/of.h Stephen Rothwell
2009-10-15  1:01     ` Stephen Rothwell
2009-10-15  1:01     ` Stephen Rothwell
2009-10-15  1:02     ` [PATCH 2/2] of: move struct property to asm/of.h Stephen Rothwell
2009-10-15  1:02       ` Stephen Rothwell
2009-10-15 17:06   ` [RFC PATCH 00/12] Merge common OpenFirmware device tree code Grant Likely
2009-10-15 17:06     ` Grant Likely
2009-10-15 17:06     ` Grant Likely
2009-10-15 23:38     ` Stephen Rothwell
2009-10-15 23:38       ` Stephen Rothwell
2009-10-15 23:38       ` Stephen Rothwell
2009-10-16  3:18       ` Grant Likely
2009-10-16  3:18         ` Grant Likely
2009-10-16  3:18         ` Grant Likely

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=20091014044707.GA3952@yookeroo.seuss \
    --to=david@gibson.dropbear.id.au \
    --cc=davem@davemloft.net \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=grant.likely@secretlab.ca \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=microblaze-uclinux@itee.uq.edu.au \
    --cc=monstr@monstr.eu \
    --cc=sfr@canb.auug.org.au \
    --cc=sparclinux@vger.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.