All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: Jerry Van Baren <gvb.uboot@gmail.com>
Cc: Tom Rini <trini@ti.com>,
	U-Boot Mailing List <u-boot@lists.denx.de>,
	Jerry Van Baren <vanbaren@cideas.com>,
	Devicetree Discuss <devicetree-discuss@lists.ozlabs.org>
Subject: Re: [PATCH 0/14] fdt: Add various device tree utilities and features
Date: Mon, 19 Nov 2012 09:08:34 -0800	[thread overview]
Message-ID: <CAPnjgZ0NGbgJ8ak8u2rA-RY3aGz8ktqYQB9dMhhw0Dr=bhx5cg@mail.gmail.com> (raw)
In-Reply-To: <50A83B7B.4080506@gmail.com>

Hi Jerry,

On Sat, Nov 17, 2012 at 5:35 PM, Jerry Van Baren <gvb.uboot@gmail.com> wrote:
> Dear Simon,
>
> Sorry for being so late on this (the patches were submitted before the
> merge window closed).  I've applied the patches to the "next" branch in
> the u-boot-fdt repo.
>   <http://git.denx.de/?p=u-boot/u-boot-fdt.git;a=shortlog;h=refs/heads/next>
>
> I'm assuming these are still valid (Simon) and eligible to be applied to
> the v2013.01 u-boot release (Tom).  If so, I'll submit a pull request.

Yes still valid thank you. The only question is around the GPIO patch
(http://patchwork.ozlabs.org/patch/194340/) since as Stephen pointed
out there is discussion on the kernel list of whether to keep the
polarity bit. I suppose we can always address that later if they
decide to replace it with something else.

>
> On 10/25/2012 10:30 PM, Simon Glass wrote:
>> This series contains a number of features related to CONFIG_OF_CONTROL,
>> such as:
>>
>> - reading fdt values
>> - reading configuration from the fdt
>> - allowing the fdt to specify a boot command
>
> [snip]
>
>>  README             |   11 +++++
>>  common/cmd_bootm.c |   11 +++++
>>  common/image.c     |  127 ++++++++++++++++++++++++++++++++++++++++++++++++++++
>>  common/main.c      |  102 +++++++++++++++++++++++++++++++++++++++++-
>>  include/fdtdec.h   |  121 +++++++++++++++++++++++++++++++++++++++++++++++++
>>  include/image.h    |    1 +
>>  lib/fdtdec.c       |  107 +++++++++++++++++++++++++++++++++++++++++---
>>  7 files changed, 472 insertions(+), 8 deletions(-)
>
> Again, my apologies,

No problem, we all have plenty to do!

> gvb
>

Regards,
Simon

WARNING: multiple messages have this Message-ID (diff)
From: Simon Glass <sjg@chromium.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/14] fdt: Add various device tree utilities and features
Date: Mon, 19 Nov 2012 09:08:34 -0800	[thread overview]
Message-ID: <CAPnjgZ0NGbgJ8ak8u2rA-RY3aGz8ktqYQB9dMhhw0Dr=bhx5cg@mail.gmail.com> (raw)
In-Reply-To: <50A83B7B.4080506@gmail.com>

Hi Jerry,

On Sat, Nov 17, 2012 at 5:35 PM, Jerry Van Baren <gvb.uboot@gmail.com> wrote:
> Dear Simon,
>
> Sorry for being so late on this (the patches were submitted before the
> merge window closed).  I've applied the patches to the "next" branch in
> the u-boot-fdt repo.
>   <http://git.denx.de/?p=u-boot/u-boot-fdt.git;a=shortlog;h=refs/heads/next>
>
> I'm assuming these are still valid (Simon) and eligible to be applied to
> the v2013.01 u-boot release (Tom).  If so, I'll submit a pull request.

