 6f77685609
			
		
	
	
		6f77685609
		
	
	
	
	
		
			
			mainly in the kernel and headers. This split based on work by Ingmar Alting <iaalting@cs.vu.nl> done for his Minix PowerPC architecture port. . kernel does not program the interrupt controller directly, do any other architecture-dependent operations, or contain assembly any more, but uses architecture-dependent functions in arch/$(ARCH)/. . architecture-dependent constants and types defined in arch/$(ARCH)/include. . <ibm/portio.h> moved to <minix/portio.h>, as they have become, for now, architecture-independent functions. . int86, sdevio, readbios, and iopenable are now i386-specific kernel calls and live in arch/i386/do_* now. . i386 arch now supports even less 86 code; e.g. mpx86.s and klib86.s have gone, and 'machine.protected' is gone (and always taken to be 1 in i386). If 86 support is to return, it should be a new architecture. . prototypes for the architecture-dependent functions defined in kernel/arch/$(ARCH)/*.c but used in kernel/ are in kernel/proto.h . /etc/make.conf included in makefiles and shell scripts that need to know the building architecture; it defines ARCH=<arch>, currently only i386. . some basic per-architecture build support outside of the kernel (lib) . in clock.c, only dequeue a process if it was ready . fixes for new include files files deleted: . mpx/klib.s - only for choosing between mpx/klib86 and -386 . klib86.s - only for 86 i386-specific files files moved (or arch-dependent stuff moved) to arch/i386/: . mpx386.s (entry point) . klib386.s . sconst.h . exception.c . protect.c . protect.h . i8269.c
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* The kernel call implemented in this file:
 | |
|  *   m_type:	SYS_INT86
 | |
|  *
 | |
|  * The parameters for this kernel call are:
 | |
|  *    m1_p1:	INT86_REG86     
 | |
|  */
 | |
| 
 | |
| #include "../../system.h"
 | |
| #include <minix/type.h>
 | |
| #include <minix/endpoint.h>
 | |
| #include <minix/portio.h>
 | |
| #include <ibm/int86.h>
 | |
| 
 | |
| #include "proto.h"
 | |
| 
 | |
| struct reg86u reg86;
 | |
| 
 | |
| /*===========================================================================*
 | |
|  *				do_int86					     *
 | |
|  *===========================================================================*/
 | |
| PUBLIC int do_int86(m_ptr)
 | |
| register message *m_ptr;	/* pointer to request message */
 | |
| {
 | |
|   vir_bytes caller_vir;
 | |
|   phys_bytes caller_phys, kernel_phys;
 | |
| 
 | |
|   caller_vir = (vir_bytes) m_ptr->INT86_REG86;
 | |
|   caller_phys = umap_local(proc_addr(who_p), D, caller_vir, sizeof(reg86));
 | |
|   if (0 == caller_phys) return(EFAULT);
 | |
|   kernel_phys = vir2phys(®86);
 | |
|   phys_copy(caller_phys, kernel_phys, (phys_bytes) sizeof(reg86));
 | |
| 
 | |
|   level0(int86);
 | |
| 
 | |
|   /* Copy results back to the caller */
 | |
|   phys_copy(kernel_phys, caller_phys, (phys_bytes) sizeof(reg86));
 | |
| 
 | |
|   /* The BIOS call eats interrupts. Call get_randomness to generate some
 | |
|    * entropy. Normally, get_randomness is called from an interrupt handler.
 | |
|    * Figuring out the exact source is too complicated. CLOCK_IRQ is normally
 | |
|    * not very random.
 | |
|    */
 | |
|   lock(0, "do_int86");
 | |
|   get_randomness(CLOCK_IRQ);
 | |
|   unlock(0);
 | |
| 
 | |
|   return(OK);
 | |
| }
 |