All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
@ 2014-10-24 15:39 Joakim Tjernlund
  2014-10-24 16:02 ` York Sun
  0 siblings, 1 reply; 10+ messages in thread
From: Joakim Tjernlund @ 2014-10-24 15:39 UTC (permalink / raw)
  To: u-boot

Booting my t1042 I get:
Loading Ramdisk to 2e639000, end 2ffffcc4 ... OK
Loading Device Tree to 03fe4000, end 03fffd45 ... OK
WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
....

This apperas to come from 
                base_liodn = fdt_getprop(fdt, off, "fsl,liodn", &rc);
                if (!base_liodn) {
                        char path[64];

                        if (fdt_get_path(fdt, off, path, sizeof(path)) < 
0)
                                strcpy(path, "(unknown)");
                        printf("WARNING Could not get liodn of node %s: 
%s\n",
                               path, fdt_strerror(rc));
                        continue;
                }

but I cannot find out  what what this property should be. Anyone?

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
  2014-10-24 15:39 [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND Joakim Tjernlund
@ 2014-10-24 16:02 ` York Sun
  2014-11-24  7:30   ` Joakim Tjernlund
  0 siblings, 1 reply; 10+ messages in thread
From: York Sun @ 2014-10-24 16:02 UTC (permalink / raw)
  To: u-boot

On 10/24/2014 08:39 AM, Joakim Tjernlund wrote:
> Booting my t1042 I get:
> Loading Ramdisk to 2e639000, end 2ffffcc4 ... OK
> Loading Device Tree to 03fe4000, end 03fffd45 ... OK
> WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
> WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
> WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
> WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
> ....
> 
> This apperas to come from 
>                 base_liodn = fdt_getprop(fdt, off, "fsl,liodn", &rc);
>                 if (!base_liodn) {
>                         char path[64];
> 
>                         if (fdt_get_path(fdt, off, path, sizeof(path)) < 
> 0)
>                                 strcpy(path, "(unknown)");
>                         printf("WARNING Could not get liodn of node %s: 
> %s\n",
>                                path, fdt_strerror(rc));
>                         continue;
>                 }
> 
> but I cannot find out  what what this property should be. Anyone?
> 

Laurentiu,

Can you take a look?

York

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
  2014-10-24 16:02 ` York Sun
@ 2014-11-24  7:30   ` Joakim Tjernlund
  2014-11-24 16:57     ` York Sun
  0 siblings, 1 reply; 10+ messages in thread
From: Joakim Tjernlund @ 2014-11-24  7:30 UTC (permalink / raw)
  To: u-boot

York Sun <yorksun@freescale.com> wrote on 2014/10/24 18:02:03:
> 
> On 10/24/2014 08:39 AM, Joakim Tjernlund wrote:
> > Booting my t1042 I get:
> > Loading Ramdisk to 2e639000, end 2ffffcc4 ... OK
> > Loading Device Tree to 03fe4000, end 03fffd45 ... OK
> > WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
> > WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
> > WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
> > WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
> > ....
> > 
> > This apperas to come from 
> >                 base_liodn = fdt_getprop(fdt, off, "fsl,liodn", &rc);
> >                 if (!base_liodn) {
> >                         char path[64];
> > 
> >                         if (fdt_get_path(fdt, off, path, sizeof(path)) 
< 
> > 0)
> >                                 strcpy(path, "(unknown)");
> >                         printf("WARNING Could not get liodn of node 
%s: 
> > %s\n",
> >                                path, fdt_strerror(rc));
> >                         continue;
> >                 }
> > 
> > but I cannot find out  what what this property should be. Anyone?
> > 
> 
> Laurentiu,
> 
> Can you take a look?
> 
> York

