 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
		
			
				
	
	
		
			132 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
| /* Function prototypes. */
 | |
| 
 | |
| #ifndef PROTO_H
 | |
| #define PROTO_H
 | |
| 
 | |
| #include <minix/safecopies.h>
 | |
| #include <archtypes.h>
 | |
| 
 | |
| /* Struct declarations. */
 | |
| struct proc;
 | |
| struct timer;
 | |
| 
 | |
| /* clock.c */
 | |
| _PROTOTYPE( void clock_task, (void)					);
 | |
| _PROTOTYPE( clock_t get_uptime, (void)					);
 | |
| _PROTOTYPE( void set_timer, (struct timer *tp, clock_t t, tmr_func_t f)	);
 | |
| _PROTOTYPE( void reset_timer, (struct timer *tp)			);
 | |
| 
 | |
| /* main.c */
 | |
| _PROTOTYPE( void main, (void)						);
 | |
| _PROTOTYPE( void prepare_shutdown, (int how)				);
 | |
| _PROTOTYPE( void idle_task, (void)					);
 | |
| 
 | |
| /* utility.c */
 | |
| _PROTOTYPE( int kprintf, (const char *fmt, ...)				);
 | |
| _PROTOTYPE( void panic, (_CONST char *s, int n)				);
 | |
| 
 | |
| /* proc.c */
 | |
| _PROTOTYPE( int sys_call, (int call_nr, int src_dst, 
 | |
| 					message *m_ptr, long bit_map)	);
 | |
| _PROTOTYPE( int lock_notify, (int src, int dst)				);
 | |
| _PROTOTYPE( int lock_send, (int dst, message *m_ptr)			);
 | |
| _PROTOTYPE( void lock_enqueue, (struct proc *rp)			);
 | |
| _PROTOTYPE( void lock_dequeue, (struct proc *rp)			);
 | |
| _PROTOTYPE( void balance_queues, (struct timer *tp)			);
 | |
| #if DEBUG_ENABLE_IPC_WARNINGS
 | |
| _PROTOTYPE( int isokendpt_f, (char *file, int line, endpoint_t e, int *p, int f));
 | |
| #define isokendpt_d(e, p, f) isokendpt_f(__FILE__, __LINE__, (e), (p), (f))
 | |
| #else
 | |
| _PROTOTYPE( int isokendpt_f, (endpoint_t e, int *p, int f)		);
 | |
| #define isokendpt_d(e, p, f) isokendpt_f((e), (p), (f))
 | |
| #endif
 | |
| 
 | |
| /* start.c */
 | |
| _PROTOTYPE( void cstart, (U16_t cs, U16_t ds, U16_t mds,
 | |
| 				U16_t parmoff, U16_t parmsize)		);
 | |
| 
 | |
| /* system.c */
 | |
| _PROTOTYPE( int get_priv, (register struct proc *rc, int proc_type)	);
 | |
| _PROTOTYPE( void send_sig, (int proc_nr, int sig_nr)			);
 | |
| _PROTOTYPE( void cause_sig, (int proc_nr, int sig_nr)			);
 | |
| _PROTOTYPE( void sys_task, (void)					);
 | |
| _PROTOTYPE( void get_randomness, (int source)				);
 | |
| _PROTOTYPE( int virtual_copy, (struct vir_addr *src, struct vir_addr *dst, 
 | |
| 				vir_bytes bytes)			);
 | |
| #define numap_local(proc_nr, vir_addr, bytes) \
 | |
| 	umap_local(proc_addr(proc_nr), D, (vir_addr), (bytes))
 | |
| _PROTOTYPE( phys_bytes umap_grant, (struct proc *, cp_grant_id_t,
 | |
| 	vir_bytes));
 | |
| _PROTOTYPE( phys_bytes umap_verify_grant, (struct proc *, endpoint_t,
 | |
| 	cp_grant_id_t, vir_bytes, vir_bytes, int));
 | |
| _PROTOTYPE( void clear_endpoint, (struct proc *rc)			);
 | |
| _PROTOTYPE( phys_bytes umap_bios, (struct proc *rp, vir_bytes vir_addr,
 | |
| 	vir_bytes bytes));
 | |
| 
 | |
| /* system/do_newmap.c */
 | |
| _PROTOTYPE( int newmap, (struct proc *rp, struct mem_map *map_ptr)	);
 | |
| 
 | |
| /* interrupt.c */
 | |
