Linux MIPS Architecture development
 help / color / mirror / Atom feed
* Page fault question
@ 2003-09-24  7:36 Gill
  2003-09-24  7:36 ` Gill
  2003-09-24 10:05 ` Kevin D. Kissell
  0 siblings, 2 replies; 4+ messages in thread
From: Gill @ 2003-09-24  7:36 UTC (permalink / raw)
  To: linux-mips

[-- Attachment #1: Type: text/plain, Size: 663 bytes --]

Hello -

 

I'm currently porting vmlinux from NEC's EMMA2L platform to EMMA2.  The
problem I'm having is that linux hangs when it attempts to do its first page
fault: the page fault handler is successfully called, the call to
handle_mm_fault returns 2 (major fault).but then code execution appears to
just stop.  Linux is not completely dead, however - it still responds to a
timer interrupt.

 

As the code for handling page faults is standard code, and TLB hardware
should be the same on EMMA2 as on EMMA2L (where it works!), I don't
understand what's gone wrong!  Does anyone have any ideas?

 

Thanks for your help,

 

 

Gill


[-- Attachment #2: Type: text/html, Size: 2665 bytes --]

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

* Page fault question
  2003-09-24  7:36 Page fault question Gill
@ 2003-09-24  7:36 ` Gill
  2003-09-24 10:05 ` Kevin D. Kissell
  1 sibling, 0 replies; 4+ messages in thread
From: Gill @ 2003-09-24  7:36 UTC (permalink / raw)
  To: linux-mips

[-- Attachment #1: Type: text/plain, Size: 663 bytes --]

Hello -

 

I'm currently porting vmlinux from NEC's EMMA2L platform to EMMA2.  The
problem I'm having is that linux hangs when it attempts to do its first page
fault: the page fault handler is successfully called, the call to
handle_mm_fault returns 2 (major fault).but then code execution appears to
just stop.  Linux is not completely dead, however - it still responds to a
timer interrupt.

 

As the code for handling page faults is standard code, and TLB hardware
should be the same on EMMA2 as on EMMA2L (where it works!), I don't
understand what's gone wrong!  Does anyone have any ideas?

 

Thanks for your help,

 

 

Gill


[-- Attachment #2: Type: text/html, Size: 2665 bytes --]

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

* Re: Page fault question
  2003-09-24  7:36 Page fault question Gill
  2003-09-24  7:36 ` Gill
@ 2003-09-24 10:05 ` Kevin D. Kissell
  2003-09-24 10:05   ` Kevin D. Kissell
  1 sibling, 1 reply; 4+ messages in thread
From: Kevin D. Kissell @ 2003-09-24 10:05 UTC (permalink / raw)
  To: Gill, linux-mips

[-- Attachment #1: Type: text/plain, Size: 1336 bytes --]

The EMMA2 (uPD61130) uses the NEC Vr4130 core, wheras the EMMA2L (uPD61120)
uses a MIPS 4Kc core.  The 4Kc is a MIPS32-compliant core, but the Vr41xx family
predates the MIPS32 spec for the MMU interface, and has some significant incompatibilities,
mostly due to the fact that the Vr4100's assume a 1K page granularity, versus 4K for the 4Kc
and almost all other MIPS processors.  You can't use the same MMU code for both chips.
One kernel needs to be configured for a "MIPS32" CPU, the other for "R41xx".
  ----- Original Message ----- 
  From: Gill 
  To: linux-mips@linux-mips.org 
  Sent: Wednesday, September 24, 2003 9:36 AM
  Subject: Page fault question


  Hello -



  I'm currently porting vmlinux from NEC's EMMA2L platform to EMMA2.  The problem I'm having is that linux hangs when it attempts to do its first page fault: the page fault handler is successfully called, the call to handle_mm_fault returns 2 (major fault).but then code execution appears to just stop.  Linux is not completely dead, however - it still responds to a timer interrupt.



  As the code for handling page faults is standard code, and TLB hardware should be the same on EMMA2 as on EMMA2L (where it works!), I don't understand what's gone wrong!  Does anyone have any ideas?



  Thanks for your help,





  Gill

[-- Attachment #2: Type: text/html, Size: 4467 bytes --]

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

* Re: Page fault question
  2003-09-24 10:05 ` Kevin D. Kissell
@ 2003-09-24 10:05   ` Kevin D. Kissell
  0 siblings, 0 replies; 4+ messages in thread
From: Kevin D. Kissell @ 2003-09-24 10:05 UTC (permalink / raw)
  To: Gill, linux-mips

[-- Attachment #1: Type: text/plain, Size: 1336 bytes --]

The EMMA2 (uPD61130) uses the NEC Vr4130 core, wheras the EMMA2L (uPD61120)
uses a MIPS 4Kc core.  The 4Kc is a MIPS32-compliant core, but the Vr41xx family
predates the MIPS32 spec for the MMU interface, and has some significant incompatibilities,
mostly due to the fact that the Vr4100's assume a 1K page granularity, versus 4K for the 4Kc
and almost all other MIPS processors.  You can't use the same MMU code for both chips.
One kernel needs to be configured for a "MIPS32" CPU, the other for "R41xx".
  ----- Original Message ----- 
  From: Gill 
  To: linux-mips@linux-mips.org 
  Sent: Wednesday, September 24, 2003 9:36 AM
  Subject: Page fault question


  Hello -



  I'm currently porting vmlinux from NEC's EMMA2L platform to EMMA2.  The problem I'm having is that linux hangs when it attempts to do its first page fault: the page fault handler is successfully called, the call to handle_mm_fault returns 2 (major fault).but then code execution appears to just stop.  Linux is not completely dead, however - it still responds to a timer interrupt.



  As the code for handling page faults is standard code, and TLB hardware should be the same on EMMA2 as on EMMA2L (where it works!), I don't understand what's gone wrong!  Does anyone have any ideas?



  Thanks for your help,





  Gill

[-- Attachment #2: Type: text/html, Size: 4467 bytes --]

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

end of thread, other threads:[~2003-09-24 10:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-24  7:36 Page fault question Gill
2003-09-24  7:36 ` Gill
2003-09-24 10:05 ` Kevin D. Kissell
2003-09-24 10:05   ` Kevin D. Kissell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox