/*
* 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 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <sys/ddi_impldefs.h>
#include "gfx_private.h"
/*
* clone of ddi_segmap_setup(). Respects the requested cache
* attributes so hat_devload() gives user space WC and
* UC mappings for system memory.
*/
/*ARGSUSED*/
int
{
int error, i;
return (ENODEV);
/*
* Character devices that support the d_mmap
* interface can only be mmap'ed shared.
*/
return (EINVAL);
/*
* Check that this region is indeed mappable on this platform.
* Use the mapping function.
*/
return (ENXIO);
switch (accattrp->devacc_attr_dataorder) {
case DDI_STRICTORDER_ACC:
/* Want UC */
hat_attr &= ~HAT_ORDER_MASK;
break;
case DDI_MERGING_OK_ACC:
/* Want WC */
hat_attr &= ~HAT_ORDER_MASK;
break;
}
}
/*
* Check to ensure that the entire range is
* legal and we are not trying to map in
* more than the device will let us.
*/
if (i == 0) {
/*
* Save the pfn at offset here. This pfn will be
* used later to get user address.
*/
maxprot)) == PFN_INVALID)
return (ENXIO);
} else {
return (ENXIO);
}
}
/*
* Pick an address w/o worrying about
* any vac alignment constraints.
*/
return (ENOMEM);
}
} else {
/*
* User-specified address; blow away any previous mappings.
*/
}
#if DEBUG
#else
#endif
return (error);
}