added some comments to palcode and zeroed system type in HWPRB (m5 will fill in)
authorAli Saidi <saidi@eecs.umich.edu>
Tue, 11 May 2004 21:31:28 +0000 (17:31 -0400)
committerAli Saidi <saidi@eecs.umich.edu>
Tue, 11 May 2004 21:31:28 +0000 (17:31 -0400)
console/console.c:
    0 the system type, let m5 overwrite
palcode/platform_m5.s:
    add some comments and make the timer interrupt actually care what CPU it happened on

system/alpha/console/console.c
system/alpha/palcode/platform_m5.s

index 844cb4ddc17dc211ecded93f6d019b43f3316173..5e9e49ce1fc2fd968cb3b9b5d04c13bc908ef65f 100644 (file)
@@ -205,7 +205,7 @@ struct rpb xxm_rpb = {
 #if 0
    0x12,               /* 050: system type - masquarade as some random 21064 */
 #endif
-   34, /* masquerade a Tsunami RGD */
+   0, /* masquerade a Tsunami RGD */
    (1<<10),            /* 058: system variation */
    'c'|('o'<<8)|('o'<<16)|('l'<< 24),          /* 060: system revision */
    1024*4096,          /* 068: scaled interval clock intr freq  OVERRIDEN*/
index d0e751603c3ac043829c45788b5eceaadc44d23b..2da52d847a4a5e6533741d7701c56edd5ff313ce 100644 (file)
@@ -694,13 +694,15 @@ EXPORT(sys_interrupt)
 
        cmpeq   r13, 23, r12
        bne     r12, sys_int_23                 // Check for level 23 interrupt
+                                                // IPI in Tsunami
        
        cmpeq   r13, 22, r12
-       bne     r12, sys_int_22                 // Check for level 22 interrupt (might be 
-                                               //  interprocessor or timer interrupt)
+       bne     r12, sys_int_22                 // Check for level 22 interrupt 
+                                               //  timer interrupt
 
        cmpeq   r13, 21, r12
        bne     r12, sys_int_21                 // Check for level 21 interrupt
+                                                // I/O
 
        cmpeq   r13, 20, r12
        bne     r12, sys_int_20                 // Check for level 20 interrupt (might be corrected 
@@ -753,16 +755,20 @@ sys_int_23:
 
        ALIGN_BRANCH
 sys_int_22:
-        or      r31,1,r16                       // a0 means it is a I/O interrupt
-        lda     r8,0xf01(r31)
+        or      r31,1,r16                       // a0 means it is a clock interrupt
+        lda     r8,0xf01(r31)                   // build up an address for the MISC register
         sll     r8,16,r8
-        lda     r8,0xa000(r8)
-        sll     r8,16,r8
-        lda     r8,0x080(r8)
-        or      r31,0x10,r9
+        lda     r8,0xa000(r8)                   
+        sll     r8,16,r8                       
+        lda     r8,0x080(r8)                  
+
+        ldq_p   r10,0(r8)                       // read misc register
+        and     r10,0x3,r10                     // isolate CPUID
+        or      r31,0x10,r9                     // load r9 with bit to clear
+        sll     r9,r10,r9                       // left shift by CPU ID
         stq_p   r9, 0(r8)                       // clear the rtc interrupt
          
-        br     r31, pal_post_interrupt         // 
+        br     r31, pal_post_interrupt         // Tell the OS
 
 
        ALIGN_BRANCH