| _PROTOTYPE( void intr_handle,     (irq_hook_t *hook)		          );
 | |
| _PROTOTYPE( void put_irq_handler, (irq_hook_t *hook, int irq,
 | |
| 						 irq_handler_t handler)  );
 | |
| _PROTOTYPE( void rm_irq_handler, (irq_hook_t *hook)                      );
 | |
| _PROTOTYPE( void enable_irq, (irq_hook_t *hook)                        	);
 | |
| _PROTOTYPE( int disable_irq, (irq_hook_t *hook)                        );
 | |
| 
 | |
| /* debug.c */
 | |
| #if DEBUG_SCHED_CHECK
 | |
| _PROTOTYPE( void check_runqueues, (char *when) );
 | |
| #endif
 | |
| 
 | |
| /* system/do_vm.c */
 | |
| _PROTOTYPE( void vm_map_default, (struct proc *pp)			);
 | |
| 
 | |
| /* system/do_safecopy.c */
 | |
| _PROTOTYPE( int verify_grant, (endpoint_t, endpoint_t, cp_grant_id_t, vir_bytes,
 | |
| 	int, vir_bytes, vir_bytes *, endpoint_t *));
 | |
| 
 | |
| #if SPROFILE
 | |
| /* profile.c */
 | |
| _PROTOTYPE( void init_profile_clock, (u32_t)				);
 | |
| _PROTOTYPE( void stop_profile_clock, (void)				);
 | |
| #endif
 | |
| 
 | |
| /* functions defined in architecture-dependent files. */
 | |
| _PROTOTYPE( void phys_copy, (phys_bytes source, phys_bytes dest,
 | |
|                 phys_bytes count)                                       );
 | |
| _PROTOTYPE( void alloc_segments, (struct proc *rp)                      );
 | |
| _PROTOTYPE( void vm_init, (void)                       			);
 | |
| _PROTOTYPE( void vm_map_range, (u32_t base, u32_t size, u32_t offset)   );
 | |
| _PROTOTYPE( phys_bytes umap_local, (register struct proc *rp, int seg,
 | |
| 	vir_bytes vir_addr, vir_bytes bytes));
 | |
| _PROTOTYPE( void cp_mess, (int src,phys_clicks src_clicks,
 | |
|         vir_bytes src_offset, phys_clicks dst_clicks, vir_bytes dst_offset));
 | |
| _PROTOTYPE( phys_bytes umap_remote, (struct proc* rp, int seg,
 | |
|         vir_bytes vir_addr, vir_bytes bytes)				);
 | |
| _PROTOTYPE( phys_bytes seg2phys, (U16_t)                                );
 | |
| _PROTOTYPE( void phys_memset, (phys_bytes source, unsigned long pattern,
 | |
|                 phys_bytes count)                                       );
 | |
| _PROTOTYPE( vir_bytes alloc_remote_segment, (u32_t *, segframe_t *,
 | |
|         int, phys_bytes, vir_bytes, int));
 | |
| _PROTOTYPE( int arch_init_clock, (void)					);
 | |
| _PROTOTYPE( clock_t read_clock, (void)					);
 | |
| _PROTOTYPE( void clock_stop, (void)    					);
 | |
| _PROTOTYPE( int intr_init, (int)					);
 | |
| _PROTOTYPE( int intr_disabled, (void)					);
 | |
| _PROTOTYPE( int intr_unmask, (irq_hook_t* hook)                     );
 | |
| _PROTOTYPE( int intr_mask, (irq_hook_t* hook)                    );
 | |
| _PROTOTYPE( void idle_task, (void)                                     );
 | |
| _PROTOTYPE( void system_init, (void)                                     );
 | |
| _PROTOTYPE( void ser_putc, (char)						);
 | |
| _PROTOTYPE( void arch_shutdown, (int)					);
 | |
| _PROTOTYPE( void restart, (void)                                        );
 | |
| _PROTOTYPE( void idle_task, (void)                                     );
 | |
| _PROTOTYPE( void read_tsc, (unsigned long *high, unsigned long *low)    );
 | |
| _PROTOTYPE( int arch_init_profile_clock, (u32_t freq)			);
 | |
| _PROTOTYPE( void arch_stop_profile_clock, (void)			);
 | |
| _PROTOTYPE( void arch_ack_profile_clock, (void)				);
 | |
| 
 | |
| 
 | |
| #endif /* PROTO_H */
 |