]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/gpu/drm/exynos/exynos_drm_fb.c
drm/exynos: Use struct drm_mode_fb_cmd2
[mv-sheeva.git] / drivers / gpu / drm / exynos / exynos_drm_fb.c
1 /* exynos_drm_fb.c
2  *
3  * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4  * Authors:
5  *      Inki Dae <inki.dae@samsung.com>
6  *      Joonyoung Shim <jy0922.shim@samsung.com>
7  *      Seung-Woo Kim <sw0312.kim@samsung.com>
8  *
9  * Permission is hereby granted, free of charge, to any person obtaining a
10  * copy of this software and associated documentation files (the "Software"),
11  * to deal in the Software without restriction, including without limitation
12  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13  * and/or sell copies of the Software, and to permit persons to whom the
14  * Software is furnished to do so, subject to the following conditions:
15  *
16  * The above copyright notice and this permission notice (including the next
17  * paragraph) shall be included in all copies or substantial portions of the
18  * Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
23  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
24  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
26  * OTHER DEALINGS IN THE SOFTWARE.
27  */
28
29 #include "drmP.h"
30 #include "drm_crtc.h"
31 #include "drm_crtc_helper.h"
32 #include "drm_fb_helper.h"
33
34 #include "exynos_drm_drv.h"
35 #include "exynos_drm_fb.h"
36 #include "exynos_drm_buf.h"
37 #include "exynos_drm_gem.h"
38
39 #define to_exynos_fb(x) container_of(x, struct exynos_drm_fb, fb)
40
41 /*
42  * exynos specific framebuffer structure.
43  *
44  * @fb: drm framebuffer obejct.
45  * @exynos_gem_obj: exynos specific gem object containing a gem object.
46  * @buffer: pointer to exynos_drm_gem_buffer object.
47  *      - contain the memory information to memory region allocated
48  *      at default framebuffer creation.
49  */
50 struct exynos_drm_fb {
51         struct drm_framebuffer          fb;
52         struct exynos_drm_gem_obj       *exynos_gem_obj;
53         struct exynos_drm_gem_buf       *buffer;
54 };
55
56 static void exynos_drm_fb_destroy(struct drm_framebuffer *fb)
57 {
58         struct exynos_drm_fb *exynos_fb = to_exynos_fb(fb);
59
60         DRM_DEBUG_KMS("%s\n", __FILE__);
61
62         drm_framebuffer_cleanup(fb);
63
64         /*
65          * default framebuffer has no gem object so
66          * a buffer of the default framebuffer should be released at here.
67          */
68         if (!exynos_fb->exynos_gem_obj && exynos_fb->buffer)
69                 exynos_drm_buf_destroy(fb->dev, exynos_fb->buffer);
70
71         kfree(exynos_fb);
72         exynos_fb = NULL;
73 }
74
75 static int exynos_drm_fb_create_handle(struct drm_framebuffer *fb,
76                                         struct drm_file *file_priv,
77                                         unsigned int *handle)
78 {
79         struct exynos_drm_fb *exynos_fb = to_exynos_fb(fb);
80
81         DRM_DEBUG_KMS("%s\n", __FILE__);
82
83         return drm_gem_handle_create(file_priv,
84                         &exynos_fb->exynos_gem_obj->base, handle);
85 }
86
87 static int exynos_drm_fb_dirty(struct drm_framebuffer *fb,
88                                 struct drm_file *file_priv, unsigned flags,
89                                 unsigned color, struct drm_clip_rect *clips,
90                                 unsigned num_clips)
91 {
92         DRM_DEBUG_KMS("%s\n", __FILE__);
93
94         /* TODO */
95
96         return 0;
97 }
98
99 static struct drm_framebuffer_funcs exynos_drm_fb_funcs = {
100         .destroy        = exynos_drm_fb_destroy,
101         .create_handle  = exynos_drm_fb_create_handle,
102         .dirty          = exynos_drm_fb_dirty,
103 };
104
105 static struct drm_framebuffer *
106 exynos_drm_fb_init(struct drm_file *file_priv, struct drm_device *dev,
107                    struct drm_mode_fb_cmd2 *mode_cmd)
108 {
109         struct exynos_drm_fb *exynos_fb;
110         struct drm_framebuffer *fb;
111         struct exynos_drm_gem_obj *exynos_gem_obj = NULL;
112         struct drm_gem_object *obj;
113         unsigned int size;
114         int ret;
115
116         DRM_DEBUG_KMS("%s\n", __FILE__);
117
118         DRM_LOG_KMS("drm fb create(%dx%d)\n",
119                         mode_cmd->width, mode_cmd->height);
120
121         exynos_fb = kzalloc(sizeof(*exynos_fb), GFP_KERNEL);
122         if (!exynos_fb) {
123                 DRM_ERROR("failed to allocate exynos drm framebuffer.\n");
124                 return ERR_PTR(-ENOMEM);
125         }
126
127         fb = &exynos_fb->fb;
128         ret = drm_framebuffer_init(dev, fb, &exynos_drm_fb_funcs);
129         if (ret) {
130                 DRM_ERROR("failed to initialize framebuffer.\n");
131                 goto err_init;
132         }
133
134         DRM_LOG_KMS("create: fb id: %d\n", fb->base.id);
135
136         size = mode_cmd->pitches[0] * mode_cmd->height;
137
138         /*
139          * mode_cmd->handles[0] could be NULL at booting time or
140          * with user request. if NULL, a new buffer or a gem object
141          * would be allocated.
142          */
143         if (!mode_cmd->handles[0]) {
144                 if (!file_priv) {
145                         struct exynos_drm_gem_buf *buffer;
146
147                         /*
148                          * in case that file_priv is NULL, it allocates
149                          * only buffer and this buffer would be used
150                          * for default framebuffer.
151                          */
152                         buffer = exynos_drm_buf_create(dev, size);
153                         if (IS_ERR(buffer)) {
154                                 ret = PTR_ERR(buffer);
155                                 goto err_buffer;
156                         }
157
158                         exynos_fb->buffer = buffer;
159
160                         DRM_LOG_KMS("default: dma_addr = 0x%lx, size = 0x%x\n",
161                                         (unsigned long)buffer->dma_addr, size);
162
163                         goto out;
164                 } else {
165                         exynos_gem_obj = exynos_drm_gem_create(dev, file_priv,
166                                                         &mode_cmd->handles[0],
167                                                         size);
168                         if (IS_ERR(exynos_gem_obj)) {
169                                 ret = PTR_ERR(exynos_gem_obj);
170                                 goto err_buffer;
171                         }
172                 }
173         } else {
174                 obj = drm_gem_object_lookup(dev, file_priv,
175                                 mode_cmd->handles[0]);
176                 if (!obj) {
177                         DRM_ERROR("failed to lookup gem object.\n");
178                         goto err_buffer;
179                 }
180
181                 exynos_gem_obj = to_exynos_gem_obj(obj);
182
183                 drm_gem_object_unreference_unlocked(obj);
184         }
185
186         /*
187          * if got a exynos_gem_obj from either a handle or
188          * a new creation then exynos_fb->exynos_gem_obj is NULL
189          * so that default framebuffer has no its own gem object,
190          * only its own buffer object.
191          */
192         exynos_fb->buffer = exynos_gem_obj->buffer;
193
194         DRM_LOG_KMS("dma_addr = 0x%lx, size = 0x%x, gem object = 0x%x\n",
195                         (unsigned long)exynos_fb->buffer->dma_addr, size,
196                         (unsigned int)&exynos_gem_obj->base);
197
198 out:
199         exynos_fb->exynos_gem_obj = exynos_gem_obj;
200
201         drm_helper_mode_fill_fb_struct(fb, mode_cmd);
202
203         return fb;
204
205 err_buffer:
206         drm_framebuffer_cleanup(fb);
207
208 err_init:
209         kfree(exynos_fb);
210
211         return ERR_PTR(ret);
212 }
213
214 struct drm_framebuffer *exynos_drm_fb_create(struct drm_device *dev,
215                                              struct drm_file *file_priv,
216                                              struct drm_mode_fb_cmd2 *mode_cmd)
217 {
218         DRM_DEBUG_KMS("%s\n", __FILE__);
219
220         return exynos_drm_fb_init(file_priv, dev, mode_cmd);
221 }
222
223 struct exynos_drm_gem_buf *exynos_drm_fb_get_buf(struct drm_framebuffer *fb)
224 {
225         struct exynos_drm_fb *exynos_fb = to_exynos_fb(fb);
226         struct exynos_drm_gem_buf *buffer;
227
228         DRM_DEBUG_KMS("%s\n", __FILE__);
229
230         buffer = exynos_fb->buffer;
231         if (!buffer)
232                 return NULL;
233
234         DRM_DEBUG_KMS("vaddr = 0x%lx, dma_addr = 0x%lx\n",
235                         (unsigned long)buffer->kvaddr,
236                         (unsigned long)buffer->dma_addr);
237
238         return buffer;
239 }
240
241 static void exynos_drm_output_poll_changed(struct drm_device *dev)
242 {
243         struct exynos_drm_private *private = dev->dev_private;
244         struct drm_fb_helper *fb_helper = private->fb_helper;
245
246         if (fb_helper)
247                 drm_fb_helper_hotplug_event(fb_helper);
248 }
249
250 static struct drm_mode_config_funcs exynos_drm_mode_config_funcs = {
251         .fb_create = exynos_drm_fb_create,
252         .output_poll_changed = exynos_drm_output_poll_changed,
253 };
254
255 void exynos_drm_mode_config_init(struct drm_device *dev)
256 {
257         dev->mode_config.min_width = 0;
258         dev->mode_config.min_height = 0;
259
260         /*
261          * set max width and height as default value(4096x4096).
262          * this value would be used to check framebuffer size limitation
263          * at drm_mode_addfb().
264          */
265         dev->mode_config.max_width = 4096;
266         dev->mode_config.max_height = 4096;
267
268         dev->mode_config.funcs = &exynos_drm_mode_config_funcs;
269 }
270
271 MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
272 MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
273 MODULE_AUTHOR("Seung-Woo Kim <sw0312.kim@samsung.com>");
274 MODULE_DESCRIPTION("Samsung SoC DRM FB Driver");
275 MODULE_LICENSE("GPL");