blob: b2b0f3d4171492de22ebb6949b9bb0ce5f9d65c6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_scatter.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * IOCTLs to manage scatter/gather memory
4 *
5 * \author Gareth Hughes <gareth@valinux.com>
6 */
7
8/*
9 * Created: Mon Dec 18 23:20:54 2000 by gareth@valinux.com
10 *
11 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
12 * All Rights Reserved.
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining a
15 * copy of this software and associated documentation files (the "Software"),
16 * to deal in the Software without restriction, including without limitation
17 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 * and/or sell copies of the Software, and to permit persons to whom the
19 * Software is furnished to do so, subject to the following conditions:
20 *
21 * The above copyright notice and this permission notice (including the next
22 * paragraph) shall be included in all copies or substantial portions of the
23 * Software.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
28 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
29 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
30 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
31 * DEALINGS IN THE SOFTWARE.
32 */
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/vmalloc.h>
35#include "drmP.h"
36
37#define DEBUG_SCATTER 0
38
Benjamin Herrenschmidt6876b3b2008-03-28 14:23:07 -070039static inline void *drm_vmalloc_dma(unsigned long size)
40{
41#if defined(__powerpc__) && defined(CONFIG_NOT_COHERENT_CACHE)
42 return __vmalloc(size, GFP_KERNEL, PAGE_KERNEL | _PAGE_NO_CACHE);
43#else
44 return vmalloc_32(size);
45#endif
46}
47
Dave Airlie55910512007-07-11 16:53:40 +100048void drm_sg_cleanup(struct drm_sg_mem * entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 struct page *page;
51 int i;
52
Dave Airlieb5e89ed2005-09-25 14:28:13 +100053 for (i = 0; i < entry->pages; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 page = entry->pagelist[i];
Dave Airlieb5e89ed2005-09-25 14:28:13 +100055 if (page)
56 ClearPageReserved(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 }
58
Dave Airlieb5e89ed2005-09-25 14:28:13 +100059 vfree(entry->virtual);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Dave Airlieb5e89ed2005-09-25 14:28:13 +100061 drm_free(entry->busaddr,
62 entry->pages * sizeof(*entry->busaddr), DRM_MEM_PAGES);
63 drm_free(entry->pagelist,
64 entry->pages * sizeof(*entry->pagelist), DRM_MEM_PAGES);
65 drm_free(entry, sizeof(*entry), DRM_MEM_SGLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Dave Airlied1f2b552005-08-05 22:11:22 +100068#ifdef _LP64
69# define ScatterHandle(x) (unsigned int)((x >> 32) + (x & ((1L << 32) - 1)))
70#else
71# define ScatterHandle(x) (unsigned int)(x)
72#endif
73
Eric Anholtc153f452007-09-03 12:06:45 +100074int drm_sg_alloc(struct drm_device *dev, struct drm_scatter_gather * request)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Dave Airlie55910512007-07-11 16:53:40 +100076 struct drm_sg_mem *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 unsigned long pages, i, j;
78
Márton Németh3e684ea2008-01-24 15:58:57 +100079 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 if (!drm_core_check_feature(dev, DRIVER_SG))
82 return -EINVAL;
83
Dave Airlieb5e89ed2005-09-25 14:28:13 +100084 if (dev->sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return -EINVAL;
86
Dave Airlieb5e89ed2005-09-25 14:28:13 +100087 entry = drm_alloc(sizeof(*entry), DRM_MEM_SGLISTS);
88 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 return -ENOMEM;
90
Dave Airlieb5e89ed2005-09-25 14:28:13 +100091 memset(entry, 0, sizeof(*entry));
Eric Anholtc153f452007-09-03 12:06:45 +100092 pages = (request->size + PAGE_SIZE - 1) / PAGE_SIZE;
Márton Németh3e684ea2008-01-24 15:58:57 +100093 DRM_DEBUG("size=%ld pages=%ld\n", request->size, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 entry->pages = pages;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100096 entry->pagelist = drm_alloc(pages * sizeof(*entry->pagelist),
97 DRM_MEM_PAGES);
98 if (!entry->pagelist) {
99 drm_free(entry, sizeof(*entry), DRM_MEM_SGLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return -ENOMEM;
101 }
102
103 memset(entry->pagelist, 0, pages * sizeof(*entry->pagelist));
104
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000105 entry->busaddr = drm_alloc(pages * sizeof(*entry->busaddr),
106 DRM_MEM_PAGES);
107 if (!entry->busaddr) {
108 drm_free(entry->pagelist,
109 entry->pages * sizeof(*entry->pagelist),
110 DRM_MEM_PAGES);
111 drm_free(entry, sizeof(*entry), DRM_MEM_SGLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return -ENOMEM;
113 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000114 memset((void *)entry->busaddr, 0, pages * sizeof(*entry->busaddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Benjamin Herrenschmidt6876b3b2008-03-28 14:23:07 -0700116 entry->virtual = drm_vmalloc_dma(pages << PAGE_SHIFT);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000117 if (!entry->virtual) {
118 drm_free(entry->busaddr,
119 entry->pages * sizeof(*entry->busaddr), DRM_MEM_PAGES);
120 drm_free(entry->pagelist,
121 entry->pages * sizeof(*entry->pagelist),
122 DRM_MEM_PAGES);
123 drm_free(entry, sizeof(*entry), DRM_MEM_SGLISTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return -ENOMEM;
125 }
126
127 /* This also forces the mapping of COW pages, so our page list
128 * will be valid. Please don't remove it...
129 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000130 memset(entry->virtual, 0, pages << PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Dave Airlied1f2b552005-08-05 22:11:22 +1000132 entry->handle = ScatterHandle((unsigned long)entry->virtual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Márton Németh3e684ea2008-01-24 15:58:57 +1000134 DRM_DEBUG("handle = %08lx\n", entry->handle);
135 DRM_DEBUG("virtual = %p\n", entry->virtual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000137 for (i = (unsigned long)entry->virtual, j = 0; j < pages;
138 i += PAGE_SIZE, j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 entry->pagelist[j] = vmalloc_to_page((void *)i);
140 if (!entry->pagelist[j])
141 goto failed;
142 SetPageReserved(entry->pagelist[j]);
143 }
144
Eric Anholtc153f452007-09-03 12:06:45 +1000145 request->handle = entry->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 dev->sg = entry;
148
149#if DEBUG_SCATTER
150 /* Verify that each page points to its virtual address, and vice
151 * versa.
152 */
153 {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000154 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000156 for (i = 0; i < pages; i++) {
157 unsigned long *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000159 tmp = page_address(entry->pagelist[i]);
160 for (j = 0;
161 j < PAGE_SIZE / sizeof(unsigned long);
162 j++, tmp++) {
163 *tmp = 0xcafebabe;
164 }
165 tmp = (unsigned long *)((u8 *) entry->virtual +
166 (PAGE_SIZE * i));
167 for (j = 0;
168 j < PAGE_SIZE / sizeof(unsigned long);
169 j++, tmp++) {
170 if (*tmp != 0xcafebabe && error == 0) {
171 error = 1;
172 DRM_ERROR("Scatter allocation error, "
173 "pagelist does not match "
174 "virtual mapping\n");
175 }
176 }
177 tmp = page_address(entry->pagelist[i]);
178 for (j = 0;
179 j < PAGE_SIZE / sizeof(unsigned long);
180 j++, tmp++) {
181 *tmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000184 if (error == 0)
185 DRM_ERROR("Scatter allocation matches pagelist\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187#endif
188
189 return 0;
190
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000191 failed:
192 drm_sg_cleanup(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -ENOMEM;
194}
Eric Anholtc153f452007-09-03 12:06:45 +1000195EXPORT_SYMBOL(drm_sg_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Eric Anholtc153f452007-09-03 12:06:45 +1000197
198int drm_sg_alloc_ioctl(struct drm_device *dev, void *data,
199 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Eric Anholtc153f452007-09-03 12:06:45 +1000201 struct drm_scatter_gather *request = data;
202
203 return drm_sg_alloc(dev, request);
204
205}
206
207int drm_sg_free(struct drm_device *dev, void *data,
208 struct drm_file *file_priv)
209{
210 struct drm_scatter_gather *request = data;
Dave Airlie55910512007-07-11 16:53:40 +1000211 struct drm_sg_mem *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 if (!drm_core_check_feature(dev, DRIVER_SG))
214 return -EINVAL;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 entry = dev->sg;
217 dev->sg = NULL;
218
Eric Anholtc153f452007-09-03 12:06:45 +1000219 if (!entry || entry->handle != request->handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return -EINVAL;
221
Márton Németh3e684ea2008-01-24 15:58:57 +1000222 DRM_DEBUG("virtual = %p\n", entry->virtual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000224 drm_sg_cleanup(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 return 0;
227}