]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/ppc/PseudoKernel.c
xnu-344.21.74.tar.gz
[apple/xnu.git] / osfmk / ppc / PseudoKernel.c
index 79ad19dbd67cf5c2c1825aca0148f7d49f4acb00..b41b1352c25bac93335b4909c7b36f452d84f043 100644 (file)
@@ -3,19 +3,22 @@
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * The contents of this file constitute Original Code as defined in and
- * are subject to the Apple Public Source License Version 1.1 (the
- * "License").  You may not use this file except in compliance with the
- * License.  Please obtain a copy of the License at
- * http://www.apple.com/publicsource and read it before using this file.
+ * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
  * 
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * This file contains Original Code and/or Modifications of Original Code
+ * as defined in and that are subject to the Apple Public Source License
+ * Version 2.0 (the 'License'). You may not use this file except in
+ * compliance with the License. Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this
+ * file.
+ * 
+ * The Original Code and all software distributed under the License are
+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
- * License for the specific language governing rights and limitations
- * under the License.
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
+ * Please see the License for the specific language governing rights and
+ * limitations under the License.
  * 
  * @APPLE_LICENSE_HEADER_END@
  */
@@ -42,7 +45,6 @@
 #include <vm/vm_kern.h>
 
 void bbSetRupt(ReturnHandler *rh, thread_act_t ct);
-void DumpTheSave(struct savearea *save);                       /* (TEST/DEBUG) */
 
 /*
 ** Function:   NotifyInterruption
@@ -60,7 +62,6 @@ kern_return_t syscall_notify_interrupt ( void ) {
   
     UInt32                     interruptState; 
     task_t                     task;
-    spl_t                      s;
        thread_act_t    act, fact;
        thread_t                thread;
        bbRupt                  *bbr;
@@ -106,7 +107,7 @@ kern_return_t syscall_notify_interrupt ( void ) {
                return KERN_SUCCESS;
        }
 
-       if(act->mact.bbPendRupt >= 16) {                                /* Have we hit the arbitrary maximum? */
+       if(act->mact.emPendRupts >= 16) {                               /* Have we hit the arbitrary maximum? */
                act_unlock_thread(act);                                         /* Unlock the activation */
                return KERN_RESOURCE_SHORTAGE;                          /* Too many pending right now */
        }
@@ -116,15 +117,13 @@ kern_return_t syscall_notify_interrupt ( void ) {
                return KERN_RESOURCE_SHORTAGE;                          /* No storage... */
        }
        
-       (void)hw_atomic_add(&act->mact.bbPendRupt, 1);  /* Count this 'rupt */
+       (void)hw_atomic_add(&act->mact.emPendRupts, 1); /* Count this 'rupt */
        bbr->rh.handler = bbSetRupt;                                    /* Set interruption routine */
 
        bbr->rh.next = act->handlers;                                   /* Put our interrupt at the start of the list */
        act->handlers = &bbr->rh;
 
-       s = splsched();                                                                 /* No talking in class */
        act_set_apc(act);                                                               /* Set an APC AST */
-       splx(s);                                                                                /* Ok, you can talk now */
 
        act_unlock_thread(act);                                                 /* Unlock the activation */
        return KERN_SUCCESS;                                                    /* We're done... */
@@ -150,9 +149,9 @@ void bbSetRupt(ReturnHandler *rh, thread_act_t act) {
                return;
        }
 
-       (void)hw_atomic_sub(&act->mact.bbPendRupt, 1);  /* Uncount this 'rupt */
+       (void)hw_atomic_sub(&act->mact.emPendRupts, 1); /* Uncount this 'rupt */
 
