 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
		
			
				
	
	
		
			169 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			169 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* The kernel call implemented in this file:
 | |
|  *   m_type:	SYS_GETINFO
 | |
|  *
 | |
|  * The parameters for this kernel call are:
 | |
|  *    m1_i3:	I_REQUEST	(what info to get)	
 | |
|  *    m1_p1:	I_VAL_PTR 	(where to put it)	
 | |
|  *    m1_i1:	I_VAL_LEN 	(maximum length expected, optional)	
 | |
|  *    m1_p2:	I_VAL_PTR2	(second, optional pointer)	
 | |
|  *    m1_i2:	I_VAL_LEN2_E	(second length or process nr)	
 | |
|  */
 | |
| 
 | |
| #include "../system.h"
 | |
| 
 | |
| #if !( POWERPC )
 | |
| 
 | |
| static unsigned long bios_buf[1024];	/* 4K, what about alignment */
 | |
| static vir_bytes bios_buf_vir, bios_buf_len;
 | |
| 
 | |
| #endif /* #if !( POWERPC ) */
 | |
| 
 | |
| 
 | |
| #if USE_GETINFO
 | |
| 
 | |
| /*===========================================================================*
 | |
|  *			        do_getinfo				     *
 | |
|  *===========================================================================*/
 | |
| PUBLIC int do_getinfo(m_ptr)
 | |
| register message *m_ptr;	/* pointer to request message */
 | |
