/*
* 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.
*/
#include <sys/ddi_impldefs.h>
#include <sys/int_fmtio.h>
#include "gfx_private.h"
#ifdef __xpv
#include <sys/hypervisor.h>
#endif
/*
* Create a dummy ddi_umem_cookie given to gfxp_devmap_umem_setup().
*/
{
if (umem_cookie == NULL)
return (NULL);
return ((ddi_umem_cookie_t)umem_cookie);
}
void
{
}
/*
* called by driver devmap routine to pass kernel virtual address mapping
* info to the framework.
*/
/*ARGSUSED*/
int
{
int e;
/*
* Set an appropriate attribute from devacc_attr_dataorder
* to keep compatibility. The cache attributes are igonred
* if specified.
*/
} else if (accattrp->devacc_attr_dataorder ==
} else {
}
}
return (e);
}
/*
* Replacement for devmap_devmem_setup() which will map a machine address
*/
void
{
#ifdef __xpv
#else
#endif
#ifndef DEVMAP_DEVMEM_COOKIE
#endif /* DEVMAP_DEVMEM_COOKIE */
/*LINTED: E_EXPR_NULL_EFFECT*/
/* no callbacks needed */
switch (attrp->devacc_attr_dataorder) {
case DDI_UNORDERED_OK_ACC:
break;
case DDI_MERGING_OK_ACC:
break;
case DDI_LOADCACHING_OK_ACC:
break;
case DDI_STORECACHING_OK_ACC:
break;
case DDI_STRICTORDER_ACC:
default:
}
/* don't use large pages */
dhp->dh_mmulevel = 0;
}