From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] fdt: Try to read #address-cells/size-cells from parent
Date: Tue, 16 Feb 2016 17:10:16 +0100 [thread overview]
Message-ID: <56C349E8.9030808@xilinx.com> (raw)
In-Reply-To: <CAPnjgZ3kv2gdzmktbqBApnxnH_pm3ZmXcZCgd2dpE8VhxbZ-hg@mail.gmail.com>
Hi Simon,
On 16.2.2016 17:00, Simon Glass wrote:
> Hi Michal,
>
> On 15 February 2016 at 02:58, Michal Simek <michal.simek@xilinx.com> wrote:
>> Hi Simon,
>>
>> On 10.2.2016 13:04, Michal Simek wrote:
>>> Read #address-cells and #size-cells from parent if they are not present in
>>> current node.
>>>
>>> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
>>> ---
>>>
>>> I have code which read information about memory for zynqmp but memory
>>> node most of the time doesn't contain #address/size-cells which are
>>> present in parent node.
>>> That's why let's try to read it from parent.
>>>
>>> Also I think that we shouldn't return 2 if property is not found because
>>> it has side effect on 32bit systems with #address/size-cells = <1>;
>>>
>>> ---
>>> lib/libfdt/fdt_addresses.c | 18 ++++++++++++++----
>>> 1 file changed, 14 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/lib/libfdt/fdt_addresses.c b/lib/libfdt/fdt_addresses.c
>>> index 76054d98e5fd..b164d0988079 100644
>>> --- a/lib/libfdt/fdt_addresses.c
>>> +++ b/lib/libfdt/fdt_addresses.c
>>> @@ -19,10 +19,15 @@ int fdt_address_cells(const void *fdt, int nodeoffset)
>>> const fdt32_t *ac;
>>> int val;
>>> int len;
>>> + int parent;
>>>
>>> ac = fdt_getprop(fdt, nodeoffset, "#address-cells", &len);
>>> - if (!ac)
>>> - return 2;
>>> + if (!ac) {
>>> + parent = fdt_parent_offset(fdt, nodeoffset);
>>> + ac = fdt_getprop(fdt, parent, "#address-cells", &len);
>>> + if (!ac)
>>> + return 2;
>>> + }
>>>
>>> if (len != sizeof(*ac))
>>> return -FDT_ERR_BADNCELLS;
>>> @@ -39,10 +44,15 @@ int fdt_size_cells(const void *fdt, int nodeoffset)
>>> const fdt32_t *sc;
>>> int val;
>>> int len;
>>> + int parent;
>>>
>>> sc = fdt_getprop(fdt, nodeoffset, "#size-cells", &len);
>>> - if (!sc)
>>> - return 2;
>>> + if (!sc) {
>>> + parent = fdt_parent_offset(fdt, nodeoffset);
>>> + sc = fdt_getprop(fdt, parent, "#size-cells", &len);
>>> + if (!sc)
>>> + return 2;
>>> + }
>>>
>>> if (len != sizeof(*sc))
>>> return -FDT_ERR_BADNCELLS;
>>>
>>
>> Simon: Any comment?
>
> It seems risky to change the behaviour here. Also fdt_parent_offset() is slow.
>
> Can you point me to the binding / example DT that you are trying to parse?
Look at dram_init(), etc.
https://github.com/Xilinx/u-boot-xlnx/blob/master/board/xilinx/zynqmp/zynqmp.c
fdt_get_reg() is calling fdt_size_cells()
And this is DTS fragment.
#address-cells = <2>;
#size-cells = <1>;
memory {
device_type = "memory";
reg = <0x0 0x0 0x80000000>, <0x8 0x00000000 0x80000000>;
};
Code is in memory node I need to work with and asking for size-cells.
Current code returns 2 instead of error and the rest of code just works
with size = 2 which is incorrect for this setup.
I have already changed size-cells = 2 in our repo because I need to
support for more than 4GB memory anyway but this should point to the
problem in that generic functions.
Thanks,
Michal
next prev parent reply other threads:[~2016-02-16 16:10 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-10 12:04 [U-Boot] [PATCH] fdt: Try to read #address-cells/size-cells from parent Michal Simek
2016-02-15 9:58 ` Michal Simek
2016-02-16 16:00 ` Simon Glass
2016-02-16 16:10 ` Michal Simek [this message]
[not found] ` <56C349E8.9030808-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
2016-03-13 1:54 ` Simon Glass
2016-03-13 1:54 ` [U-Boot] " Simon Glass
2016-03-14 21:10 ` Michal Simek
2016-03-14 21:10 ` [U-Boot] " Michal Simek
[not found] ` <56E728E2.5050905-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
2016-03-15 0:27 ` David Gibson
2016-03-15 0:27 ` [U-Boot] " David Gibson
[not found] ` <20160315002743.GC15272-RXTfZT5YzpxwFLYp8hBm2A@public.gmane.org>
2016-03-16 16:18 ` Michal Simek
2016-03-16 16:18 ` [U-Boot] " Michal Simek
[not found] ` <56E98751.4060007-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org>
2016-03-16 22:47 ` David Gibson
2016-03-16 22:47 ` [U-Boot] " David Gibson
2016-03-16 23:21 ` Michal Simek
2016-03-16 23:21 ` [U-Boot] " Michal Simek
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=56C349E8.9030808@xilinx.com \
--to=michal.simek@xilinx.com \
--cc=u-boot@lists.denx.de \
/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.