* Quick question about dts
@ 2008-08-05 6:56 M. Warner Losh
2008-08-05 7:35 ` Marco Stornelli
0 siblings, 1 reply; 4+ messages in thread
From: M. Warner Losh @ 2008-08-05 6:56 UTC (permalink / raw)
To: linuxppc-embedded
I have a .dts file that works with 2.6.18 (MV Pro 5.0). I encode it
directly into the kernel image. However, when I try to use it with my
2.6.23, 2.6.24 or 2.6.25 kernel trees, it doesn't work at all. In the
MV Pro 5.0 kernel, I hacked the startup sequence to store a pointer to
this blob in r3 so that it is moved in. I've done something similar
in -current (for reasons that are too complicated to really explain
well, we can't do this via the normal boot loader mechanisms). The
dtc complains that the interrupt-controller property is obsolete on
the chosen device.
Does any documentation exist for how dts has evolved? I'd like to
forward port what I have without examining the .dts files from both
versions and guessing...
Warner
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Quick question about dts
2008-08-05 6:56 Quick question about dts M. Warner Losh
@ 2008-08-05 7:35 ` Marco Stornelli
2008-08-05 14:41 ` Warner Losh
2008-08-06 12:22 ` Matt Sealey
0 siblings, 2 replies; 4+ messages in thread
From: Marco Stornelli @ 2008-08-05 7:35 UTC (permalink / raw)
To: M. Warner Losh; +Cc: linuxppc-embedded
M. Warner Losh ha scritto:
> I have a .dts file that works with 2.6.18 (MV Pro 5.0). I encode it
> directly into the kernel image. However, when I try to use it with my
> 2.6.23, 2.6.24 or 2.6.25 kernel trees, it doesn't work at all. In the
> MV Pro 5.0 kernel, I hacked the startup sequence to store a pointer to
> this blob in r3 so that it is moved in. I've done something similar
> in -current (for reasons that are too complicated to really explain
> well, we can't do this via the normal boot loader mechanisms). The
> dtc complains that the interrupt-controller property is obsolete on
> the chosen device.
>
> Does any documentation exist for how dts has evolved? I'd like to
> forward port what I have without examining the .dts files from both
> versions and guessing...
>
> Warner
>
> _______________________________________________
> Linuxppc-embedded mailing list
> Linuxppc-embedded@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>
Check out the kernel documentation booting-without-of.txt of your version.
Regards,
--
Marco Stornelli
Embedded Software Engineer
CoRiTeL - Consorzio di Ricerca sulle Telecomunicazioni
http://www.coritel.it
marco.stornelli@coritel.it
+39 06 72582838
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Quick question about dts
2008-08-05 7:35 ` Marco Stornelli
@ 2008-08-05 14:41 ` Warner Losh
2008-08-06 12:22 ` Matt Sealey
1 sibling, 0 replies; 4+ messages in thread
From: Warner Losh @ 2008-08-05 14:41 UTC (permalink / raw)
To: marco.stornelli; +Cc: linuxppc-embedded
From: Marco Stornelli <marco.stornelli@coritel.it>
Subject: Re: Quick question about dts
Date: Tue, 05 Aug 2008 09:35:15 +0200
> M. Warner Losh ha scritto:
> > I have a .dts file that works with 2.6.18 (MV Pro 5.0). I encode it
> > directly into the kernel image. However, when I try to use it with my
> > 2.6.23, 2.6.24 or 2.6.25 kernel trees, it doesn't work at all. In the
> > MV Pro 5.0 kernel, I hacked the startup sequence to store a pointer to
> > this blob in r3 so that it is moved in. I've done something similar
> > in -current (for reasons that are too complicated to really explain
> > well, we can't do this via the normal boot loader mechanisms). The
> > dtc complains that the interrupt-controller property is obsolete on
> > the chosen device.
> >
> > Does any documentation exist for how dts has evolved? I'd like to
> > forward port what I have without examining the .dts files from both
> > versions and guessing...
> >
> > Warner
> >
> > _______________________________________________
> > Linuxppc-embedded mailing list
> > Linuxppc-embedded@ozlabs.org
> > https://ozlabs.org/mailman/listinfo/linuxppc-embedded
> >
>
> Check out the kernel documentation booting-without-of.txt of your version.
Thanks. I've already read this for both versions of the kernel. It
doesn't tell me how dts has evolved. It just tells me, mostly, what
is current for each version.
I've poked a little at the diffs between different versions. But
these diffs are only what, not why.
Warner
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Quick question about dts
2008-08-05 7:35 ` Marco Stornelli
2008-08-05 14:41 ` Warner Losh
@ 2008-08-06 12:22 ` Matt Sealey
1 sibling, 0 replies; 4+ messages in thread
From: Matt Sealey @ 2008-08-06 12:22 UTC (permalink / raw)
To: Marco Stornelli; +Cc: M. Warner Losh, linuxppc-embedded
Marco Stornelli wrote:
> M. Warner Losh ha scritto:
>> I have a .dts file that works with 2.6.18 (MV Pro 5.0). I encode it
>> directly into the kernel image. However, when I try to use it with my
>> 2.6.23, 2.6.24 or 2.6.25 kernel trees, it doesn't work at all. In the
>> MV Pro 5.0 kernel, I hacked the startup sequence to store a pointer to
>> this blob in r3 so that it is moved in. I've done something similar
>> in -current (for reasons that are too complicated to really explain
>> well, we can't do this via the normal boot loader mechanisms). The
>> dtc complains that the interrupt-controller property is obsolete on
>> the chosen device.
>>
>> Does any documentation exist for how dts has evolved? I'd like to
>> forward port what I have without examining the .dts files from both
>> versions and guessing...
>>
>
> Check out the kernel documentation booting-without-of.txt of your version.
Better yet, go get the ePAPR specification from Power.org?
It's easier to read :)
--
Matt Sealey <matt@genesi-usa.com>
Genesi, Manager, Developer Relations
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-08-06 12:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-05 6:56 Quick question about dts M. Warner Losh
2008-08-05 7:35 ` Marco Stornelli
2008-08-05 14:41 ` Warner Losh
2008-08-06 12:22 ` Matt Sealey
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).