I might have missed it, but did this go anywhere?

 Jocke

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
  2014-11-24  7:30   ` Joakim Tjernlund
@ 2014-11-24 16:57     ` York Sun
  2014-11-25  8:49       ` Laurentiu Tudor
  0 siblings, 1 reply; 10+ messages in thread
From: York Sun @ 2014-11-24 16:57 UTC (permalink / raw)
  To: u-boot

On 11/23/2014 11:30 PM, Joakim Tjernlund wrote:
> York Sun <yorksun@freescale.com> wrote on 2014/10/24 18:02:03:
>>
>> On 10/24/2014 08:39 AM, Joakim Tjernlund wrote:
>>> Booting my t1042 I get:
>>> Loading Ramdisk to 2e639000, end 2ffffcc4 ... OK
>>> Loading Device Tree to 03fe4000, end 03fffd45 ... OK
>>> WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
>>> WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
>>> WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
>>> WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
>>> ....
>>>
>>> This apperas to come from 
>>>                 base_liodn = fdt_getprop(fdt, off, "fsl,liodn", &rc);
>>>                 if (!base_liodn) {
>>>                         char path[64];
>>>
>>>                         if (fdt_get_path(fdt, off, path, sizeof(path)) 
> < 
>>> 0)
>>>                                 strcpy(path, "(unknown)");
>>>                         printf("WARNING Could not get liodn of node 
> %s: 
>>> %s\n",
>>>                                path, fdt_strerror(rc));
>>>                         continue;
>>>                 }
>>>
>>> but I cannot find out  what what this property should be. Anyone?
>>>
>>
>> Laurentiu,
>>
>> Can you take a look?
>>
>> York
> 
> I might have missed it, but did this go anywhere?
> 

No. It didn't go anywhere. Laurentiu, can you follow up?

York

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
  2014-11-24 16:57     ` York Sun
@ 2014-11-25  8:49       ` Laurentiu Tudor
  2014-11-26  8:55         ` Joakim Tjernlund
  0 siblings, 1 reply; 10+ messages in thread
From: Laurentiu Tudor @ 2014-11-25  8:49 UTC (permalink / raw)
  To: u-boot

On 11/24/2014 06:57 PM, York Sun wrote:
> On 11/23/2014 11:30 PM, Joakim Tjernlund wrote:
>> York Sun <yorksun@freescale.com> wrote on 2014/10/24 18:02:03:
>>>
>>> On 10/24/2014 08:39 AM, Joakim Tjernlund wrote:
>>>> Booting my t1042 I get:
>>>> Loading Ramdisk to 2e639000, end 2ffffcc4 ... OK
>>>> Loading Device Tree to 03fe4000, end 03fffd45 ... OK
>>>> WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
>>>> WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
>>>> WARNING Could not get liodn of node /pcie at ffe240000: FDT_ERR_NOTFOUND
>>>> WARNING Could not get liodn of node /pcie at ffe250000: FDT_ERR_NOTFOUND
>>>> ....
>>>>
>>>> This apperas to come from 
>>>>                 base_liodn = fdt_getprop(fdt, off, "fsl,liodn", &rc);
>>>>                 if (!base_liodn) {
>>>>                         char path[64];
>>>>
>>>>                         if (fdt_get_path(fdt, off, path, sizeof(path)) 
>> < 
>>>> 0)
>>>>                                 strcpy(path, "(unknown)");
>>>>                         printf("WARNING Could not get liodn of node 
>> %s: 
>>>> %s\n",
>>>>                                path, fdt_strerror(rc));
>>>>                         continue;
>>>>                 }
>>>>
>>>> but I cannot find out  what what this property should be. Anyone?
>>>>
>>>
>>> Laurentiu,
>>>
>>> Can you take a look?
>>>
>>> York
>>
>> I might have missed it, but did this go anywhere?
>>
> 
> No. It didn't go anywhere. Laurentiu, can you follow up?
> 

Hi Jocke, York,

Sorry for the late reply. I didn't noticed the thread in time.

You need this patch:

https://patchwork.ozlabs.org/patch/411910/

