drm/exynos: Fix potential NULL pointer dereference
[deliverable/linux.git] / drivers / gpu / drm / exynos / exynos_drm_core.c
CommitLineData
1c248b7d
ID
1/* exynos_drm_core.c
2 *
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * Author:
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 "exynos_drm_drv.h"
31#include "exynos_drm_encoder.h"
32#include "exynos_drm_connector.h"
33#include "exynos_drm_fbdev.h"
34
1c248b7d 35static LIST_HEAD(exynos_drm_subdrv_list);
1c248b7d 36
41fecf3e 37static int exynos_drm_create_enc_conn(struct drm_device *dev,
1c248b7d
ID
38 struct exynos_drm_subdrv *subdrv)
39{
40 struct drm_encoder *encoder;
41 struct drm_connector *connector;
41fecf3e 42 int ret;
1c248b7d
ID
43
44 DRM_DEBUG_DRIVER("%s\n", __FILE__);
45
677e84c1
JS
46 subdrv->manager->dev = subdrv->dev;
47
1c248b7d 48 /* create and initialize a encoder for this sub driver. */
677e84c1 49 encoder = exynos_drm_encoder_create(dev, subdrv->manager,
1c248b7d
ID
50 (1 << MAX_CRTC) - 1);
51 if (!encoder) {
52 DRM_ERROR("failed to create encoder\n");
53 return -EFAULT;
54 }
55
56 /*
57 * create and initialize a connector for this sub driver and
58 * attach the encoder created above to the connector.
59 */
60 connector = exynos_drm_connector_create(dev, encoder);
61 if (!connector) {
62 DRM_ERROR("failed to create connector\n");
41fecf3e
ID
63 ret = -EFAULT;
64 goto err_destroy_encoder;
1c248b7d
ID
65 }
66
67 subdrv->encoder = encoder;
68 subdrv->connector = connector;
69
70 return 0;
41fecf3e
ID
71
72err_destroy_encoder:
73 encoder->funcs->destroy(encoder);
74 return ret;
1c248b7d
ID
75}
76
41fecf3e 77static void exynos_drm_destroy_enc_conn(struct exynos_drm_subdrv *subdrv)
1c248b7d 78{
1c248b7d
ID
79 if (subdrv->encoder) {
80 struct drm_encoder *encoder = subdrv->encoder;
81 encoder->funcs->destroy(encoder);
82 subdrv->encoder = NULL;
83 }
84
85 if (subdrv->connector) {
86 struct drm_connector *connector = subdrv->connector;
87 connector->funcs->destroy(connector);
88 subdrv->connector = NULL;
89 }
90}
91
41fecf3e
ID
92static int exynos_drm_subdrv_probe(struct drm_device *dev,
93 struct exynos_drm_subdrv *subdrv)
94{
95 if (subdrv->probe) {
96 int ret;
97
98 subdrv->drm_dev = dev;
99
100 /*
101 * this probe callback would be called by sub driver
102 * after setting of all resources to this sub driver,
103 * such as clock, irq and register map are done or by load()
104 * of exynos drm driver.
105 *
106 * P.S. note that this driver is considered for modularization.
107 */
108 ret = subdrv->probe(dev, subdrv->dev);
109 if (ret)
110 return ret;
111 }
112
113 return 0;
114}
115
116static void exynos_drm_subdrv_remove(struct drm_device *dev,
117 struct exynos_drm_subdrv *subdrv)
118{
119 DRM_DEBUG_DRIVER("%s\n", __FILE__);
120
121 if (subdrv->remove)
122 subdrv->remove(dev, subdrv->dev);
123}
124
1c248b7d
ID
125int exynos_drm_device_register(struct drm_device *dev)
126{
127 struct exynos_drm_subdrv *subdrv, *n;
41fecf3e 128 unsigned int fine_cnt = 0;
1c248b7d
ID
129 int err;
130
131 DRM_DEBUG_DRIVER("%s\n", __FILE__);
132
133 if (!dev)
134 return -EINVAL;
135
1c248b7d
ID
136 list_for_each_entry_safe(subdrv, n, &exynos_drm_subdrv_list, list) {
137 err = exynos_drm_subdrv_probe(dev, subdrv);
138 if (err) {
139 DRM_DEBUG("exynos drm subdrv probe failed.\n");
140 list_del(&subdrv->list);
41fecf3e
ID
141 continue;
142 }
143
144 /*
145 * if manager is null then it means that this sub driver
146 * doesn't need encoder and connector.
147 */
148 if (!subdrv->manager) {
149 fine_cnt++;
150 continue;
151 }
152
153 err = exynos_drm_create_enc_conn(dev, subdrv);
154 if (err) {
155 DRM_DEBUG("failed to create encoder and connector.\n");
156 exynos_drm_subdrv_remove(dev, subdrv);
157 list_del(&subdrv->list);
158 continue;
1c248b7d 159 }
41fecf3e
ID
160
161 fine_cnt++;
1c248b7d
ID
162 }
163
41fecf3e
ID
164 if (!fine_cnt)
165 return -EINVAL;
166
1c248b7d
ID
167 return 0;
168}
169EXPORT_SYMBOL_GPL(exynos_drm_device_register);
170
171int exynos_drm_device_unregister(struct drm_device *dev)
172{
173 struct exynos_drm_subdrv *subdrv;
174
175 DRM_DEBUG_DRIVER("%s\n", __FILE__);
176
132a5b91 177 if (!dev) {
1c248b7d
ID
178 WARN(1, "Unexpected drm device unregister!\n");
179 return -EINVAL;
180 }
181
41fecf3e 182 list_for_each_entry(subdrv, &exynos_drm_subdrv_list, list) {
1c248b7d 183 exynos_drm_subdrv_remove(dev, subdrv);
41fecf3e
ID
184 exynos_drm_destroy_enc_conn(subdrv);
185 }
1c248b7d 186
1c248b7d
ID
187 return 0;
188}
189EXPORT_SYMBOL_GPL(exynos_drm_device_unregister);
190
1c248b7d
ID
191int exynos_drm_subdrv_register(struct exynos_drm_subdrv *subdrv)
192{
1c248b7d
ID
193 DRM_DEBUG_DRIVER("%s\n", __FILE__);
194
195 if (!subdrv)
196 return -EINVAL;
197
1c248b7d 198 list_add_tail(&subdrv->list, &exynos_drm_subdrv_list);
1c248b7d
ID
199
200 return 0;
201}
202EXPORT_SYMBOL_GPL(exynos_drm_subdrv_register);
203
204int exynos_drm_subdrv_unregister(struct exynos_drm_subdrv *subdrv)
205{
1c248b7d
ID
206 DRM_DEBUG_DRIVER("%s\n", __FILE__);
207
132a5b91
JS
208 if (!subdrv)
209 return -EINVAL;
1c248b7d 210
132a5b91 211 list_del(&subdrv->list);
1c248b7d 212
132a5b91 213 return 0;
1c248b7d
ID
214}
215EXPORT_SYMBOL_GPL(exynos_drm_subdrv_unregister);
9084f7b8
JS
216
217int exynos_drm_subdrv_open(struct drm_device *dev, struct drm_file *file)
218{
219 struct exynos_drm_subdrv *subdrv;
220 int ret;
221
222 list_for_each_entry(subdrv, &exynos_drm_subdrv_list, list) {
223 if (subdrv->open) {
677e84c1 224 ret = subdrv->open(dev, subdrv->dev, file);
9084f7b8
JS
225 if (ret)
226 goto err;
227 }
228 }
229
230 return 0;
231
232err:
233 list_for_each_entry_reverse(subdrv, &subdrv->list, list) {
234 if (subdrv->close)
677e84c1 235 subdrv->close(dev, subdrv->dev, file);
9084f7b8
JS
236 }
237 return ret;
238}
239EXPORT_SYMBOL_GPL(exynos_drm_subdrv_open);
240
241void exynos_drm_subdrv_close(struct drm_device *dev, struct drm_file *file)
242{
243 struct exynos_drm_subdrv *subdrv;
244
245 list_for_each_entry(subdrv, &exynos_drm_subdrv_list, list) {
246 if (subdrv->close)
677e84c1 247 subdrv->close(dev, subdrv->dev, file);
9084f7b8
JS
248 }
249}
250EXPORT_SYMBOL_GPL(exynos_drm_subdrv_close);
This page took 0.075765 seconds and 5 git commands to generate.