blob: 3cf785c58186da818eb1757584ef8e00e14efa38 [file] [log] [blame]
Inki Dae1c248b72011-10-04 19:19:01 +09001/* exynos_drm_buf.c
2 *
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * Author: Inki Dae <inki.dae@samsung.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26#include "drmP.h"
27#include "drm.h"
28
29#include "exynos_drm_drv.h"
Inki Dae2c871122011-11-12 15:23:32 +090030#include "exynos_drm_gem.h"
Inki Dae1c248b72011-10-04 19:19:01 +090031#include "exynos_drm_buf.h"
32
Inki Dae1c248b72011-10-04 19:19:01 +090033static int lowlevel_buffer_allocate(struct drm_device *dev,
Inki Dae2c871122011-11-12 15:23:32 +090034 struct exynos_drm_gem_buf *buffer)
Inki Dae1c248b72011-10-04 19:19:01 +090035{
36 DRM_DEBUG_KMS("%s\n", __FILE__);
37
Inki Dae2c871122011-11-12 15:23:32 +090038 buffer->kvaddr = dma_alloc_writecombine(dev->dev, buffer->size,
39 &buffer->dma_addr, GFP_KERNEL);
40 if (!buffer->kvaddr) {
Inki Dae1c248b72011-10-04 19:19:01 +090041 DRM_ERROR("failed to allocate buffer.\n");
42 return -ENOMEM;
43 }
44
Inki Dae2c871122011-11-12 15:23:32 +090045 DRM_DEBUG_KMS("vaddr(0x%lx), dma_addr(0x%lx), size(0x%lx)\n",
46 (unsigned long)buffer->kvaddr,
47 (unsigned long)buffer->dma_addr,
48 buffer->size);
Inki Dae1c248b72011-10-04 19:19:01 +090049
50 return 0;
51}
52
53static void lowlevel_buffer_deallocate(struct drm_device *dev,
Inki Dae2c871122011-11-12 15:23:32 +090054 struct exynos_drm_gem_buf *buffer)
Inki Dae1c248b72011-10-04 19:19:01 +090055{
56 DRM_DEBUG_KMS("%s.\n", __FILE__);
57
Inki Dae2c871122011-11-12 15:23:32 +090058 if (buffer->dma_addr && buffer->size)
59 dma_free_writecombine(dev->dev, buffer->size, buffer->kvaddr,
60 (dma_addr_t)buffer->dma_addr);
Inki Dae1c248b72011-10-04 19:19:01 +090061 else
Inki Dae2c871122011-11-12 15:23:32 +090062 DRM_DEBUG_KMS("buffer data are invalid.\n");
Inki Dae1c248b72011-10-04 19:19:01 +090063}
64
Inki Dae2c871122011-11-12 15:23:32 +090065struct exynos_drm_gem_buf *exynos_drm_buf_create(struct drm_device *dev,
Inki Dae1c248b72011-10-04 19:19:01 +090066 unsigned int size)
67{
Inki Dae2c871122011-11-12 15:23:32 +090068 struct exynos_drm_gem_buf *buffer;
Inki Dae1c248b72011-10-04 19:19:01 +090069
70 DRM_DEBUG_KMS("%s.\n", __FILE__);
Inki Dae2c871122011-11-12 15:23:32 +090071 DRM_DEBUG_KMS("desired size = 0x%x\n", size);
Inki Dae1c248b72011-10-04 19:19:01 +090072
Inki Dae2c871122011-11-12 15:23:32 +090073 buffer = kzalloc(sizeof(*buffer), GFP_KERNEL);
74 if (!buffer) {
75 DRM_ERROR("failed to allocate exynos_drm_gem_buf.\n");
Joonyoung Shimee5e7702011-12-13 14:20:23 +090076 return NULL;
Inki Dae1c248b72011-10-04 19:19:01 +090077 }
78
Inki Dae2c871122011-11-12 15:23:32 +090079 buffer->size = size;
Inki Dae1c248b72011-10-04 19:19:01 +090080
81 /*
82 * allocate memory region with size and set the memory information
Inki Dae2c871122011-11-12 15:23:32 +090083 * to vaddr and dma_addr of a buffer object.
Inki Dae1c248b72011-10-04 19:19:01 +090084 */
Inki Dae2c871122011-11-12 15:23:32 +090085 if (lowlevel_buffer_allocate(dev, buffer) < 0) {
86 kfree(buffer);
Joonyoung Shimee5e7702011-12-13 14:20:23 +090087 return NULL;
Inki Dae1c248b72011-10-04 19:19:01 +090088 }
89
Inki Dae2c871122011-11-12 15:23:32 +090090 return buffer;
Inki Dae1c248b72011-10-04 19:19:01 +090091}
92
93void exynos_drm_buf_destroy(struct drm_device *dev,
Inki Dae2c871122011-11-12 15:23:32 +090094 struct exynos_drm_gem_buf *buffer)
Inki Dae1c248b72011-10-04 19:19:01 +090095{
96 DRM_DEBUG_KMS("%s.\n", __FILE__);
97
Inki Dae2c871122011-11-12 15:23:32 +090098 if (!buffer) {
99 DRM_DEBUG_KMS("buffer is null.\n");
Inki Dae1c248b72011-10-04 19:19:01 +0900100 return;
101 }
102
Inki Dae2c871122011-11-12 15:23:32 +0900103 lowlevel_buffer_deallocate(dev, buffer);
Inki Dae1c248b72011-10-04 19:19:01 +0900104
Inki Dae2c871122011-11-12 15:23:32 +0900105 kfree(buffer);
106 buffer = NULL;
Inki Dae1c248b72011-10-04 19:19:01 +0900107}
108
109MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
110MODULE_DESCRIPTION("Samsung SoC DRM Buffer Management Module");
111MODULE_LICENSE("GPL");