blob: cf2d5f6d9d60f214b5268b87efe45f7d755b33c0 [file] [log] [blame]
kz15163460405de2006-09-28 01:41:18 -07001/*
miao chen - Sun Microsystems - Beijing China0035d212009-12-05 13:25:40 +08002 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
kz15163460405de2006-09-28 01:41:18 -07003 * Use is subject to license terms.
4 */
5
6/*
7 * drm_memory.h -- Memory management wrappers for DRM -*- linux-c -*-
8 * Created: Thu Feb 4 14:00:34 1999 by faith@valinux.com
9 */
10/*
11 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
12 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
miao chen - Sun Microsystems - Beijing China0035d212009-12-05 13:25:40 +080013 * Copyright (c) 2009, Intel Corporation.
kz15163460405de2006-09-28 01:41:18 -070014 * All Rights Reserved.
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files (the "Software"),
18 * to deal in the Software without restriction, including without limitation
19 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * and/or sell copies of the Software, and to permit persons to whom the
21 * Software is furnished to do so, subject to the following conditions:
22 *
23 * The above copyright notice and this permission notice (including the next
24 * paragraph) shall be included in all copies or substantial portions of the
25 * Software.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33 * OTHER DEALINGS IN THE SOFTWARE.
34 *
35 * Authors:
36 * Rickard E. (Rik) Faith <faith@valinux.com>
37 * Gareth Hughes <gareth@valinux.com>
38 *
39 */
40
kz15163460405de2006-09-28 01:41:18 -070041#include "drmP.h"
42
43/* Device memory access structure */
44typedef struct drm_device_iomap {
45 uint_t physical; /* physical address */
46 uint_t size; /* size of mapping */
47 uint_t drm_regnum; /* register number */
48 caddr_t drm_base; /* kernel virtual address */
49 ddi_acc_handle_t drm_handle; /* data access handle */
50} drm_device_iomap_t;
51
52void
53drm_mem_init(void)
54{
55}
56
57void
58drm_mem_uninit(void)
59{
60}
61
62/*ARGSUSED*/
63void *
64drm_alloc(size_t size, int area)
65{
66 return (kmem_zalloc(1 * size, KM_NOSLEEP));
67}
68
69/*ARGSUSED*/
70void *
71drm_calloc(size_t nmemb, size_t size, int area)
72{
73 return (kmem_zalloc(size * nmemb, KM_NOSLEEP));
74}
75
76/*ARGSUSED*/
77void *
78drm_realloc(void *oldpt, size_t oldsize, size_t size, int area)
79{
80 void *pt;
81
82 pt = kmem_zalloc(1 * size, KM_NOSLEEP);
83 if (pt == NULL) {
84 DRM_ERROR("pt is NULL strange");
85 return (NULL);
86 }
87 if (oldpt && oldsize) {
88 bcopy(pt, oldpt, oldsize);
89 kmem_free(oldpt, oldsize);
90 }
91 return (pt);
92}
93
94/*ARGSUSED*/
95void
96drm_free(void *pt, size_t size, int area)
97{
98 kmem_free(pt, size);
99}
100
101/*ARGSUSED*/
102int
103drm_get_pci_index_reg(dev_info_t *devi, uint_t physical, uint_t size,
104 off_t *off)
105{
106 int length;
107 pci_regspec_t *regs;
108 int n_reg, i;
109 int regnum;
110 uint_t base, regsize;
111
112 regnum = -1;
113
114 if (ddi_dev_nregs(devi, &n_reg) == DDI_FAILURE) {
115 DRM_ERROR("drm_get_pci_index_reg:ddi_dev_nregs failed\n");
116 n_reg = 0;
117 return (-1);
118 }
119
120 if (ddi_getlongprop(DDI_DEV_T_ANY, devi, DDI_PROP_DONTPASS,
121 "assigned-addresses", (caddr_t)&regs, &length) !=
122 DDI_PROP_SUCCESS) {
123 DRM_ERROR("drm_get_pci_index_reg: ddi_getlongprop failed!\n");
124 goto error;
125 }
126
127 for (i = 0; i < n_reg; i ++) {
128 base = (uint_t)regs[i].pci_phys_low;
129 regsize = (uint_t)regs[i].pci_size_low;
130 if ((uint_t)physical >= base &&
131 (uint_t)physical < (base + regsize)) {
cg149915d0538f62008-01-09 19:45:15 -0800132 regnum = i + 1;
133 *off = (off_t)(physical - base);
134 break;
kz15163460405de2006-09-28 01:41:18 -0700135 }
136 }
miao chen - Sun Microsystems - Beijing China0035d212009-12-05 13:25:40 +0800137
kz15163460405de2006-09-28 01:41:18 -0700138 kmem_free(regs, (size_t)length);
139 return (regnum);
140error:
141 kmem_free(regs, (size_t)length);
142 return (-1);
143}
144
145/* data access attributes structure for register access */
146static ddi_device_acc_attr_t dev_attr = {
147 DDI_DEVICE_ATTR_V0,
148 DDI_NEVERSWAP_ACC,
149 DDI_STRICTORDER_ACC,
150};
151
152int
153do_ioremap(dev_info_t *devi, drm_device_iomap_t *iomap)
154{
cg149915d0538f62008-01-09 19:45:15 -0800155 int regnum;
kz15163460405de2006-09-28 01:41:18 -0700156 off_t offset;
157 int ret;
158
kz15163460405de2006-09-28 01:41:18 -0700159 regnum = drm_get_pci_index_reg(devi, iomap->physical,
160 iomap->size, &offset);
161 if (regnum < 0) {
cg149915d0538f62008-01-09 19:45:15 -0800162 DRM_ERROR("do_ioremap: can not find regster entry,"
163 " start=0x%x, size=0x%x", iomap->physical, iomap->size);
164 return (ENXIO);
kz15163460405de2006-09-28 01:41:18 -0700165 }
166
167 iomap->drm_regnum = regnum;
168
169 ret = ddi_regs_map_setup(devi, iomap->drm_regnum,
170 (caddr_t *)&(iomap->drm_base), (offset_t)offset,
171 (offset_t)iomap->size, &dev_attr, &iomap->drm_handle);
172 if (ret < 0) {
cg149915d0538f62008-01-09 19:45:15 -0800173 DRM_ERROR("do_ioremap: failed to map regs: regno=%d,"
174 " offset=0x%x", regnum, offset);
kz15163460405de2006-09-28 01:41:18 -0700175 iomap->drm_handle = NULL;
cg149915d0538f62008-01-09 19:45:15 -0800176 return (EFAULT);
kz15163460405de2006-09-28 01:41:18 -0700177 }
178
179 return (0);
180}
181
182int
cg149915d0538f62008-01-09 19:45:15 -0800183drm_ioremap(drm_device_t *softstate, drm_local_map_t *map)
kz15163460405de2006-09-28 01:41:18 -0700184{
185 drm_device_iomap_t iomap;
186 int ret;
187
188 DRM_DEBUG("drm_ioremap called\n");
189
190 bzero(&iomap, sizeof (drm_device_iomap_t));
cg149915d0538f62008-01-09 19:45:15 -0800191 iomap.physical = map->offset;
kz15163460405de2006-09-28 01:41:18 -0700192 iomap.size = map->size;
193 ret = do_ioremap(softstate->dip, &iomap);
194
195 if (ret) {
cg149915d0538f62008-01-09 19:45:15 -0800196 DRM_ERROR("drm_ioremap: failed, physaddr=0x%x, size=0x%x",
197 map->offset, map->size);
198 return (ret);
kz15163460405de2006-09-28 01:41:18 -0700199 }
kz15163460405de2006-09-28 01:41:18 -0700200
cg149915d0538f62008-01-09 19:45:15 -0800201 /* ddi_acc_handle_t */
202 map->dev_handle = iomap.drm_handle;
203 map->handle = (void *)iomap.drm_base;
kz15163460405de2006-09-28 01:41:18 -0700204 map->dev_addr = iomap.drm_base;
cg149915d0538f62008-01-09 19:45:15 -0800205
kz15163460405de2006-09-28 01:41:18 -0700206 DRM_DEBUG(
miao chen - Sun Microsystems - Beijing China0035d212009-12-05 13:25:40 +0800207 "map->handle is %p map->dev_addr is %lx map->size %x",
208 (void *)map->handle, (unsigned long)map->dev_addr, map->size);
kz15163460405de2006-09-28 01:41:18 -0700209
cg149915d0538f62008-01-09 19:45:15 -0800210 return (0);
kz15163460405de2006-09-28 01:41:18 -0700211}
212
213void
214drm_ioremapfree(drm_local_map_t *map)
215{
216 if (map->dev_handle == NULL) {
217 DRM_ERROR("drm_ioremapfree: handle is NULL");
218 return;
219 }
220 ddi_regs_map_free(&map->dev_handle);
221}