seg_dev.h revision 44374aae0994350211c68b8974530496edbed4fc
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* University Copyright- Copyright (c) 1982, 1986, 1988
* The Regents of the University of California
* All Rights Reserved
*
* University Acknowledgment- Portions of this document are derived from
* software developed by the University of California, Berkeley, and its
* contributors.
*/
#ifndef _VM_SEG_DEV_H
#define _VM_SEG_DEV_H
#pragma ident "%Z%%M% %I% %E% SMI"
#ifdef __cplusplus
extern "C" {
#endif
struct proc;
/*
* Structure whose pointer is passed to the segdev_create routine
*/
struct segdev_crargs {
/* HAT_LOAD_NOCONSIST; in future, it can be */
/* expanded to include any flags that are */
/* not already part of hat_attr */
void *devmap_data; /* devmap_handle private data */
};
/*
* (Semi) private data maintained by the seg_dev driver per segment mapping
*
* The segment lock is necessary to protect fields that are modified
* when the "read" version of the address space lock is held. This lock
* is not needed when the segment operation has the "write" version of
* the address space lock (it would be redundant).
*
* The following fields in segdev_data are read-only when the address
* space is "read" locked, and don't require the segment lock:
*
* vp
* offset
* mapfunc
* maxprot
*/
struct segdev_data {
/* see comments above in segdev_crargs */
void *devmap_data; /* devmap_handle private data */
};
/* Direct physical-userland mapping, without occupying kernel address space */
/*
* pmem_cookie:
* Records physical memory pages to be exported to userland.
*/
struct devmap_pmem_cookie {
};
#ifdef _KERNEL
extern void segdev_init(void);
extern int segdev_create(struct seg *, void *);
#endif /* _KERNEL */
#ifdef __cplusplus
}
#endif
#endif /* _VM_SEG_DEV_H */