drm: Sync with FreeBSD
[dragonfly.git] / sys / dev / drm / drm_buffer.c
1 /**************************************************************************
2  *
3  * Copyright 2010 Pauli Nieminen.
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sub license, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice (including the
15  * next paragraph) shall be included in all copies or substantial portions
16  * of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24  * USE OR OTHER DEALINGS IN THE SOFTWARE.
25  *
26  * $FreeBSD: head/sys/dev/drm2/drm_buffer.c 254794 2013-08-24 16:14:20Z dumbbell $
27  **************************************************************************/
28 /*
29  * Multipart buffer for coping data which is larger than the page size.
30  *
31  * Authors:
32  * Pauli Nieminen <suokkos-at-gmail-dot-com>
33  */
34
35 #include <dev/drm/drm_buffer.h>
36
37 /**
38  * Allocate the drm buffer object.
39  *
40  *   buf: Pointer to a pointer where the object is stored.
41  *   size: The number of bytes to allocate.
42  */
43 int drm_buffer_alloc(struct drm_buffer **buf, int size)
44 {
45         int nr_pages = size / PAGE_SIZE + 1;
46         int idx;
47
48         /* Allocating pointer table to end of structure makes drm_buffer
49          * variable sized */
50         *buf = kmalloc(sizeof(struct drm_buffer) + nr_pages*sizeof(char *),
51                         DRM_MEM_DRIVER, M_ZERO | M_WAITOK);
52
53         if (*buf == NULL) {
54                 DRM_ERROR("Failed to allocate drm buffer object to hold"
55                                 " %d bytes in %d pages.\n",
56                                 size, nr_pages);
57                 return -ENOMEM;
58         }
59
60         (*buf)->size = size;
61
62         for (idx = 0; idx < nr_pages; ++idx) {
63
64                 (*buf)->data[idx] =
65                         kmalloc(min(PAGE_SIZE, size - idx * PAGE_SIZE),
66                                 DRM_MEM_DRIVER, M_WAITOK);
67
68
69                 if ((*buf)->data[idx] == NULL) {
70                         DRM_ERROR("Failed to allocate %dth page for drm"
71                                         " buffer with %d bytes and %d pages.\n",
72                                         idx + 1, size, nr_pages);
73                         goto error_out;
74                 }
75
76         }
77
78         return 0;
79
80 error_out:
81
82         /* Only last element can be null pointer so check for it first. */
83         if ((*buf)->data[idx])
84                 drm_free((*buf)->data[idx], DRM_MEM_DRIVER);
85
86         for (--idx; idx >= 0; --idx)
87                 drm_free((*buf)->data[idx], DRM_MEM_DRIVER);
88
89         drm_free(*buf, DRM_MEM_DRIVER);
90         return -ENOMEM;
91 }
92
93 /**
94  * Copy the user data to the begin of the buffer and reset the processing
95  * iterator.
96  *
97  *   user_data: A pointer the data that is copied to the buffer.
98  *   size: The Number of bytes to copy.
99  */
100 int drm_buffer_copy_from_user(struct drm_buffer *buf,
101                               void __user *user_data, int size)
102 {
103         int nr_pages = size / PAGE_SIZE + 1;
104         int idx;
105
106         if (size > buf->size) {
107                 DRM_ERROR("Requesting to copy %d bytes to a drm buffer with"
108                                 " %d bytes space\n",
109                                 size, buf->size);
110                 return -EFAULT;
111         }
112
113         for (idx = 0; idx < nr_pages; ++idx) {
114
115                 if (DRM_COPY_FROM_USER(buf->data[idx],
116                         (char *)user_data + idx * PAGE_SIZE,
117                         min(PAGE_SIZE, size - idx * PAGE_SIZE))) {
118                         DRM_ERROR("Failed to copy user data (%p) to drm buffer"
119                                         " (%p) %dth page.\n",
120                                         user_data, buf, idx);
121                         return -EFAULT;
122
123                 }
124         }
125         buf->iterator = 0;
126         return 0;
127 }
128
129 /**
130  * Free the drm buffer object
131  */
132 void drm_buffer_free(struct drm_buffer *buf)
133 {
134
135         if (buf != NULL) {
136
137                 int nr_pages = buf->size / PAGE_SIZE + 1;
138                 int idx;
139                 for (idx = 0; idx < nr_pages; ++idx)
140                         kfree(buf->data[idx], DRM_MEM_DRIVER);
141
142                 kfree(buf, DRM_MEM_DRIVER);
143         }
144 }
145
146 /**
147  * Read an object from buffer that may be split to multiple parts. If object
148  * is not split function just returns the pointer to object in buffer. But in
149  * case of split object data is copied to given stack object that is suplied
150  * by caller.
151  *
152  * The processing location of the buffer is also advanced to the next byte
153  * after the object.
154  *
155  *   objsize: The size of the objet in bytes.
156  *   stack_obj: A pointer to a memory location where object can be copied.
157  */
158 void *drm_buffer_read_object(struct drm_buffer *buf,
159                 int objsize, void *stack_obj)
160 {
161         int idx = drm_buffer_index(buf);
162         int page = drm_buffer_page(buf);
163         void *obj = NULL;
164
165         if (idx + objsize <= PAGE_SIZE) {
166                 obj = &buf->data[page][idx];
167         } else {
168                 /* The object is split which forces copy to temporary object.*/
169                 int beginsz = PAGE_SIZE - idx;
170                 memcpy(stack_obj, &buf->data[page][idx], beginsz);
171
172                 memcpy((char *)stack_obj + beginsz, &buf->data[page + 1][0],
173                                 objsize - beginsz);
174
175                 obj = stack_obj;
176         }
177
178         drm_buffer_advance(buf, objsize);
179         return obj;
180 }