* EPIC Vs OpenPIC Vs MontaVista
@ 2001-11-02 13:47 Sarnath Kannan
2001-11-02 14:00 ` Dag Nygren
2001-11-02 16:03 ` Andrew Johnson
0 siblings, 2 replies; 4+ messages in thread
From: Sarnath Kannan @ 2001-11-02 13:47 UTC (permalink / raw)
To: linuxppc-embedded
Guys,
I ran into some accidental discoveries
while scanning EPIC code written by Mvista.
As I said b4 there is a descrepancy with
the OpenPIC register layout and EPIC layout.
But the way Mvista people have programmed EPIC is
good in one sense, bad in other.
The reason for assigning vector of 16 to PCI
interrupts is because each entry in the "Interrupt Source" is 32 bytes long, 16 * 32 = 512 = 0x200
which equals the difference in offsets between
the std openPIC layout and EPIC register layout.
This 16 has got NOTHING TO DO with NUM_8259_INTERRUPTS.
But Mvista code seems to assume that this feature
is because of NUM_8259_INTERRUPTS. ( See the
#define for SANDPOINT_SIO_IRQ ).
Thus while writing into Sources[16], mvista code
writes into "sources[0]" in the EPIC reigster layout.
Thus IRQ0 gets initialized to vector 16.
The "offset" field in "openpic_init" code,
is mainly used to seperate of vector spaces of
various interrupt controllers in the system.
EPIC manual clearly says that the "Interrupt
Sources" register offset start at 0x50200. mvista
code overwrites the 0x50000-0x50200 fields ( which are
actually reserved as per EPIC manual ). Thus the
reliablity of MVISTA code is a question mark .
I have come across some "Bogus interrupts" while
runing MVISTA code in my box. The above
explan may very well be the reason of why such bogus
interrupts are being generated.
I seek pardon if my observatons are wrong. Can
MVISTA guys give a proper expln to this ?
Sarnath
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: EPIC Vs OpenPIC Vs MontaVista
2001-11-02 13:47 EPIC Vs OpenPIC Vs MontaVista Sarnath Kannan
@ 2001-11-02 14:00 ` Dag Nygren
2001-11-02 16:03 ` Andrew Johnson
1 sibling, 0 replies; 4+ messages in thread
From: Dag Nygren @ 2001-11-02 14:00 UTC (permalink / raw)
To: Sarnath Kannan; +Cc: linuxppc-embedded, dag
>
> Guys,
> I ran into some accidental discoveries
> while scanning EPIC code written by Mvista.
> As I said b4 there is a descrepancy with
> the OpenPIC register layout and EPIC layout.
> But the way Mvista people have programmed EPIC is
> good in one sense, bad in other.
> The reason for assigning vector of 16 to PCI
> interrupts is because each entry in the "Interrupt Source" is 32 bytes long, 16 * 32 = 512 = 0x200
> which equals the difference in offsets between
> the std openPIC layout and EPIC register layout.
> This 16 has got NOTHING TO DO with NUM_8259_INTERRUPTS.
> But Mvista code seems to assume that this feature
> is because of NUM_8259_INTERRUPTS. ( See the
> #define for SANDPOINT_SIO_IRQ ).
> Thus while writing into Sources[16], mvista code
> writes into "sources[0]" in the EPIC reigster layout.
> Thus IRQ0 gets initialized to vector 16.
> The "offset" field in "openpic_init" code,
> is mainly used to seperate of vector spaces of
> various interrupt controllers in the system.
> EPIC manual clearly says that the "Interrupt
> Sources" register offset start at 0x50200. mvista
> code overwrites the 0x50000-0x50200 fields ( which are
> actually reserved as per EPIC manual ). Thus the
> reliablity of MVISTA code is a question mark .
> I have come across some "Bogus interrupts" while
> runing MVISTA code in my box. The above
> explan may very well be the reason of why such bogus
> interrupts are being generated.
Hi,
Funny you should write about this.!
I am just trying to fix it in a reasonable way
for my EPIC-board.
I would like to suggest a global variable ie.
OpenPIC_RegOffset
which would be inited to 0 and could be changed to
16 for a MPC107 (EPIC).
This wouldn't (shouldn't) break anything existing
and will enable the port of a EPIC-board to use
all the generic openpic routines.
Even if I don't like touching "generic" code, I even
more dislike code-duplication
I could submit the patches, if your are interested,
they are noe too big, and a review from the masses
should do the code good.
BRGDS
--
Dag Nygren email: dag@newtech.fi
Oy Espoon NewTech Ab phone: +358 9 8024910
Träsktorpet 3 fax: +358 9 8024916
02360 ESBO Mobile: +358 400 426312
FINLAND
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: EPIC Vs OpenPIC Vs MontaVista
2001-11-02 13:47 EPIC Vs OpenPIC Vs MontaVista Sarnath Kannan
2001-11-02 14:00 ` Dag Nygren
@ 2001-11-02 16:03 ` Andrew Johnson
1 sibling, 0 replies; 4+ messages in thread
From: Andrew Johnson @ 2001-11-02 16:03 UTC (permalink / raw)
To: linuxppc-embedded
Sarnath Kannan wrote:
>
> The reason for assigning vector of 16 to PCI
> interrupts is because each entry in the "Interrupt Source" is 32 bytes long, 16 * 32 = 512 = 0x200
> which equals the difference in offsets between
> the std openPIC layout and EPIC register layout.
> This 16 has got NOTHING TO DO with NUM_8259_INTERRUPTS.
> But Mvista code seems to assume that this feature
> is because of NUM_8259_INTERRUPTS. ( See the
> #define for SANDPOINT_SIO_IRQ ).
... unless the register layout for the EPIC was designed to allow an
external i8259 to be inserted into the gap, which ISTR is done on some
boards. I don't know for sure and I might be completely confused about
that, but there must have been some reason why the EPIC was designed like
that.
Just throwing that idea into the pot...
- Andrew
--
Perfection is reached, not when there is no longer anything to add,
but when there is no longer anything to take away.
- Antoine de Saint-Exupery
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Re: EPIC Vs OpenPIC Vs MontaVista
@ 2001-11-02 15:25 Sarnath Kannan
2001-11-02 17:41 ` Mark A. Greer
0 siblings, 1 reply; 4+ messages in thread
From: Sarnath Kannan @ 2001-11-02 15:25 UTC (permalink / raw)
To: Dag Nygren; +Cc: linuxppc-embedded
> Hi,
>
> Funny you should write about this.!
> I am just trying to fix it in a reasonable way
> for my EPIC-board.
:-) Oh really ! Good. Since I am new to the group
I dint know its an existing bug ! but how can
one tolerate populating reserved areas ? That
sounds very dangerous to me !
> I would like to suggest a global variable ie.
> OpenPIC_RegOffset
> which would be inited to 0 and could be changed to
> 16 for a MPC107 (EPIC).
> This wouldn't (shouldn't) break anything existing
> and will enable the port of a EPIC-board to use
> all the generic openpic routines.
>
Yeah there are plenty ways u could solve. The
best one is padding 0x200 bytes to the "OpenPIC"
structure before "Source" in case of CONFIG_SANDPOINT.
That should end the story !
> Even if I don't like touching "generic" code, I even
> more dislike code-duplication
>
> I could submit the patches, if your are interested,
> they are noe too big, and a review from the masses
> should do the code good.
>
> BRGDS
I think I can fix it myself. Thanks for the offer.
Good Luck !
Sarnath, the NATH ;-)
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: EPIC Vs OpenPIC Vs MontaVista
2001-11-02 15:25 Sarnath Kannan
@ 2001-11-02 17:41 ` Mark A. Greer
0 siblings, 0 replies; 4+ messages in thread
From: Mark A. Greer @ 2001-11-02 17:41 UTC (permalink / raw)
To: Sarnath Kannan; +Cc: Dag Nygren, linuxppc-embedded
Sarnath, Dag, Andrew,
What I think you guys are discovering is an artifact of the inadequate
interface to openpic_init()--its wider than just a 8259/107 problem. This has
been discussed before and some ideas kick around.
Since you guys seem to have the time & motivation, why don't you go back &
check out the mail archives for that/those discussion(s). If you like what
was talked about there, go with it or come up with a better solution and post
it here for everyone to comment on. It would be really nice to have a more
flexible interface to openpic_init(), et. al.
Mark
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2001-11-02 17:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-11-02 13:47 EPIC Vs OpenPIC Vs MontaVista Sarnath Kannan
2001-11-02 14:00 ` Dag Nygren
2001-11-02 16:03 ` Andrew Johnson
-- strict thread matches above, loose matches on Subject: below --
2001-11-02 15:25 Sarnath Kannan
2001-11-02 17:41 ` Mark A. Greer
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).