Yes still valid thank you. The only question is around the GPIO patch
(http://patchwork.ozlabs.org/patch/194340/) since as Stephen pointed
out there is discussion on the kernel list of whether to keep the
polarity bit. I suppose we can always address that later if they
decide to replace it with something else.

>
> On 10/25/2012 10:30 PM, Simon Glass wrote:
>> This series contains a number of features related to CONFIG_OF_CONTROL,
>> such as:
>>
>> - reading fdt values
>> - reading configuration from the fdt
>> - allowing the fdt to specify a boot command
>
> [snip]
>
>>  README             |   11 +++++
>>  common/cmd_bootm.c |   11 +++++
>>  common/image.c     |  127 ++++++++++++++++++++++++++++++++++++++++++++++++++++
>>  common/main.c      |  102 +++++++++++++++++++++++++++++++++++++++++-
>>  include/fdtdec.h   |  121 +++++++++++++++++++++++++++++++++++++++++++++++++
>>  include/image.h    |    1 +
>>  lib/fdtdec.c       |  107 +++++++++++++++++++++++++++++++++++++++++---
>>  7 files changed, 472 insertions(+), 8 deletions(-)
>
> Again, my apologies,

No problem, we all have plenty to do!

> gvb
>

Regards,
Simon

  reply	other threads:[~2012-11-19 17:08 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-26  2:30 [PATCH 0/14] fdt: Add various device tree utilities and features Simon Glass
2012-10-26  2:30 ` [U-Boot] " Simon Glass
     [not found] ` <1351218671-15228-1-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2012-10-26  2:30   ` [PATCH 01/14] fdt: Add function to get config int from device tree Simon Glass
2012-10-26  2:30     ` [U-Boot] " Simon Glass
2012-10-26  2:30   ` [PATCH 02/14] fdt: Add function to get a config string " Simon Glass
2012-10-26  2:30     ` [U-Boot] " Simon Glass
2012-10-26  2:31   ` [PATCH 03/14] fdt: Add fdtdec_decode_region() to decode memory region Simon Glass
2012-10-26  2:31     ` [U-Boot] " Simon Glass
2012-10-26  2:31   ` [PATCH 04/14] fdt: Add function for decoding multiple gpios globally available Simon Glass
2012-10-26  2:31     ` [U-Boot] " Simon Glass
2012-10-26  2:31   ` [PATCH 05/14] fdt: Export fdtdec_find_alias_node() function Simon Glass
2012-10-26  2:31     ` [U-Boot] " Simon Glass
     [not found]     ` <1351218671-15228-6-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2012-10-26  4:24       ` David Gibson
2012-10-26  4:24         ` [U-Boot] " David Gibson
2012-10-31 23:50         ` Simon Glass
2012-10-31 23:50           ` [U-Boot] " Simon Glass
2012-10-26  2:31   ` [PATCH 06/14] fdt: Export fdtdec_lookup() and fix the name Simon Glass
2012-10-26  2:31     ` [U-Boot] " Simon Glass
2012-10-26  2:31   ` [PATCH 07/14] fdt: Add function to read boolean property Simon Glass
2012-10-26  2:31     ` [U-Boot] " Simon Glass
2012-10-26  2:31   ` [PATCH 08/14] fdt: Add fdtdec_get_uint64 to decode a 64-bit value from a property Simon Glass
2012-10-26  2:31     ` [U-Boot] " Simon Glass
2012-10-26  2:31   ` [PATCH 09/14] fdt: Add polarity-aware gpio functions to fdtdec Simon Glass
2012-10-26  2:31     ` [U-Boot] " Simon Glass
2012-10-26  7:17     ` Lucas Stach
2012-10-26  7:17       ` [U-Boot] " Lucas Stach
2012-10-31 23:59       ` Simon Glass
2012-10-31 23:59         ` [U-Boot] " Simon Glass
2012-11-01  4:50         ` Stephen Warren
2012-11-01  4:50           ` [U-Boot] " Stephen Warren
2012-11-15 23:31           ` Simon Glass
2012-11-15 23:31             ` [U-Boot] " Simon Glass
2012-11-15 23:46             ` Stephen Warren
2012-11-15 23:46               ` [U-Boot] " Stephen Warren
2012-11-16  0:01               ` Simon Glass
2012-11-16  0:01                 ` [U-Boot] " Simon Glass
2012-10-26  2:31   ` [PATCH 11/14] fdt: Tell the FDT library where the device tree is Simon Glass
2012-10-26  2:31     ` [U-Boot] " Simon Glass
2012-10-26  2:31   ` [PATCH 12/14] fdt: Allow device tree to specify secure booting Simon Glass
2012-10-26  2:31     ` [U-Boot] " Simon Glass
2012-10-26  2:31 ` [PATCH 10/14] fdt: Load boot command from device tree Simon Glass
2012-10-26  2:31   ` [U-Boot] " Simon Glass
2012-10-26  2:31 ` [PATCH 13/14] fdt: Add option to default to most compatible conf in a fit image Simon Glass
2012-10-26  2:31   ` [U-Boot] " Simon Glass
2012-10-26  2:31 ` [PATCH 14/14] fdt: Set kernaddr if fdt indicates a kernel is present Simon Glass
2012-10-26  2:31   ` [U-Boot] " Simon Glass
     [not found]   ` <1351218671-15228-15-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2012-11-28 14:30     ` Dennis Lan (dlan)
2012-11-28 14:30       ` Dennis Lan
2012-11-28 15:16       ` Simon Glass
2012-11-18  1:35 ` [PATCH 0/14] fdt: Add various device tree utilities and features Jerry Van Baren
2012-11-18  1:35   ` [U-Boot] " Jerry Van Baren
2012-11-19 17:08   ` Simon Glass [this message]
2012-11-19 17:08     ` 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='CAPnjgZ0NGbgJ8ak8u2rA-RY3aGz8ktqYQB9dMhhw0Dr=bhx5cg@mail.gmail.com' \
    --to=sjg@chromium.org \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=gvb.uboot@gmail.com \
    --cc=trini@ti.com \
    --cc=u-boot@lists.denx.de \
    --cc=vanbaren@cideas.com \
    /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.