---
Best Regards, Laurentiu

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
  2014-11-25  8:49       ` Laurentiu Tudor
@ 2014-11-26  8:55         ` Joakim Tjernlund
  2014-11-26 12:34           ` Laurentiu Tudor
  0 siblings, 1 reply; 10+ messages in thread
From: Joakim Tjernlund @ 2014-11-26  8:55 UTC (permalink / raw)
  To: u-boot

Laurentiu Tudor <b10716@freescale.com> wrote on 2014/11/25 09:49:22:
> 
> On 11/24/2014 06:57 PM, York Sun wrote:
> > On 11/23/2014 11:30 PM, Joakim Tjernlund wrote:
> >> York Sun <yorksun@freescale.com> wrote on 2014/10/24 18:02:03:
> >>>
> >>> On 10/24/2014 08:39 AM, Joakim Tjernlund wrote:
> >>>> Booting my t1042 I get:
> >>>> Loading Ramdisk to 2e639000, end 2ffffcc4 ... OK
> >>>> Loading Device Tree to 03fe4000, end 03fffd45 ... OK
> >>>> WARNING Could not get liodn of node /pcie at ffe240000: 
FDT_ERR_NOTFOUND
> >>>> WARNING Could not get liodn of node /pcie at ffe250000: 
FDT_ERR_NOTFOUND
> >>>> WARNING Could not get liodn of node /pcie at ffe240000: 
FDT_ERR_NOTFOUND
> >>>> WARNING Could not get liodn of node /pcie at ffe250000: 
FDT_ERR_NOTFOUND
> >>>> ....
> >>>>
> >>>> This apperas to come from 
> >>>>                 base_liodn = fdt_getprop(fdt, off, "fsl,liodn", 
&rc);
> >>>>                 if (!base_liodn) {
> >>>>                         char path[64];
> >>>>
> >>>>                         if (fdt_get_path(fdt, off, path, 
sizeof(path)) 
> >> < 
> >>>> 0)
> >>>>                                 strcpy(path, "(unknown)");
> >>>>                         printf("WARNING Could not get liodn of node 

> >> %s: 
> >>>> %s\n",
> >>>>                                path, fdt_strerror(rc));
> >>>>                         continue;
> >>>>                 }
> >>>>
> >>>> but I cannot find out  what what this property should be. Anyone?
> >>>>
> >>>
> >>> Laurentiu,
> >>>
> >>> Can you take a look?
> >>>
> >>> York
> >>
> >> I might have missed it, but did this go anywhere?
> >>
> > 
> > No. It didn't go anywhere. Laurentiu, can you follow up?
> > 
> 
> Hi Jocke, York,
> 
> Sorry for the late reply. I didn't noticed the thread in time.
> 
> You need this patch:
> 
> https://patchwork.ozlabs.org/patch/411910/

Great, I guess this will hit upstream any day now?

 Jocke

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
  2014-11-26  8:55         ` Joakim Tjernlund
@ 2014-11-26 12:34           ` Laurentiu Tudor
  2014-12-01 17:26             ` York Sun
  0 siblings, 1 reply; 10+ messages in thread
From: Laurentiu Tudor @ 2014-11-26 12:34 UTC (permalink / raw)
  To: u-boot

On 11/26/2014 10:55 AM, Joakim Tjernlund wrote:
> Laurentiu Tudor <b10716@freescale.com> wrote on 2014/11/25 09:49:22:
>>
>> On 11/24/2014 06:57 PM, York Sun wrote:
>>> On 11/23/2014 11:30 PM, Joakim Tjernlund wrote:
>>>> York Sun <yorksun@freescale.com> wrote on 2014/10/24 18:02:03:
>>>>>
>>>>> On 10/24/2014 08:39 AM, Joakim Tjernlund wrote:
>>>>>> Booting my t1042 I get:
>>>>>> Loading Ramdisk to 2e639000, end 2ffffcc4 ... OK
>>>>>> Loading Device Tree to 03fe4000, end 03fffd45 ... OK
>>>>>> WARNING Could not get liodn of node /pcie at ffe240000: 
> FDT_ERR_NOTFOUND
>>>>>> WARNING Could not get liodn of node /pcie at ffe250000: 
> FDT_ERR_NOTFOUND
>>>>>> WARNING Could not get liodn of node /pcie at ffe240000: 
> FDT_ERR_NOTFOUND
>>>>>> WARNING Could not get liodn of node /pcie at ffe250000: 
> FDT_ERR_NOTFOUND
>>>>>> ....
>>>>>>
>>>>>> This apperas to come from 
>>>>>>                 base_liodn = fdt_getprop(fdt, off, "fsl,liodn", 
> &rc);
>>>>>>                 if (!base_liodn) {
>>>>>>                         char path[64];
>>>>>>
>>>>>>                         if (fdt_get_path(fdt, off, path, 
> sizeof(path)) 
>>>> < 
>>>>>> 0)
>>>>>>                                 strcpy(path, "(unknown)");
>>>>>>                         printf("WARNING Could not get liodn of node 
> 
>>>> %s: 
>>>>>> %s\n",
>>>>>>                                path, fdt_strerror(rc));
>>>>>>                         continue;
>>>>>>                 }
>>>>>>
>>>>>> but I cannot find out  what what this property should be. Anyone?
>>>>>>
>>>>>
>>>>> Laurentiu,
>>>>>
>>>>> Can you take a look?
>>>>>
>>>>> York
>>>>
>>>> I might have missed it, but did this go anywhere?
>>>>
>>>
>>> No. It didn't go anywhere. Laurentiu, can you follow up?
>>>
>>
>> Hi Jocke, York,
>>
>> Sorry for the late reply. I didn't noticed the thread in time.
>>
>> You need this patch:
>>
>> https://patchwork.ozlabs.org/patch/411910/
> 
> Great, I guess this will hit upstream any day now?
> 

