4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #include <sys/debug.h>
28 #include <sys/types.h>
29 #include <sys/param.h>
32 #include <sys/errno.h>
33 #include <sys/systm.h>
35 #include <sys/signal.h>
40 #include <vm/seg_dev.h>
41 #include <vm/hat_i86.h>
43 #include <sys/devops.h>
44 #include <sys/sunddi.h>
45 #include <sys/ddi_impldefs.h>
46 #include <sys/fs/snode.h>
48 #include <sys/vmsystm.h>
49 #include <sys/int_fmtio.h>
50 #include <sys/gfx_private.h>
54 * Create a dummy ddi_umem_cookie given to gfxp_devmap_umem_setup().
57 gfxp_umem_cookie_init(caddr_t kva
, size_t size
)
59 struct ddi_umem_cookie
*umem_cookie
;
61 umem_cookie
= kmem_zalloc(sizeof (struct ddi_umem_cookie
), KM_SLEEP
);
63 if (umem_cookie
== NULL
)
66 umem_cookie
->cvaddr
= kva
;
67 umem_cookie
->type
= KMEM_NON_PAGEABLE
;
68 umem_cookie
->size
= size
;
70 return ((ddi_umem_cookie_t
)umem_cookie
);
74 gfxp_umem_cookie_destroy(ddi_umem_cookie_t cookie
)
76 kmem_free(cookie
, sizeof (struct ddi_umem_cookie
));
80 * called by driver devmap routine to pass kernel virtual address mapping
81 * info to the framework.
85 gfxp_devmap_umem_setup(devmap_cookie_t dhc
, dev_info_t
*dip
,
86 struct devmap_callback_ctl
*callbackops
, ddi_umem_cookie_t cookie
,
87 offset_t off
, size_t len
, uint_t maxprot
, uint_t flags
,
88 ddi_device_acc_attr_t
*accattrp
)
90 uint_t l_flags
= flags
& ~IOMEM_DATA_MASK
; /* clear cache attrs */
94 * Set an appropriate attribute from devacc_attr_dataorder
95 * to keep compatibility. The cache attributes are igonred
98 if (accattrp
!= NULL
) {
99 if (accattrp
->devacc_attr_dataorder
== DDI_STRICTORDER_ACC
) {
100 l_flags
|= IOMEM_DATA_UNCACHED
;
101 } else if (accattrp
->devacc_attr_dataorder
==
102 DDI_MERGING_OK_ACC
) {
103 l_flags
|= IOMEM_DATA_UC_WR_COMBINE
;
105 l_flags
|= IOMEM_DATA_CACHED
;
109 e
= devmap_umem_setup(dhc
, dip
, callbackops
, cookie
, off
, len
, maxprot
,
115 * Replacement for devmap_devmem_setup() which will map a machine address
116 * instead of a register set/offset.
119 gfxp_map_devmem(devmap_cookie_t dhc
, gfx_maddr_t maddr
, size_t length
,
120 ddi_device_acc_attr_t
*attrp
)
122 devmap_handle_t
*dhp
= (devmap_handle_t
*)dhc
;
126 pfn
= mmu_btop(maddr
);
129 dhp
->dh_len
= mmu_ptob(mmu_btopr(length
));
132 #ifndef DEVMAP_DEVMEM_COOKIE
133 #define DEVMAP_DEVMEM_COOKIE ((ddi_umem_cookie_t)0x1) /* XXPV */
134 #endif /* DEVMAP_DEVMEM_COOKIE */
135 dhp
->dh_cookie
= DEVMAP_DEVMEM_COOKIE
;
136 /*LINTED: E_EXPR_NULL_EFFECT*/
137 dhp
->dh_flags
|= DEVMAP_DEFAULTS
;
138 dhp
->dh_maxprot
= PROT_ALL
& dhp
->dh_orig_maxprot
;
140 /* no callbacks needed */
141 bzero(&dhp
->dh_callbackops
, sizeof (struct devmap_callback_ctl
));
143 switch (attrp
->devacc_attr_dataorder
) {
144 case DDI_UNORDERED_OK_ACC
:
145 dhp
->dh_hat_attr
= HAT_UNORDERED_OK
;
147 case DDI_MERGING_OK_ACC
:
148 dhp
->dh_hat_attr
= HAT_MERGING_OK
;
150 case DDI_LOADCACHING_OK_ACC
:
151 dhp
->dh_hat_attr
= HAT_LOADCACHING_OK
;
153 case DDI_STORECACHING_OK_ACC
:
154 dhp
->dh_hat_attr
= HAT_STORECACHING_OK
;
156 case DDI_STRICTORDER_ACC
:
158 dhp
->dh_hat_attr
= HAT_STRICTORDER
;
161 /* don't use large pages */
162 dhp
->dh_mmulevel
= 0;
163 dhp
->dh_flags
&= ~DEVMAP_FLAG_LARGE
;
165 dhp
->dh_flags
|= DEVMAP_SETUP_DONE
;