2005-04-21 16:53:53 +02:00
|
|
|
/* General constants used by the kernel. */
|
|
|
|
|
|
|
|
#include <ibm/interrupt.h> /* interrupt numbers and hardware vectors */
|
|
|
|
#include <ibm/ports.h> /* port addresses and magic numbers */
|
|
|
|
#include <ibm/bios.h> /* BIOS addresses, sizes and magic numbers */
|
2005-06-20 16:53:13 +02:00
|
|
|
#include <ibm/cpu.h> /* BIOS addresses, sizes and magic numbers */
|
2005-06-01 11:37:52 +02:00
|
|
|
#include <minix/config.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
/* To translate an address in kernel space to a physical address. This is
|
|
|
|
* the same as umap_local(proc_ptr, D, vir, sizeof(*vir)), but less costly.
|
|
|
|
*/
|
2005-04-29 17:36:43 +02:00
|
|
|
#define vir2phys(vir) (kinfo.data_base + (vir_bytes) (vir))
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
/* Constants used in virtual_copy(). Values must be 0 and 1, respectively! */
|
|
|
|
#define _SRC_ 0
|
|
|
|
#define _DST_ 1
|
|
|
|
|
|
|
|
/* Translate a pointer to a field in a structure to a pointer to the structure
|
|
|
|
* itself. So it translates '&struct_ptr->field' back to 'struct_ptr'.
|
|
|
|
*/
|
|
|
|
#define structof(type, field, ptr) \
|
|
|
|
((type *) (((char *) (ptr)) - offsetof(type, field)))
|
|
|
|
|
|
|
|
/* How many bytes for the kernel stack. Space allocated in mpx.s. */
|
|
|
|
#define K_STACK_BYTES 1024
|
|
|
|
|
2005-05-31 11:50:51 +02:00
|
|
|
/* How long should the process names be in the kernel? */
|
|
|
|
#define P_NAME_LEN 8
|
|
|
|
|
2005-05-31 16:43:04 +02:00
|
|
|
/* How many bytes should the circular buffer for kernel diagnostics. */
|
|
|
|
#define KMESS_BUF_SIZE 256
|
|
|
|
|
2005-06-03 15:55:06 +02:00
|
|
|
/* Maximum size in bytes for (port,value)-pairs vector to copy in. */
|
|
|
|
#define VDEVIO_BUF_SIZE 64
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-04-29 17:36:43 +02:00
|
|
|
/* How many elements in vector of virtual copy requests. */
|
|
|
|
#define VCOPY_VEC_SIZE 16
|
|
|
|
|
2005-05-02 16:30:04 +02:00
|
|
|
/* How many IRQ hooks are there in total. */
|
|
|
|
#define NR_IRQ_HOOKS 16
|
|
|
|
|
2005-05-24 12:06:17 +02:00
|
|
|
/* How many buffers for notification messages should there be? */
|
2005-05-27 14:44:14 +02:00
|
|
|
#define NR_NOTIFY_BUFS 32
|
2005-05-24 12:06:17 +02:00
|
|
|
|
2005-06-03 15:55:06 +02:00
|
|
|
/* Buffer to gather randomness. How many entries before wrapping? */
|
|
|
|
#define RANDOM_ELEMENTS 32
|
|
|
|
|
2005-05-24 12:06:17 +02:00
|
|
|
/* Constants and macros for bit map manipulation. */
|
|
|
|
#define BITCHUNK_BITS (sizeof(bitchunk_t) * CHAR_BIT)
|
|
|
|
#define BITMAP_CHUNKS(nr_bits) (((nr_bits)+BITCHUNK_BITS-1)/BITCHUNK_BITS)
|
|
|
|
#define MAP_CHUNK(map,bit) (map)[((bit)/BITCHUNK_BITS)]
|
|
|
|
#define CHUNK_OFFSET(bit) ((bit)%BITCHUNK_BITS))
|
|
|
|
#define GET_BIT(map,bit) ( MAP_CHUNK(map,bit) & (1 << CHUNK_OFFSET(bit) )
|
|
|
|
#define SET_BIT(map,bit) ( MAP_CHUNK(map,bit) |= (1 << CHUNK_OFFSET(bit) )
|
|
|
|
#define UNSET_BIT(map,bit) ( MAP_CHUNK(map,bit) &= ~(1 << CHUNK_OFFSET(bit) )
|
2005-05-19 11:36:44 +02:00
|
|
|
|
2005-05-31 16:43:04 +02:00
|
|
|
|
|
|
|
#if (CHIP == INTEL)
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
/* Program stack words and masks. */
|
|
|
|
#define INIT_PSW 0x0200 /* initial psw */
|
|
|
|
#define INIT_TASK_PSW 0x1200 /* initial psw for tasks (with IOPL 1) */
|
2005-05-19 11:36:44 +02:00
|
|
|
#define TRACEBIT 0x0100 /* OR this with psw in proc[] for tracing */
|
2005-04-21 16:53:53 +02:00
|
|
|
#define SETPSW(rp, new) /* permits only certain bits to be set */ \
|
|
|
|
((rp)->p_reg.psw = (rp)->p_reg.psw & ~0xCD5 | (new) & 0xCD5)
|
|
|
|
#define IF_MASK 0x00000200
|
|
|
|
#define IOPL_MASK 0x003000
|
|
|
|
|
2005-06-01 11:37:52 +02:00
|
|
|
#if ENABLE_LOCK_TIMING
|
|
|
|
#define locktimestart(c, v) timer_start(c, v)
|
|
|
|
#define locktimeend(c) timer_end(c)
|
|
|
|
#else
|
|
|
|
#define locktimestart(c, v)
|
|
|
|
#define locktimeend(c)
|
|
|
|
#endif
|
|
|
|
|
2005-06-20 16:53:13 +02:00
|
|
|
#if ENABLE_K_LOCKCHECK
|
|
|
|
#define lockcheck if(!(read_cpu_flags() & X86_FLAG_I)) kinfo.relocking++;
|
|
|
|
#else
|
|
|
|
#define lockcheck
|
|
|
|
#endif
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
/* Disable/Enable hardware interrupts. */
|
2005-06-20 16:53:13 +02:00
|
|
|
#define lock(c, v) do { lockcheck; intr_disable(); locktimestart(c, v); } while(0)
|
2005-06-17 15:36:01 +02:00
|
|
|
#define unlock(c) do { locktimeend(c); intr_enable(); } while(0)
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
/* Sizes of memory tables. The boot monitor distinguishes three memory areas,
|
|
|
|
* namely low mem below 1M, 1M-16M, and mem after 16M. More chunks are needed
|
|
|
|
* for DOS MINIX.
|
|
|
|
*/
|
|
|
|
#define NR_MEMS 8 /* number of chunks of memory */
|
|
|
|
|
|
|
|
#endif /* (CHIP == INTEL) */
|
|
|
|
|
|
|
|
#if (CHIP == M68000)
|
|
|
|
/* M68000 specific constants go here. */
|
|
|
|
#endif /* (CHIP == M68000) */
|
|
|
|
|
2005-06-01 11:37:52 +02:00
|
|
|
#if ENABLE_INT_TIMING
|
|
|
|
#define INT_TIMING_BITS 12
|
|
|
|
#define INT_TIMING_ELEMENTS (1L << 12)
|
|
|
|
#endif
|