I'm thinking York will pick it up in one of the following pull requests.

---
Best Regards, Laurentiu

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
  2014-11-26 12:34           ` Laurentiu Tudor
@ 2014-12-01 17:26             ` York Sun
  2014-12-01 18:31               ` Joakim Tjernlund
  0 siblings, 1 reply; 10+ messages in thread
From: York Sun @ 2014-12-01 17:26 UTC (permalink / raw)
  To: u-boot

On 11/26/2014 04:34 AM, Laurentiu Tudor wrote:
>>>
>>> Hi Jocke, York,
>>>
>>> Sorry for the late reply. I didn't noticed the thread in time.
>>>
>>> You need this patch:
>>>
>>> https://patchwork.ozlabs.org/patch/411910/
>>
>> Great, I guess this will hit upstream any day now?
>>
> 
> I'm thinking York will pick it up in one of the following pull requests.
> 

I am merging patches in the order of date received. We will get there eventually.

York

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
  2014-12-01 17:26             ` York Sun
@ 2014-12-01 18:31               ` Joakim Tjernlund
  2014-12-01 18:43                 ` York Sun
  0 siblings, 1 reply; 10+ messages in thread
From: Joakim Tjernlund @ 2014-12-01 18:31 UTC (permalink / raw)
  To: u-boot

York Sun <yorksun@freescale.com> wrote on 2014/12/01 18:26:21:
> On 11/26/2014 04:34 AM, Laurentiu Tudor wrote:
> >>>
> >>> Hi Jocke, York,
> >>>
> >>> Sorry for the late reply. I didn't noticed the thread in time.
> >>>
> >>> You need this patch:
> >>>
> >>> https://patchwork.ozlabs.org/patch/411910/
> >>
> >> Great, I guess this will hit upstream any day now?
> >>
> > 
> > I'm thinking York will pick it up in one of the following pull 
requests.
> > 
> 
> I am merging patches in the order of date received. We will get there 
eventually.
> 

May I suggest bug fixes gets priority and are fast tracked?

 Jocke

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND
  2014-12-01 18:31               ` Joakim Tjernlund
@ 2014-12-01 18:43                 ` York Sun
  0 siblings, 0 replies; 10+ messages in thread
From: York Sun @ 2014-12-01 18:43 UTC (permalink / raw)
  To: u-boot

On 12/01/2014 10:31 AM, Joakim Tjernlund wrote:
> York Sun <yorksun@freescale.com> wrote on 2014/12/01 18:26:21:
>> On 11/26/2014 04:34 AM, Laurentiu Tudor wrote:
>>>>>
>>>>> Hi Jocke, York,
>>>>>
>>>>> Sorry for the late reply. I didn't noticed the thread in time.
>>>>>
>>>>> You need this patch:
>>>>>
>>>>> https://patchwork.ozlabs.org/patch/411910/
>>>>
>>>> Great, I guess this will hit upstream any day now?
>>>>
>>>
>>> I'm thinking York will pick it up in one of the following pull 
> requests.
>>>
>>
>> I am merging patches in the order of date received. We will get there 
> eventually.
>>
> 
> May I suggest bug fixes gets priority and are fast tracked?
> 

Bug fix has priority. It is not about schedule, but about my capability to test
each patch. Next release is schedule to be mid January. Before that you can
apply the patch locally.

York

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-12-01 18:43 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-24 15:39 [U-Boot] WARNING Could not get liodn of node /pcie@ffe240000: FDT_ERR_NOTFOUND Joakim Tjernlund
2014-10-24 16:02 ` York Sun
2014-11-24  7:30   ` Joakim Tjernlund
2014-11-24 16:57     ` York Sun
2014-11-25  8:49       ` Laurentiu Tudor
2014-11-26  8:55         ` Joakim Tjernlund
2014-11-26 12:34           ` Laurentiu Tudor
2014-12-01 17:26             ` York Sun
2014-12-01 18:31               ` Joakim Tjernlund
2014-12-01 18:43                 ` York Sun

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.