-       if(!(sv = (savearea *)find_user_regs(act))) {   /* Find the user state registers */
+       if(!(sv = find_user_regs(act))) {                               /* Find the user state registers */
                kfree((vm_offset_t)bbr, sizeof(bbRupt));        /* Couldn't find 'em, release the control block */
                return;
        }
@@ -171,13 +170,16 @@ void bbSetRupt(ReturnHandler *rh, thread_act_t act) {
                        bttd->InterruptControlWord = (bttd->InterruptControlWord & ~kInterruptStateMask) | 
                                (kInPseudoKernel << kInterruptStateShift);
                                
-                       bttd->exceptionInfo.srr0 = sv->save_srr0;               /* Save the current PC */
-                       sv->save_srr0 = bttd->InterruptVector;                  /* Set the new PC */
-                       bttd->exceptionInfo.sprg1 = sv->save_r1;                /* Save the original R1 */
-                       sv->save_r1 = bttd->exceptionInfo.sprg0;                /* Set the new R1 */
-                       bttd->exceptionInfo.srr1 = sv->save_srr1;               /* Save the original MSR */
+                       bttd->exceptionInfo.srr0 = (unsigned int)sv->save_srr0;         /* Save the current PC */
+                       sv->save_srr0 = (uint64_t)bttd->InterruptVector;        /* Set the new PC */
+                       bttd->exceptionInfo.sprg1 = (unsigned int)sv->save_r1;          /* Save the original R1 */
+                       sv->save_r1 = (uint64_t)bttd->exceptionInfo.sprg0;      /* Set the new R1 */
+                       bttd->exceptionInfo.srr1 = (unsigned int)sv->save_srr1;         /* Save the original MSR */
                        sv->save_srr1 &= ~(MASK(MSR_BE)|MASK(MSR_SE));  /* Clear SE|BE bits in MSR */
                        act->mact.specFlags &= ~bbNoMachSC;                             /* reactivate Mach SCs */ 
+                       disable_preemption();                                                   /* Don't move us around */
+                       per_proc_info[cpu_number()].spcFlags = act->mact.specFlags;     /* Copy the flags */
+                       enable_preemption();                                                    /* Ok to move us around */
                        /* drop through to post int in backup CR2 in ICW */
 
                case kInExceptionHandler:
@@ -213,8 +215,9 @@ kern_return_t enable_bluebox(
         ) {
        
        thread_t                th;
-       vm_offset_t             kerndescaddr, physdescaddr, origdescoffset;
+       vm_offset_t             kerndescaddr, origdescoffset;
        kern_return_t   ret;
+       ppnum_t                 physdescpage;
        
        th = current_thread();                                                                  /* Get our thread */                                    
 
@@ -240,8 +243,8 @@ kern_return_t enable_bluebox(
                return KERN_FAILURE;    
        }
                
-       physdescaddr =                                                                                  /* Get the physical address of the page */
-               pmap_extract(th->top_act->map->pmap, (vm_offset_t) Desc_TableStart);
+       physdescpage =                                                                                  /* Get the physical page number of the page */
+               pmap_find_phys(th->top_act->map->pmap, (addr64_t)Desc_TableStart);
 
        ret =  kmem_alloc_pageable(kernel_map, &kerndescaddr, PAGE_SIZE);       /* Find a virtual address to use */
        if(ret != KERN_SUCCESS) {                                                               /* Could we get an address? */
@@ -253,16 +256,25 @@ kern_return_t enable_bluebox(
        }
        
        (void) pmap_enter(kernel_pmap,                                                  /* Map this into the kernel */
-               kerndescaddr, physdescaddr, VM_PROT_READ|VM_PROT_WRITE, 
-               TRUE);
+               kerndescaddr, physdescpage, VM_PROT_READ|VM_PROT_WRITE, 
+               VM_WIMG_USE_DEFAULT, TRUE);
        
        th->top_act->mact.bbDescAddr = (unsigned int)kerndescaddr+origdescoffset;       /* Set kernel address of the table */
-       th->top_act->mact.bbUserDA = (unsigned int)Desc_TableStart;                                     /* Set user address of the table */
-       th->top_act->mact.bbTableStart = (unsigned int)TWI_TableStart;                          /* Set address of the trap table */
-       th->top_act->mact.bbTaskID = (unsigned int)taskID;                                                      /* Assign opaque task ID */
-       th->top_act->mact.bbTaskEnv = 0;                                                                                        /* Clean task environment data */
-       th->top_act->mact.bbPendRupt = 0;                                                                                       /* Clean pending 'rupt count */
-       th->top_act->mact.specFlags &= ~bbNoMachSC;                                                                     /* Make sure mach SCs are enabled */
+       th->top_act->mact.bbUserDA = (unsigned int)Desc_TableStart;     /* Set user address of the table */
+       th->top_act->mact.bbTableStart = (unsigned int)TWI_TableStart;  /* Set address of the trap table */
+       th->top_act->mact.bbTaskID = (unsigned int)taskID;              /* Assign opaque task ID */
+       th->top_act->mact.bbTaskEnv = 0;                                                /* Clean task environment data */
+       th->top_act->mact.emPendRupts = 0;                                              /* Clean pending 'rupt count */
+       th->top_act->mact.specFlags &= ~(bbNoMachSC | bbPreemptive);    /* Make sure mach SCs are enabled and we are not marked preemptive */
+       th->top_act->mact.specFlags |= bbThread;                                /* Set that we are Classic thread */
+               
+       if(!(((BTTD_t *)kerndescaddr)->InterruptVector)) {              /* See if this is a preemptive (MP) BlueBox thread */
+               th->top_act->mact.specFlags |= bbPreemptive;            /* Yes, remember it */
+       }
+               
+       disable_preemption();                                                                   /* Don't move us around */
+       per_proc_info[cpu_number()].spcFlags = th->top_act->mact.specFlags;     /* Copy the flags */
+       enable_preemption();                                                                    /* Ok to move us around */
                
        {
                /* mark the proc to indicate that this is a TBE proc */
@@ -303,8 +315,11 @@ void disable_bluebox_internal(thread_act_t act) {                  /* Terminate bluebox */
        act->mact.bbTableStart = 0;                                                             /* Clear user pointer to TWI table */
        act->mact.bbTaskID = 0;                                                                 /* Clear opaque task ID */
        act->mact.bbTaskEnv = 0;                                                                /* Clean task environment data */
-       act->mact.bbPendRupt = 0;                                                               /* Clean pending 'rupt count */
-       act->mact.specFlags &= ~bbNoMachSC;                                             /* Clean up Blue Box enables */
+       act->mact.emPendRupts = 0;                                                              /* Clean pending 'rupt count */
+       act->mact.specFlags &= ~(bbNoMachSC | bbPreemptive | bbThread); /* Clean up Blue Box enables */
+       disable_preemption();                                                           /* Don't move us around */
+       per_proc_info[cpu_number()].spcFlags = act->mact.specFlags;     /* Copy the flags */
+       enable_preemption();                                                            /* Ok to move us around */
        return;
 }
 
@@ -379,12 +394,17 @@ int bb_settaskenv( struct savearea *save )
        task_unlock(task);                                                              /* Safe to release now */
 
        act->mact.bbTaskEnv = save->save_r4;
+       if(act == current_act()) {                                              /* Are we setting our own? */
+               disable_preemption();                                           /* Don't move us around */
+               per_proc_info[cpu_number()].ppbbTaskEnv = act->mact.bbTaskEnv;  /* Remember the environment */
+               enable_preemption();                                            /* Ok to move us around */
+       }
 
        act_unlock_thread(act);                                                 /* Unlock the activation */
        save->save_r3 = 0;
-       return KERN_SUCCESS;
+       return 1;
 
 failure:
        save->save_r3 = -1;                                                             /* we failed to find the taskID */
-       return KERN_FAILURE;
+       return 1;
 }