2008-11-19 13:26:10 +01:00
|
|
|
|
|
|
|
#ifndef _REGION_H
|
|
|
|
#define _REGION_H 1
|
|
|
|
|
2009-09-21 16:49:49 +02:00
|
|
|
#include <minix/callnr.h>
|
|
|
|
#include <minix/com.h>
|
|
|
|
#include <minix/config.h>
|
|
|
|
#include <minix/const.h>
|
|
|
|
#include <minix/ds.h>
|
|
|
|
#include <minix/endpoint.h>
|
|
|
|
#include <minix/keymap.h>
|
|
|
|
#include <minix/minlib.h>
|
|
|
|
#include <minix/type.h>
|
|
|
|
#include <minix/ipc.h>
|
|
|
|
#include <minix/sysutil.h>
|
|
|
|
#include <minix/syslib.h>
|
|
|
|
#include <minix/const.h>
|
|
|
|
|
2010-05-05 13:35:04 +02:00
|
|
|
#include "phys_region.h"
|
|
|
|
#include "physravl.h"
|
|
|
|
|
2008-11-19 13:26:10 +01:00
|
|
|
struct phys_block {
|
|
|
|
#if SANITYCHECKS
|
|
|
|
u32_t seencount;
|
|
|
|
#endif
|
|
|
|
vir_bytes length; /* no. of contiguous bytes */
|
|
|
|
phys_bytes phys; /* physical memory */
|
|
|
|
u8_t refcount; /* Refcount of these pages */
|
2010-01-14 16:24:16 +01:00
|
|
|
#define PBSH_COW 1
|
|
|
|
#define PBSH_SMAP 2
|
|
|
|
u8_t share_flag; /* PBSH_COW or PBSH_SMAP */
|
2009-04-22 14:39:29 +02:00
|
|
|
|
|
|
|
/* first in list of phys_regions that reference this block */
|
|
|
|
struct phys_region *firstregion;
|
2008-11-19 13:26:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct vir_region {
|
|
|
|
struct vir_region *next; /* next virtual region in this process */
|
|
|
|
vir_bytes vaddr; /* virtual address, offset from pagetable */
|
|
|
|
vir_bytes length; /* length in bytes */
|
2009-09-21 16:49:49 +02:00
|
|
|
physr_avl *phys; /* avl tree of physical memory blocks */
|
2008-11-19 13:26:10 +01:00
|
|
|
u16_t flags;
|
|
|
|
u32_t tag; /* Opaque to mapping code. */
|
2009-04-22 14:39:29 +02:00
|
|
|
struct vmproc *parent; /* Process that owns this vir_region. */
|
2008-11-19 13:26:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Mapping flags: */
|
2009-09-21 16:49:49 +02:00
|
|
|
#define VR_WRITABLE 0x001 /* Process may write here. */
|
|
|
|
#define VR_NOPF 0x002 /* May not generate page faults. */
|
|
|
|
#define VR_PHYS64K 0x004 /* Physical memory must be 64k aligned. */
|
|
|
|
#define VR_LOWER16MB 0x008
|
|
|
|
#define VR_LOWER1MB 0x010
|
2010-04-12 13:25:24 +02:00
|
|
|
#define VR_CONTIG 0x020 /* Must be physically contiguous. */
|
2010-05-05 13:35:04 +02:00
|
|
|
#define VR_SHARED 0x040
|
2008-11-19 13:26:10 +01:00
|
|
|
|
|
|
|
/* Mapping type: */
|
2009-09-21 16:49:49 +02:00
|
|
|
#define VR_ANON 0x100 /* Memory to be cleared and allocated */
|
|
|
|
#define VR_DIRECT 0x200 /* Mapped, but not managed by VM */
|
2008-11-19 13:26:10 +01:00
|
|
|
|
|
|
|
/* Tag values: */
|
|
|
|
#define VRT_NONE 0xBEEF0000
|
|
|
|
#define VRT_HEAP 0xBEEF0001
|
2010-03-18 18:17:31 +01:00
|
|
|
#define VRT_TEXT 0xBEEF0002
|
|
|
|
#define VRT_STACK 0xBEEF0003
|
2008-11-19 13:26:10 +01:00
|
|
|
|
|
|
|
/* map_page_region flags */
|
|
|
|
#define MF_PREALLOC 0x01
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|