| {
 | |
| /* Request system information to be copied to caller's address space. This
 | |
|  * call simply copies entire data structures to the caller.
 | |
|  */
 | |
|   size_t length;
 | |
|   phys_bytes src_phys; 
 | |
|   phys_bytes dst_phys; 
 | |
|   int proc_nr, nr_e, nr;
 | |
| 
 | |
|   /* Set source address and length based on request type. */
 | |
|   switch (m_ptr->I_REQUEST) {	
 | |
|     case GET_MACHINE: {
 | |
|         length = sizeof(struct machine);
 | |
|         src_phys = vir2phys(&machine);
 | |
|         break;
 | |
|     }
 | |
|     case GET_KINFO: {
 | |
|         length = sizeof(struct kinfo);
 | |
|         src_phys = vir2phys(&kinfo);
 | |
|         break;
 | |
|     }
 | |
|     case GET_LOADINFO: {
 | |
|         length = sizeof(struct loadinfo);
 | |
|         src_phys = vir2phys(&kloadinfo);
 | |
|         break;
 | |
|     }
 | |
|     case GET_IMAGE: {
 | |
|         length = sizeof(struct boot_image) * NR_BOOT_PROCS;
 | |
|         src_phys = vir2phys(image);
 | |
|         break;
 | |
|     }
 | |
|     case GET_IRQHOOKS: {
 | |
|         length = sizeof(struct irq_hook) * NR_IRQ_HOOKS;
 | |
|         src_phys = vir2phys(irq_hooks);
 | |
|         break;
 | |
|     }
 | |
|     case GET_SCHEDINFO: {
 | |
|         /* This is slightly complicated because we need two data structures
 | |
|          * at once, otherwise the scheduling information may be incorrect.
 | |
|          * Copy the queue heads and fall through to copy the process table. 
 | |
|          */
 | |
|         length = sizeof(struct proc *) * NR_SCHED_QUEUES;
 | |
|         src_phys = vir2phys(rdy_head);
 | |
| 	okendpt(m_ptr->m_source, &proc_nr);
 | |
|         dst_phys = numap_local(proc_nr, (vir_bytes) m_ptr->I_VAL_PTR2,
 | |
|                 length); 
 | |
|         if (src_phys == 0 || dst_phys == 0) return(EFAULT);
 | |
|         phys_copy(src_phys, dst_phys, length);
 | |
|         /* fall through */
 | |
|     }
 | |
|     case GET_PROCTAB: {
 | |
|         length = sizeof(struct proc) * (NR_PROCS + NR_TASKS);
 | |
|         src_phys = vir2phys(proc);
 | |
|         break;
 | |
|     }
 | |
|     case GET_PRIVTAB: {
 | |
|         length = sizeof(struct priv) * (NR_SYS_PROCS);
 | |
|         src_phys = vir2phys(priv);
 | |
|         break;
 | |
|     }
 | |
|     case GET_PROC: {
 | |
|         nr_e = (m_ptr->I_VAL_LEN2_E == SELF) ?
 | |
| 		m_ptr->m_source : m_ptr->I_VAL_LEN2_E;
 | |
| 	if(!isokendpt(nr_e, &nr)) return EINVAL; /* validate request */
 | |
|         length = sizeof(struct proc);
 | |
|         src_phys = vir2phys(proc_addr(nr));
 | |
|         break;
 | |
|     }
 | |
|     case GET_MONPARAMS: {
 | |
|         src_phys = kinfo.params_base;		/* already is a physical */
 | |
|         length = kinfo.params_size;
 | |
|         break;
 | |
|     }
 | |
|     case GET_RANDOMNESS: {		
 | |
|         static struct randomness copy;		/* copy to keep counters */
 | |
| 	int i;
 | |
| 
 | |
|         copy = krandom;
 | |
|         for (i= 0; i<RANDOM_SOURCES; i++) {
 | |
|   		krandom.bin[i].r_size = 0;	/* invalidate random data */
 | |
|   		krandom.bin[i].r_next = 0;
 | |
| 	}
 | |
|     	length = sizeof(struct randomness);
 | |
|     	src_phys = vir2phys(©);
 | |
|     	break;
 | |
|     }
 | |
|     case GET_KMESSAGES: {
 | |
|         length = sizeof(struct kmessages);
 | |
|         src_phys = vir2phys(&kmess);
 | |
|         break;
 | |
|     }
 | |
| #if DEBUG_TIME_LOCKS
 | |
|     case GET_LOCKTIMING: {
 | |
|     length = sizeof(timingdata);
 | |
|     src_phys = vir2phys(timingdata);
 | |
|     break;
 | |
|     }
 | |
| #endif
 | |
| 
 | |
| #if !( POWERPC )        
 | |
|     case GET_BIOSBUFFER:
 | |
|     	bios_buf_vir = (vir_bytes)bios_buf;
 | |
|     	bios_buf_len = sizeof(bios_buf);
 | |
| 
 | |
|     	length = sizeof(bios_buf_len);
 | |
|     	src_phys = vir2phys(&bios_buf_len);
 | |
| 	if (length != m_ptr->I_VAL_LEN2_E) return (EINVAL);
 | |
| 	if(!isokendpt(m_ptr->m_source, &proc_nr))
 | |
| 		panic("bogus source", m_ptr->m_source);
 | |
| 	dst_phys = numap_local(proc_nr, (vir_bytes) m_ptr->I_VAL_PTR2, length); 
 | |
| 	if (src_phys == 0 || dst_phys == 0) return(EFAULT);
 | |
| 	phys_copy(src_phys, dst_phys, length);
 | |
| 
 | |
|     	length = sizeof(bios_buf_vir);
 | |
|     	src_phys = vir2phys(&bios_buf_vir);
 | |
|     	break;
 | |
| #endif /* #if !( POWERPC ) */
 | |
| 	
 | |
|     case GET_IRQACTIDS: {
 | |
|         length = sizeof(irq_actids);
 | |
|         src_phys = vir2phys(irq_actids);
 | |
|         break;
 | |
|     }
 | |
| 
 | |
|     default:
 | |
|         return(EINVAL);
 | |
|   }
 | |
| 
 | |
|   /* Try to make the actual copy for the requested data. */
 | |
|   if (m_ptr->I_VAL_LEN > 0 && length > m_ptr->I_VAL_LEN) return (E2BIG);
 | |
|   if(!isokendpt(m_ptr->m_source, &proc_nr)) 
 | |
| 	panic("bogus source", m_ptr->m_source);
 | |
|   dst_phys = numap_local(proc_nr, (vir_bytes) m_ptr->I_VAL_PTR, length); 
 | |
|   if (src_phys == 0 || dst_phys == 0) return(EFAULT);
 | |
|   phys_copy(src_phys, dst_phys, length);
 | |
|   return(OK);
 | |
| }
 | |
| 
 | |
| #endif /* USE_GETINFO */
 | |
| 
 |