blob: 01cb9a03aac04eb50c4f877bc5060987264f6ac5 [file] [log] [blame]
Eunchul Kimcb471f142012-12-14 18:10:31 +09001/*
2 * Copyright (C) 2012 Samsung Electronics Co.Ltd
3 * Authors:
4 * Eunchul Kim <chulspro.kim@samsung.com>
5 * Jinyoung Jeon <jy0.jeon@samsung.com>
6 * Sangmin Lee <lsmin.lee@samsung.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 */
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/platform_device.h>
17#include <linux/types.h>
18#include <linux/clk.h>
19#include <linux/pm_runtime.h>
20#include <plat/map-base.h>
21
22#include <drm/drmP.h>
23#include <drm/exynos_drm.h>
24#include "exynos_drm_drv.h"
25#include "exynos_drm_gem.h"
26#include "exynos_drm_ipp.h"
Eunchul Kimc12e2612012-12-14 17:58:54 +090027#include "exynos_drm_iommu.h"
Eunchul Kimcb471f142012-12-14 18:10:31 +090028
29/*
Eunchul Kim6fe891f2012-12-22 17:49:26 +090030 * IPP stands for Image Post Processing and
Eunchul Kimcb471f142012-12-14 18:10:31 +090031 * supports image scaler/rotator and input/output DMA operations.
32 * using FIMC, GSC, Rotator, so on.
33 * IPP is integration device driver of same attribute h/w
34 */
35
36/*
37 * TODO
38 * 1. expand command control id.
39 * 2. integrate property and config.
40 * 3. removed send_event id check routine.
41 * 4. compare send_event id if needed.
42 * 5. free subdrv_remove notifier callback list if needed.
43 * 6. need to check subdrv_open about multi-open.
44 * 7. need to power_on implement power and sysmmu ctrl.
45 */
46
47#define get_ipp_context(dev) platform_get_drvdata(to_platform_device(dev))
48#define ipp_is_m2m_cmd(c) (c == IPP_CMD_M2M)
49
Seung-Woo Kim43f41902013-04-23 14:02:53 +090050/* platform device pointer for ipp device. */
51static struct platform_device *exynos_drm_ipp_pdev;
52
Eunchul Kimcb471f142012-12-14 18:10:31 +090053/*
54 * A structure of event.
55 *
56 * @base: base of event.
57 * @event: ipp event.
58 */
59struct drm_exynos_ipp_send_event {
60 struct drm_pending_event base;
61 struct drm_exynos_ipp_event event;
62};
63
64/*
65 * A structure of memory node.
66 *
67 * @list: list head to memory queue information.
68 * @ops_id: id of operations.
69 * @prop_id: id of property.
70 * @buf_id: id of buffer.
71 * @buf_info: gem objects and dma address, size.
72 * @filp: a pointer to drm_file.
73 */
74struct drm_exynos_ipp_mem_node {
75 struct list_head list;
76 enum drm_exynos_ops_id ops_id;
77 u32 prop_id;
78 u32 buf_id;
79 struct drm_exynos_ipp_buf_info buf_info;
80 struct drm_file *filp;
81};
82
83/*
84 * A structure of ipp context.
85 *
86 * @subdrv: prepare initialization using subdrv.
87 * @ipp_lock: lock for synchronization of access to ipp_idr.
88 * @prop_lock: lock for synchronization of access to prop_idr.
89 * @ipp_idr: ipp driver idr.
90 * @prop_idr: property idr.
91 * @event_workq: event work queue.
92 * @cmd_workq: command work queue.
93 */
94struct ipp_context {
95 struct exynos_drm_subdrv subdrv;
96 struct mutex ipp_lock;
97 struct mutex prop_lock;
98 struct idr ipp_idr;
99 struct idr prop_idr;
100 struct workqueue_struct *event_workq;
101 struct workqueue_struct *cmd_workq;
102};
103
104static LIST_HEAD(exynos_drm_ippdrv_list);
105static DEFINE_MUTEX(exynos_drm_ippdrv_lock);
106static BLOCKING_NOTIFIER_HEAD(exynos_drm_ippnb_list);
107
Seung-Woo Kim43f41902013-04-23 14:02:53 +0900108int exynos_platform_device_ipp_register(void)
109{
110 struct platform_device *pdev;
111
112 if (exynos_drm_ipp_pdev)
113 return -EEXIST;
114
115 pdev = platform_device_register_simple("exynos-drm-ipp", -1, NULL, 0);
116 if (IS_ERR(pdev))
117 return PTR_ERR(pdev);
118
119 exynos_drm_ipp_pdev = pdev;
120
121 return 0;
122}
123
124void exynos_platform_device_ipp_unregister(void)
125{
126 if (exynos_drm_ipp_pdev) {
127 platform_device_unregister(exynos_drm_ipp_pdev);
128 exynos_drm_ipp_pdev = NULL;
129 }
130}
131
Eunchul Kimcb471f142012-12-14 18:10:31 +0900132int exynos_drm_ippdrv_register(struct exynos_drm_ippdrv *ippdrv)
133{
Eunchul Kimcb471f142012-12-14 18:10:31 +0900134 if (!ippdrv)
135 return -EINVAL;
136
137 mutex_lock(&exynos_drm_ippdrv_lock);
138 list_add_tail(&ippdrv->drv_list, &exynos_drm_ippdrv_list);
139 mutex_unlock(&exynos_drm_ippdrv_lock);
140
141 return 0;
142}
143
144int exynos_drm_ippdrv_unregister(struct exynos_drm_ippdrv *ippdrv)
145{
Eunchul Kimcb471f142012-12-14 18:10:31 +0900146 if (!ippdrv)
147 return -EINVAL;
148
149 mutex_lock(&exynos_drm_ippdrv_lock);
150 list_del(&ippdrv->drv_list);
151 mutex_unlock(&exynos_drm_ippdrv_lock);
152
153 return 0;
154}
155
156static int ipp_create_id(struct idr *id_idr, struct mutex *lock, void *obj,
157 u32 *idp)
158{
159 int ret;
160
Eunchul Kimcb471f142012-12-14 18:10:31 +0900161 /* do the allocation under our mutexlock */
162 mutex_lock(lock);
Tejun Heo8550cb22013-02-27 17:04:09 -0800163 ret = idr_alloc(id_idr, obj, 1, 0, GFP_KERNEL);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900164 mutex_unlock(lock);
Tejun Heo8550cb22013-02-27 17:04:09 -0800165 if (ret < 0)
166 return ret;
Eunchul Kimcb471f142012-12-14 18:10:31 +0900167
Tejun Heo8550cb22013-02-27 17:04:09 -0800168 *idp = ret;
169 return 0;
Eunchul Kimcb471f142012-12-14 18:10:31 +0900170}
171
172static void *ipp_find_obj(struct idr *id_idr, struct mutex *lock, u32 id)
173{
174 void *obj;
175
YoungJun Chocbc4c332013-06-12 10:44:40 +0900176 DRM_DEBUG_KMS("id[%d]\n", id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900177
178 mutex_lock(lock);
179
180 /* find object using handle */
181 obj = idr_find(id_idr, id);
182 if (!obj) {
183 DRM_ERROR("failed to find object.\n");
184 mutex_unlock(lock);
185 return ERR_PTR(-ENODEV);
186 }
187
188 mutex_unlock(lock);
189
190 return obj;
191}
192
193static inline bool ipp_check_dedicated(struct exynos_drm_ippdrv *ippdrv,
194 enum drm_exynos_ipp_cmd cmd)
195{
196 /*
197 * check dedicated flag and WB, OUTPUT operation with
198 * power on state.
199 */
200 if (ippdrv->dedicated || (!ipp_is_m2m_cmd(cmd) &&
201 !pm_runtime_suspended(ippdrv->dev)))
202 return true;
203
204 return false;
205}
206
207static struct exynos_drm_ippdrv *ipp_find_driver(struct ipp_context *ctx,
208 struct drm_exynos_ipp_property *property)
209{
210 struct exynos_drm_ippdrv *ippdrv;
211 u32 ipp_id = property->ipp_id;
212
YoungJun Chocbc4c332013-06-12 10:44:40 +0900213 DRM_DEBUG_KMS("ipp_id[%d]\n", ipp_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900214
215 if (ipp_id) {
216 /* find ipp driver using idr */
217 ippdrv = ipp_find_obj(&ctx->ipp_idr, &ctx->ipp_lock,
218 ipp_id);
Sachin Kamatf0250452013-04-29 12:27:06 +0530219 if (IS_ERR(ippdrv)) {
Eunchul Kimcb471f142012-12-14 18:10:31 +0900220 DRM_ERROR("not found ipp%d driver.\n", ipp_id);
221 return ippdrv;
222 }
223
224 /*
225 * WB, OUTPUT opertion not supported multi-operation.
226 * so, make dedicated state at set property ioctl.
227 * when ipp driver finished operations, clear dedicated flags.
228 */
229 if (ipp_check_dedicated(ippdrv, property->cmd)) {
230 DRM_ERROR("already used choose device.\n");
231 return ERR_PTR(-EBUSY);
232 }
233
234 /*
235 * This is necessary to find correct device in ipp drivers.
236 * ipp drivers have different abilities,
237 * so need to check property.
238 */
239 if (ippdrv->check_property &&
240 ippdrv->check_property(ippdrv->dev, property)) {
241 DRM_ERROR("not support property.\n");
242 return ERR_PTR(-EINVAL);
243 }
244
245 return ippdrv;
246 } else {
247 /*
248 * This case is search all ipp driver for finding.
249 * user application don't set ipp_id in this case,
250 * so ipp subsystem search correct driver in driver list.
251 */
252 list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list) {
253 if (ipp_check_dedicated(ippdrv, property->cmd)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900254 DRM_DEBUG_KMS("used device.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +0900255 continue;
256 }
257
258 if (ippdrv->check_property &&
259 ippdrv->check_property(ippdrv->dev, property)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900260 DRM_DEBUG_KMS("not support property.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +0900261 continue;
262 }
263
264 return ippdrv;
265 }
266
267 DRM_ERROR("not support ipp driver operations.\n");
268 }
269
270 return ERR_PTR(-ENODEV);
271}
272
273static struct exynos_drm_ippdrv *ipp_find_drv_by_handle(u32 prop_id)
274{
275 struct exynos_drm_ippdrv *ippdrv;
276 struct drm_exynos_ipp_cmd_node *c_node;
277 int count = 0;
278
YoungJun Chocbc4c332013-06-12 10:44:40 +0900279 DRM_DEBUG_KMS("prop_id[%d]\n", prop_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900280
281 if (list_empty(&exynos_drm_ippdrv_list)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900282 DRM_DEBUG_KMS("ippdrv_list is empty.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +0900283 return ERR_PTR(-ENODEV);
284 }
285
286 /*
287 * This case is search ipp driver by prop_id handle.
288 * sometimes, ipp subsystem find driver by prop_id.
289 * e.g PAUSE state, queue buf, command contro.
290 */
291 list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900292 DRM_DEBUG_KMS("count[%d]ippdrv[0x%x]\n", count++, (int)ippdrv);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900293
294 if (!list_empty(&ippdrv->cmd_list)) {
295 list_for_each_entry(c_node, &ippdrv->cmd_list, list)
296 if (c_node->property.prop_id == prop_id)
297 return ippdrv;
298 }
299 }
300
301 return ERR_PTR(-ENODEV);
302}
303
304int exynos_drm_ipp_get_property(struct drm_device *drm_dev, void *data,
305 struct drm_file *file)
306{
307 struct drm_exynos_file_private *file_priv = file->driver_priv;
308 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv;
309 struct device *dev = priv->dev;
310 struct ipp_context *ctx = get_ipp_context(dev);
311 struct drm_exynos_ipp_prop_list *prop_list = data;
312 struct exynos_drm_ippdrv *ippdrv;
313 int count = 0;
314
Eunchul Kimcb471f142012-12-14 18:10:31 +0900315 if (!ctx) {
316 DRM_ERROR("invalid context.\n");
317 return -EINVAL;
318 }
319
320 if (!prop_list) {
321 DRM_ERROR("invalid property parameter.\n");
322 return -EINVAL;
323 }
324
YoungJun Chocbc4c332013-06-12 10:44:40 +0900325 DRM_DEBUG_KMS("ipp_id[%d]\n", prop_list->ipp_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900326
327 if (!prop_list->ipp_id) {
328 list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list)
329 count++;
330 /*
331 * Supports ippdrv list count for user application.
332 * First step user application getting ippdrv count.
333 * and second step getting ippdrv capability using ipp_id.
334 */
335 prop_list->count = count;
336 } else {
337 /*
338 * Getting ippdrv capability by ipp_id.
339 * some deivce not supported wb, output interface.
340 * so, user application detect correct ipp driver
341 * using this ioctl.
342 */
343 ippdrv = ipp_find_obj(&ctx->ipp_idr, &ctx->ipp_lock,
344 prop_list->ipp_id);
345 if (!ippdrv) {
346 DRM_ERROR("not found ipp%d driver.\n",
347 prop_list->ipp_id);
348 return -EINVAL;
349 }
350
351 prop_list = ippdrv->prop_list;
352 }
353
354 return 0;
355}
356
357static void ipp_print_property(struct drm_exynos_ipp_property *property,
358 int idx)
359{
360 struct drm_exynos_ipp_config *config = &property->config[idx];
361 struct drm_exynos_pos *pos = &config->pos;
362 struct drm_exynos_sz *sz = &config->sz;
363
YoungJun Chocbc4c332013-06-12 10:44:40 +0900364 DRM_DEBUG_KMS("prop_id[%d]ops[%s]fmt[0x%x]\n",
365 property->prop_id, idx ? "dst" : "src", config->fmt);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900366
YoungJun Chocbc4c332013-06-12 10:44:40 +0900367 DRM_DEBUG_KMS("pos[%d %d %d %d]sz[%d %d]f[%d]r[%d]\n",
368 pos->x, pos->y, pos->w, pos->h,
Eunchul Kimcb471f142012-12-14 18:10:31 +0900369 sz->hsize, sz->vsize, config->flip, config->degree);
370}
371
372static int ipp_find_and_set_property(struct drm_exynos_ipp_property *property)
373{
374 struct exynos_drm_ippdrv *ippdrv;
375 struct drm_exynos_ipp_cmd_node *c_node;
376 u32 prop_id = property->prop_id;
377
YoungJun Chocbc4c332013-06-12 10:44:40 +0900378 DRM_DEBUG_KMS("prop_id[%d]\n", prop_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900379
380 ippdrv = ipp_find_drv_by_handle(prop_id);
Sachin Kamatf0250452013-04-29 12:27:06 +0530381 if (IS_ERR(ippdrv)) {
Eunchul Kimcb471f142012-12-14 18:10:31 +0900382 DRM_ERROR("failed to get ipp driver.\n");
383 return -EINVAL;
384 }
385
386 /*
387 * Find command node using command list in ippdrv.
388 * when we find this command no using prop_id.
389 * return property information set in this command node.
390 */
391 list_for_each_entry(c_node, &ippdrv->cmd_list, list) {
392 if ((c_node->property.prop_id == prop_id) &&
393 (c_node->state == IPP_STATE_STOP)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900394 DRM_DEBUG_KMS("found cmd[%d]ippdrv[0x%x]\n",
395 property->cmd, (int)ippdrv);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900396
397 c_node->property = *property;
398 return 0;
399 }
400 }
401
402 DRM_ERROR("failed to search property.\n");
403
404 return -EINVAL;
405}
406
407static struct drm_exynos_ipp_cmd_work *ipp_create_cmd_work(void)
408{
409 struct drm_exynos_ipp_cmd_work *cmd_work;
410
Eunchul Kimcb471f142012-12-14 18:10:31 +0900411 cmd_work = kzalloc(sizeof(*cmd_work), GFP_KERNEL);
412 if (!cmd_work) {
413 DRM_ERROR("failed to alloc cmd_work.\n");
414 return ERR_PTR(-ENOMEM);
415 }
416
417 INIT_WORK((struct work_struct *)cmd_work, ipp_sched_cmd);
418
419 return cmd_work;
420}
421
422static struct drm_exynos_ipp_event_work *ipp_create_event_work(void)
423{
424 struct drm_exynos_ipp_event_work *event_work;
425
Eunchul Kimcb471f142012-12-14 18:10:31 +0900426 event_work = kzalloc(sizeof(*event_work), GFP_KERNEL);
427 if (!event_work) {
428 DRM_ERROR("failed to alloc event_work.\n");
429 return ERR_PTR(-ENOMEM);
430 }
431
432 INIT_WORK((struct work_struct *)event_work, ipp_sched_event);
433
434 return event_work;
435}
436
437int exynos_drm_ipp_set_property(struct drm_device *drm_dev, void *data,
438 struct drm_file *file)
439{
440 struct drm_exynos_file_private *file_priv = file->driver_priv;
441 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv;
442 struct device *dev = priv->dev;
443 struct ipp_context *ctx = get_ipp_context(dev);
444 struct drm_exynos_ipp_property *property = data;
445 struct exynos_drm_ippdrv *ippdrv;
446 struct drm_exynos_ipp_cmd_node *c_node;
447 int ret, i;
448
Eunchul Kimcb471f142012-12-14 18:10:31 +0900449 if (!ctx) {
450 DRM_ERROR("invalid context.\n");
451 return -EINVAL;
452 }
453
454 if (!property) {
455 DRM_ERROR("invalid property parameter.\n");
456 return -EINVAL;
457 }
458
459 /*
460 * This is log print for user application property.
461 * user application set various property.
462 */
463 for_each_ipp_ops(i)
464 ipp_print_property(property, i);
465
466 /*
467 * set property ioctl generated new prop_id.
468 * but in this case already asigned prop_id using old set property.
469 * e.g PAUSE state. this case supports find current prop_id and use it
470 * instead of allocation.
471 */
472 if (property->prop_id) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900473 DRM_DEBUG_KMS("prop_id[%d]\n", property->prop_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900474 return ipp_find_and_set_property(property);
475 }
476
477 /* find ipp driver using ipp id */
478 ippdrv = ipp_find_driver(ctx, property);
Sachin Kamatf0250452013-04-29 12:27:06 +0530479 if (IS_ERR(ippdrv)) {
Eunchul Kimcb471f142012-12-14 18:10:31 +0900480 DRM_ERROR("failed to get ipp driver.\n");
481 return -EINVAL;
482 }
483
484 /* allocate command node */
485 c_node = kzalloc(sizeof(*c_node), GFP_KERNEL);
486 if (!c_node) {
487 DRM_ERROR("failed to allocate map node.\n");
488 return -ENOMEM;
489 }
490
491 /* create property id */
492 ret = ipp_create_id(&ctx->prop_idr, &ctx->prop_lock, c_node,
493 &property->prop_id);
494 if (ret) {
495 DRM_ERROR("failed to create id.\n");
496 goto err_clear;
497 }
498
YoungJun Chocbc4c332013-06-12 10:44:40 +0900499 DRM_DEBUG_KMS("created prop_id[%d]cmd[%d]ippdrv[0x%x]\n",
500 property->prop_id, property->cmd, (int)ippdrv);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900501
502 /* stored property information and ippdrv in private data */
503 c_node->priv = priv;
504 c_node->property = *property;
505 c_node->state = IPP_STATE_IDLE;
506
507 c_node->start_work = ipp_create_cmd_work();
Sachin Kamatf0250452013-04-29 12:27:06 +0530508 if (IS_ERR(c_node->start_work)) {
Eunchul Kimcb471f142012-12-14 18:10:31 +0900509 DRM_ERROR("failed to create start work.\n");
510 goto err_clear;
511 }
512
513 c_node->stop_work = ipp_create_cmd_work();
Sachin Kamatf0250452013-04-29 12:27:06 +0530514 if (IS_ERR(c_node->stop_work)) {
Eunchul Kimcb471f142012-12-14 18:10:31 +0900515 DRM_ERROR("failed to create stop work.\n");
516 goto err_free_start;
517 }
518
519 c_node->event_work = ipp_create_event_work();
Sachin Kamatf0250452013-04-29 12:27:06 +0530520 if (IS_ERR(c_node->event_work)) {
Eunchul Kimcb471f142012-12-14 18:10:31 +0900521 DRM_ERROR("failed to create event work.\n");
522 goto err_free_stop;
523 }
524
525 mutex_init(&c_node->cmd_lock);
526 mutex_init(&c_node->mem_lock);
527 mutex_init(&c_node->event_lock);
528
529 init_completion(&c_node->start_complete);
530 init_completion(&c_node->stop_complete);
531
532 for_each_ipp_ops(i)
533 INIT_LIST_HEAD(&c_node->mem_list[i]);
534
535 INIT_LIST_HEAD(&c_node->event_list);
536 list_splice_init(&priv->event_list, &c_node->event_list);
537 list_add_tail(&c_node->list, &ippdrv->cmd_list);
538
539 /* make dedicated state without m2m */
540 if (!ipp_is_m2m_cmd(property->cmd))
541 ippdrv->dedicated = true;
542
543 return 0;
544
545err_free_stop:
546 kfree(c_node->stop_work);
547err_free_start:
548 kfree(c_node->start_work);
549err_clear:
550 kfree(c_node);
551 return ret;
552}
553
554static void ipp_clean_cmd_node(struct drm_exynos_ipp_cmd_node *c_node)
555{
Eunchul Kimcb471f142012-12-14 18:10:31 +0900556 /* delete list */
557 list_del(&c_node->list);
558
559 /* destroy mutex */
560 mutex_destroy(&c_node->cmd_lock);
561 mutex_destroy(&c_node->mem_lock);
562 mutex_destroy(&c_node->event_lock);
563
564 /* free command node */
565 kfree(c_node->start_work);
566 kfree(c_node->stop_work);
567 kfree(c_node->event_work);
568 kfree(c_node);
569}
570
571static int ipp_check_mem_list(struct drm_exynos_ipp_cmd_node *c_node)
572{
573 struct drm_exynos_ipp_property *property = &c_node->property;
574 struct drm_exynos_ipp_mem_node *m_node;
575 struct list_head *head;
576 int ret, i, count[EXYNOS_DRM_OPS_MAX] = { 0, };
577
Eunchul Kimcb471f142012-12-14 18:10:31 +0900578 mutex_lock(&c_node->mem_lock);
579
580 for_each_ipp_ops(i) {
581 /* source/destination memory list */
582 head = &c_node->mem_list[i];
583
584 if (list_empty(head)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900585 DRM_DEBUG_KMS("%s memory empty.\n", i ? "dst" : "src");
Eunchul Kimcb471f142012-12-14 18:10:31 +0900586 continue;
587 }
588
589 /* find memory node entry */
590 list_for_each_entry(m_node, head, list) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900591 DRM_DEBUG_KMS("%s,count[%d]m_node[0x%x]\n",
Eunchul Kimcb471f142012-12-14 18:10:31 +0900592 i ? "dst" : "src", count[i], (int)m_node);
593 count[i]++;
594 }
595 }
596
YoungJun Chocbc4c332013-06-12 10:44:40 +0900597 DRM_DEBUG_KMS("min[%d]max[%d]\n",
Eunchul Kimcb471f142012-12-14 18:10:31 +0900598 min(count[EXYNOS_DRM_OPS_SRC], count[EXYNOS_DRM_OPS_DST]),
599 max(count[EXYNOS_DRM_OPS_SRC], count[EXYNOS_DRM_OPS_DST]));
600
601 /*
602 * M2M operations should be need paired memory address.
603 * so, need to check minimum count about src, dst.
604 * other case not use paired memory, so use maximum count
605 */
606 if (ipp_is_m2m_cmd(property->cmd))
607 ret = min(count[EXYNOS_DRM_OPS_SRC],
608 count[EXYNOS_DRM_OPS_DST]);
609 else
610 ret = max(count[EXYNOS_DRM_OPS_SRC],
611 count[EXYNOS_DRM_OPS_DST]);
612
613 mutex_unlock(&c_node->mem_lock);
614
615 return ret;
616}
617
618static struct drm_exynos_ipp_mem_node
619 *ipp_find_mem_node(struct drm_exynos_ipp_cmd_node *c_node,
620 struct drm_exynos_ipp_queue_buf *qbuf)
621{
622 struct drm_exynos_ipp_mem_node *m_node;
623 struct list_head *head;
624 int count = 0;
625
YoungJun Chocbc4c332013-06-12 10:44:40 +0900626 DRM_DEBUG_KMS("buf_id[%d]\n", qbuf->buf_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900627
628 /* source/destination memory list */
629 head = &c_node->mem_list[qbuf->ops_id];
630
631 /* find memory node from memory list */
632 list_for_each_entry(m_node, head, list) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900633 DRM_DEBUG_KMS("count[%d]m_node[0x%x]\n", count++, (int)m_node);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900634
635 /* compare buffer id */
636 if (m_node->buf_id == qbuf->buf_id)
637 return m_node;
638 }
639
640 return NULL;
641}
642
643static int ipp_set_mem_node(struct exynos_drm_ippdrv *ippdrv,
644 struct drm_exynos_ipp_cmd_node *c_node,
645 struct drm_exynos_ipp_mem_node *m_node)
646{
647 struct exynos_drm_ipp_ops *ops = NULL;
648 int ret = 0;
649
YoungJun Chocbc4c332013-06-12 10:44:40 +0900650 DRM_DEBUG_KMS("node[0x%x]\n", (int)m_node);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900651
652 if (!m_node) {
653 DRM_ERROR("invalid queue node.\n");
654 return -EFAULT;
655 }
656
657 mutex_lock(&c_node->mem_lock);
658
YoungJun Chocbc4c332013-06-12 10:44:40 +0900659 DRM_DEBUG_KMS("ops_id[%d]\n", m_node->ops_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900660
661 /* get operations callback */
662 ops = ippdrv->ops[m_node->ops_id];
663 if (!ops) {
664 DRM_ERROR("not support ops.\n");
665 ret = -EFAULT;
666 goto err_unlock;
667 }
668
669 /* set address and enable irq */
670 if (ops->set_addr) {
671 ret = ops->set_addr(ippdrv->dev, &m_node->buf_info,
672 m_node->buf_id, IPP_BUF_ENQUEUE);
673 if (ret) {
674 DRM_ERROR("failed to set addr.\n");
675 goto err_unlock;
676 }
677 }
678
679err_unlock:
680 mutex_unlock(&c_node->mem_lock);
681 return ret;
682}
683
684static struct drm_exynos_ipp_mem_node
685 *ipp_get_mem_node(struct drm_device *drm_dev,
686 struct drm_file *file,
687 struct drm_exynos_ipp_cmd_node *c_node,
688 struct drm_exynos_ipp_queue_buf *qbuf)
689{
690 struct drm_exynos_ipp_mem_node *m_node;
691 struct drm_exynos_ipp_buf_info buf_info;
692 void *addr;
693 int i;
694
Eunchul Kimcb471f142012-12-14 18:10:31 +0900695 mutex_lock(&c_node->mem_lock);
696
697 m_node = kzalloc(sizeof(*m_node), GFP_KERNEL);
698 if (!m_node) {
699 DRM_ERROR("failed to allocate queue node.\n");
700 goto err_unlock;
701 }
702
703 /* clear base address for error handling */
704 memset(&buf_info, 0x0, sizeof(buf_info));
705
706 /* operations, buffer id */
707 m_node->ops_id = qbuf->ops_id;
708 m_node->prop_id = qbuf->prop_id;
709 m_node->buf_id = qbuf->buf_id;
710
YoungJun Chocbc4c332013-06-12 10:44:40 +0900711 DRM_DEBUG_KMS("m_node[0x%x]ops_id[%d]\n", (int)m_node, qbuf->ops_id);
712 DRM_DEBUG_KMS("prop_id[%d]buf_id[%d]\n", qbuf->prop_id, m_node->buf_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900713
714 for_each_ipp_planar(i) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900715 DRM_DEBUG_KMS("i[%d]handle[0x%x]\n", i, qbuf->handle[i]);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900716
717 /* get dma address by handle */
718 if (qbuf->handle[i]) {
719 addr = exynos_drm_gem_get_dma_addr(drm_dev,
720 qbuf->handle[i], file);
721 if (IS_ERR(addr)) {
722 DRM_ERROR("failed to get addr.\n");
723 goto err_clear;
724 }
725
726 buf_info.handles[i] = qbuf->handle[i];
727 buf_info.base[i] = *(dma_addr_t *) addr;
YoungJun Chocbc4c332013-06-12 10:44:40 +0900728 DRM_DEBUG_KMS("i[%d]base[0x%x]hd[0x%x]\n",
729 i, buf_info.base[i], (int)buf_info.handles[i]);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900730 }
731 }
732
733 m_node->filp = file;
734 m_node->buf_info = buf_info;
735 list_add_tail(&m_node->list, &c_node->mem_list[qbuf->ops_id]);
736
737 mutex_unlock(&c_node->mem_lock);
738 return m_node;
739
740err_clear:
741 kfree(m_node);
742err_unlock:
743 mutex_unlock(&c_node->mem_lock);
744 return ERR_PTR(-EFAULT);
745}
746
747static int ipp_put_mem_node(struct drm_device *drm_dev,
748 struct drm_exynos_ipp_cmd_node *c_node,
749 struct drm_exynos_ipp_mem_node *m_node)
750{
751 int i;
752
YoungJun Chocbc4c332013-06-12 10:44:40 +0900753 DRM_DEBUG_KMS("node[0x%x]\n", (int)m_node);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900754
755 if (!m_node) {
756 DRM_ERROR("invalid dequeue node.\n");
757 return -EFAULT;
758 }
759
760 if (list_empty(&m_node->list)) {
761 DRM_ERROR("empty memory node.\n");
762 return -ENOMEM;
763 }
764
765 mutex_lock(&c_node->mem_lock);
766
YoungJun Chocbc4c332013-06-12 10:44:40 +0900767 DRM_DEBUG_KMS("ops_id[%d]\n", m_node->ops_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900768
769 /* put gem buffer */
770 for_each_ipp_planar(i) {
771 unsigned long handle = m_node->buf_info.handles[i];
772 if (handle)
773 exynos_drm_gem_put_dma_addr(drm_dev, handle,
774 m_node->filp);
775 }
776
777 /* delete list in queue */
778 list_del(&m_node->list);
779 kfree(m_node);
780
781 mutex_unlock(&c_node->mem_lock);
782
783 return 0;
784}
785
786static void ipp_free_event(struct drm_pending_event *event)
787{
788 kfree(event);
789}
790
791static int ipp_get_event(struct drm_device *drm_dev,
792 struct drm_file *file,
793 struct drm_exynos_ipp_cmd_node *c_node,
794 struct drm_exynos_ipp_queue_buf *qbuf)
795{
796 struct drm_exynos_ipp_send_event *e;
797 unsigned long flags;
798
YoungJun Chocbc4c332013-06-12 10:44:40 +0900799 DRM_DEBUG_KMS("ops_id[%d]buf_id[%d]\n", qbuf->ops_id, qbuf->buf_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900800
801 e = kzalloc(sizeof(*e), GFP_KERNEL);
802
803 if (!e) {
804 DRM_ERROR("failed to allocate event.\n");
805 spin_lock_irqsave(&drm_dev->event_lock, flags);
806 file->event_space += sizeof(e->event);
807 spin_unlock_irqrestore(&drm_dev->event_lock, flags);
808 return -ENOMEM;
809 }
810
811 /* make event */
812 e->event.base.type = DRM_EXYNOS_IPP_EVENT;
813 e->event.base.length = sizeof(e->event);
814 e->event.user_data = qbuf->user_data;
815 e->event.prop_id = qbuf->prop_id;
816 e->event.buf_id[EXYNOS_DRM_OPS_DST] = qbuf->buf_id;
817 e->base.event = &e->event.base;
818 e->base.file_priv = file;
819 e->base.destroy = ipp_free_event;
820 list_add_tail(&e->base.link, &c_node->event_list);
821
822 return 0;
823}
824
825static void ipp_put_event(struct drm_exynos_ipp_cmd_node *c_node,
826 struct drm_exynos_ipp_queue_buf *qbuf)
827{
828 struct drm_exynos_ipp_send_event *e, *te;
829 int count = 0;
830
Eunchul Kimcb471f142012-12-14 18:10:31 +0900831 if (list_empty(&c_node->event_list)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900832 DRM_DEBUG_KMS("event_list is empty.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +0900833 return;
834 }
835
836 list_for_each_entry_safe(e, te, &c_node->event_list, base.link) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900837 DRM_DEBUG_KMS("count[%d]e[0x%x]\n", count++, (int)e);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900838
839 /*
840 * quf == NULL condition means all event deletion.
841 * stop operations want to delete all event list.
842 * another case delete only same buf id.
843 */
844 if (!qbuf) {
845 /* delete list */
846 list_del(&e->base.link);
847 kfree(e);
848 }
849
850 /* compare buffer id */
851 if (qbuf && (qbuf->buf_id ==
852 e->event.buf_id[EXYNOS_DRM_OPS_DST])) {
853 /* delete list */
854 list_del(&e->base.link);
855 kfree(e);
856 return;
857 }
858 }
859}
860
Sachin Kamat0bc4a0a2013-01-14 12:29:10 +0530861static void ipp_handle_cmd_work(struct device *dev,
Eunchul Kimcb471f142012-12-14 18:10:31 +0900862 struct exynos_drm_ippdrv *ippdrv,
863 struct drm_exynos_ipp_cmd_work *cmd_work,
864 struct drm_exynos_ipp_cmd_node *c_node)
865{
866 struct ipp_context *ctx = get_ipp_context(dev);
867
868 cmd_work->ippdrv = ippdrv;
869 cmd_work->c_node = c_node;
870 queue_work(ctx->cmd_workq, (struct work_struct *)cmd_work);
871}
872
873static int ipp_queue_buf_with_run(struct device *dev,
874 struct drm_exynos_ipp_cmd_node *c_node,
875 struct drm_exynos_ipp_mem_node *m_node,
876 struct drm_exynos_ipp_queue_buf *qbuf)
877{
878 struct exynos_drm_ippdrv *ippdrv;
879 struct drm_exynos_ipp_property *property;
880 struct exynos_drm_ipp_ops *ops;
881 int ret;
882
Eunchul Kimcb471f142012-12-14 18:10:31 +0900883 ippdrv = ipp_find_drv_by_handle(qbuf->prop_id);
Sachin Kamatf0250452013-04-29 12:27:06 +0530884 if (IS_ERR(ippdrv)) {
Eunchul Kimcb471f142012-12-14 18:10:31 +0900885 DRM_ERROR("failed to get ipp driver.\n");
886 return -EFAULT;
887 }
888
889 ops = ippdrv->ops[qbuf->ops_id];
890 if (!ops) {
891 DRM_ERROR("failed to get ops.\n");
892 return -EFAULT;
893 }
894
895 property = &c_node->property;
896
897 if (c_node->state != IPP_STATE_START) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900898 DRM_DEBUG_KMS("bypass for invalid state.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +0900899 return 0;
900 }
901
902 if (!ipp_check_mem_list(c_node)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +0900903 DRM_DEBUG_KMS("empty memory.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +0900904 return 0;
905 }
906
907 /*
908 * If set destination buffer and enabled clock,
909 * then m2m operations need start operations at queue_buf
910 */
911 if (ipp_is_m2m_cmd(property->cmd)) {
912 struct drm_exynos_ipp_cmd_work *cmd_work = c_node->start_work;
913
914 cmd_work->ctrl = IPP_CTRL_PLAY;
915 ipp_handle_cmd_work(dev, ippdrv, cmd_work, c_node);
916 } else {
917 ret = ipp_set_mem_node(ippdrv, c_node, m_node);
918 if (ret) {
919 DRM_ERROR("failed to set m node.\n");
920 return ret;
921 }
922 }
923
924 return 0;
925}
926
927static void ipp_clean_queue_buf(struct drm_device *drm_dev,
928 struct drm_exynos_ipp_cmd_node *c_node,
929 struct drm_exynos_ipp_queue_buf *qbuf)
930{
931 struct drm_exynos_ipp_mem_node *m_node, *tm_node;
932
Eunchul Kimcb471f142012-12-14 18:10:31 +0900933 if (!list_empty(&c_node->mem_list[qbuf->ops_id])) {
934 /* delete list */
935 list_for_each_entry_safe(m_node, tm_node,
936 &c_node->mem_list[qbuf->ops_id], list) {
937 if (m_node->buf_id == qbuf->buf_id &&
938 m_node->ops_id == qbuf->ops_id)
939 ipp_put_mem_node(drm_dev, c_node, m_node);
940 }
941 }
942}
943
944int exynos_drm_ipp_queue_buf(struct drm_device *drm_dev, void *data,
945 struct drm_file *file)
946{
947 struct drm_exynos_file_private *file_priv = file->driver_priv;
948 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv;
949 struct device *dev = priv->dev;
950 struct ipp_context *ctx = get_ipp_context(dev);
951 struct drm_exynos_ipp_queue_buf *qbuf = data;
952 struct drm_exynos_ipp_cmd_node *c_node;
953 struct drm_exynos_ipp_mem_node *m_node;
954 int ret;
955
Eunchul Kimcb471f142012-12-14 18:10:31 +0900956 if (!qbuf) {
957 DRM_ERROR("invalid buf parameter.\n");
958 return -EINVAL;
959 }
960
961 if (qbuf->ops_id >= EXYNOS_DRM_OPS_MAX) {
962 DRM_ERROR("invalid ops parameter.\n");
963 return -EINVAL;
964 }
965
YoungJun Chocbc4c332013-06-12 10:44:40 +0900966 DRM_DEBUG_KMS("prop_id[%d]ops_id[%s]buf_id[%d]buf_type[%d]\n",
967 qbuf->prop_id, qbuf->ops_id ? "dst" : "src",
Eunchul Kimcb471f142012-12-14 18:10:31 +0900968 qbuf->buf_id, qbuf->buf_type);
969
970 /* find command node */
971 c_node = ipp_find_obj(&ctx->prop_idr, &ctx->prop_lock,
972 qbuf->prop_id);
973 if (!c_node) {
974 DRM_ERROR("failed to get command node.\n");
975 return -EFAULT;
976 }
977
978 /* buffer control */
979 switch (qbuf->buf_type) {
980 case IPP_BUF_ENQUEUE:
981 /* get memory node */
982 m_node = ipp_get_mem_node(drm_dev, file, c_node, qbuf);
983 if (IS_ERR(m_node)) {
984 DRM_ERROR("failed to get m_node.\n");
985 return PTR_ERR(m_node);
986 }
987
988 /*
989 * first step get event for destination buffer.
990 * and second step when M2M case run with destination buffer
991 * if needed.
992 */
993 if (qbuf->ops_id == EXYNOS_DRM_OPS_DST) {
994 /* get event for destination buffer */
995 ret = ipp_get_event(drm_dev, file, c_node, qbuf);
996 if (ret) {
997 DRM_ERROR("failed to get event.\n");
998 goto err_clean_node;
999 }
1000
1001 /*
1002 * M2M case run play control for streaming feature.
1003 * other case set address and waiting.
1004 */
1005 ret = ipp_queue_buf_with_run(dev, c_node, m_node, qbuf);
1006 if (ret) {
1007 DRM_ERROR("failed to run command.\n");
1008 goto err_clean_node;
1009 }
1010 }
1011 break;
1012 case IPP_BUF_DEQUEUE:
1013 mutex_lock(&c_node->cmd_lock);
1014
1015 /* put event for destination buffer */
1016 if (qbuf->ops_id == EXYNOS_DRM_OPS_DST)
1017 ipp_put_event(c_node, qbuf);
1018
1019 ipp_clean_queue_buf(drm_dev, c_node, qbuf);
1020
1021 mutex_unlock(&c_node->cmd_lock);
1022 break;
1023 default:
1024 DRM_ERROR("invalid buffer control.\n");
1025 return -EINVAL;
1026 }
1027
1028 return 0;
1029
1030err_clean_node:
1031 DRM_ERROR("clean memory nodes.\n");
1032
1033 ipp_clean_queue_buf(drm_dev, c_node, qbuf);
1034 return ret;
1035}
1036
1037static bool exynos_drm_ipp_check_valid(struct device *dev,
1038 enum drm_exynos_ipp_ctrl ctrl, enum drm_exynos_ipp_state state)
1039{
Eunchul Kimcb471f142012-12-14 18:10:31 +09001040 if (ctrl != IPP_CTRL_PLAY) {
1041 if (pm_runtime_suspended(dev)) {
1042 DRM_ERROR("pm:runtime_suspended.\n");
1043 goto err_status;
1044 }
1045 }
1046
1047 switch (ctrl) {
1048 case IPP_CTRL_PLAY:
1049 if (state != IPP_STATE_IDLE)
1050 goto err_status;
1051 break;
1052 case IPP_CTRL_STOP:
1053 if (state == IPP_STATE_STOP)
1054 goto err_status;
1055 break;
1056 case IPP_CTRL_PAUSE:
1057 if (state != IPP_STATE_START)
1058 goto err_status;
1059 break;
1060 case IPP_CTRL_RESUME:
1061 if (state != IPP_STATE_STOP)
1062 goto err_status;
1063 break;
1064 default:
1065 DRM_ERROR("invalid state.\n");
1066 goto err_status;
1067 break;
1068 }
1069
1070 return true;
1071
1072err_status:
1073 DRM_ERROR("invalid status:ctrl[%d]state[%d]\n", ctrl, state);
1074 return false;
1075}
1076
1077int exynos_drm_ipp_cmd_ctrl(struct drm_device *drm_dev, void *data,
1078 struct drm_file *file)
1079{
1080 struct drm_exynos_file_private *file_priv = file->driver_priv;
1081 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv;
1082 struct exynos_drm_ippdrv *ippdrv = NULL;
1083 struct device *dev = priv->dev;
1084 struct ipp_context *ctx = get_ipp_context(dev);
1085 struct drm_exynos_ipp_cmd_ctrl *cmd_ctrl = data;
1086 struct drm_exynos_ipp_cmd_work *cmd_work;
1087 struct drm_exynos_ipp_cmd_node *c_node;
1088
Eunchul Kimcb471f142012-12-14 18:10:31 +09001089 if (!ctx) {
1090 DRM_ERROR("invalid context.\n");
1091 return -EINVAL;
1092 }
1093
1094 if (!cmd_ctrl) {
1095 DRM_ERROR("invalid control parameter.\n");
1096 return -EINVAL;
1097 }
1098
YoungJun Chocbc4c332013-06-12 10:44:40 +09001099 DRM_DEBUG_KMS("ctrl[%d]prop_id[%d]\n",
Eunchul Kimcb471f142012-12-14 18:10:31 +09001100 cmd_ctrl->ctrl, cmd_ctrl->prop_id);
1101
1102 ippdrv = ipp_find_drv_by_handle(cmd_ctrl->prop_id);
1103 if (IS_ERR(ippdrv)) {
1104 DRM_ERROR("failed to get ipp driver.\n");
1105 return PTR_ERR(ippdrv);
1106 }
1107
1108 c_node = ipp_find_obj(&ctx->prop_idr, &ctx->prop_lock,
1109 cmd_ctrl->prop_id);
1110 if (!c_node) {
1111 DRM_ERROR("invalid command node list.\n");
1112 return -EINVAL;
1113 }
1114
1115 if (!exynos_drm_ipp_check_valid(ippdrv->dev, cmd_ctrl->ctrl,
1116 c_node->state)) {
1117 DRM_ERROR("invalid state.\n");
1118 return -EINVAL;
1119 }
1120
1121 switch (cmd_ctrl->ctrl) {
1122 case IPP_CTRL_PLAY:
1123 if (pm_runtime_suspended(ippdrv->dev))
1124 pm_runtime_get_sync(ippdrv->dev);
1125 c_node->state = IPP_STATE_START;
1126
1127 cmd_work = c_node->start_work;
1128 cmd_work->ctrl = cmd_ctrl->ctrl;
1129 ipp_handle_cmd_work(dev, ippdrv, cmd_work, c_node);
1130 c_node->state = IPP_STATE_START;
1131 break;
1132 case IPP_CTRL_STOP:
1133 cmd_work = c_node->stop_work;
1134 cmd_work->ctrl = cmd_ctrl->ctrl;
1135 ipp_handle_cmd_work(dev, ippdrv, cmd_work, c_node);
1136
1137 if (!wait_for_completion_timeout(&c_node->stop_complete,
1138 msecs_to_jiffies(300))) {
1139 DRM_ERROR("timeout stop:prop_id[%d]\n",
1140 c_node->property.prop_id);
1141 }
1142
1143 c_node->state = IPP_STATE_STOP;
1144 ippdrv->dedicated = false;
1145 ipp_clean_cmd_node(c_node);
1146
1147 if (list_empty(&ippdrv->cmd_list))
1148 pm_runtime_put_sync(ippdrv->dev);
1149 break;
1150 case IPP_CTRL_PAUSE:
1151 cmd_work = c_node->stop_work;
1152 cmd_work->ctrl = cmd_ctrl->ctrl;
1153 ipp_handle_cmd_work(dev, ippdrv, cmd_work, c_node);
1154
1155 if (!wait_for_completion_timeout(&c_node->stop_complete,
1156 msecs_to_jiffies(200))) {
1157 DRM_ERROR("timeout stop:prop_id[%d]\n",
1158 c_node->property.prop_id);
1159 }
1160
1161 c_node->state = IPP_STATE_STOP;
1162 break;
1163 case IPP_CTRL_RESUME:
1164 c_node->state = IPP_STATE_START;
1165 cmd_work = c_node->start_work;
1166 cmd_work->ctrl = cmd_ctrl->ctrl;
1167 ipp_handle_cmd_work(dev, ippdrv, cmd_work, c_node);
1168 break;
1169 default:
1170 DRM_ERROR("could not support this state currently.\n");
1171 return -EINVAL;
1172 }
1173
YoungJun Chocbc4c332013-06-12 10:44:40 +09001174 DRM_DEBUG_KMS("done ctrl[%d]prop_id[%d]\n",
Eunchul Kimcb471f142012-12-14 18:10:31 +09001175 cmd_ctrl->ctrl, cmd_ctrl->prop_id);
1176
1177 return 0;
1178}
1179
1180int exynos_drm_ippnb_register(struct notifier_block *nb)
1181{
1182 return blocking_notifier_chain_register(
1183 &exynos_drm_ippnb_list, nb);
1184}
1185
1186int exynos_drm_ippnb_unregister(struct notifier_block *nb)
1187{
1188 return blocking_notifier_chain_unregister(
1189 &exynos_drm_ippnb_list, nb);
1190}
1191
1192int exynos_drm_ippnb_send_event(unsigned long val, void *v)
1193{
1194 return blocking_notifier_call_chain(
1195 &exynos_drm_ippnb_list, val, v);
1196}
1197
1198static int ipp_set_property(struct exynos_drm_ippdrv *ippdrv,
1199 struct drm_exynos_ipp_property *property)
1200{
1201 struct exynos_drm_ipp_ops *ops = NULL;
1202 bool swap = false;
1203 int ret, i;
1204
1205 if (!property) {
1206 DRM_ERROR("invalid property parameter.\n");
1207 return -EINVAL;
1208 }
1209
YoungJun Chocbc4c332013-06-12 10:44:40 +09001210 DRM_DEBUG_KMS("prop_id[%d]\n", property->prop_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001211
1212 /* reset h/w block */
1213 if (ippdrv->reset &&
1214 ippdrv->reset(ippdrv->dev)) {
1215 DRM_ERROR("failed to reset.\n");
1216 return -EINVAL;
1217 }
1218
1219 /* set source,destination operations */
1220 for_each_ipp_ops(i) {
1221 struct drm_exynos_ipp_config *config =
1222 &property->config[i];
1223
1224 ops = ippdrv->ops[i];
1225 if (!ops || !config) {
1226 DRM_ERROR("not support ops and config.\n");
1227 return -EINVAL;
1228 }
1229
1230 /* set format */
1231 if (ops->set_fmt) {
1232 ret = ops->set_fmt(ippdrv->dev, config->fmt);
1233 if (ret) {
1234 DRM_ERROR("not support format.\n");
1235 return ret;
1236 }
1237 }
1238
1239 /* set transform for rotation, flip */
1240 if (ops->set_transf) {
1241 ret = ops->set_transf(ippdrv->dev, config->degree,
1242 config->flip, &swap);
1243 if (ret) {
1244 DRM_ERROR("not support tranf.\n");
1245 return -EINVAL;
1246 }
1247 }
1248
1249 /* set size */
1250 if (ops->set_size) {
1251 ret = ops->set_size(ippdrv->dev, swap, &config->pos,
1252 &config->sz);
1253 if (ret) {
1254 DRM_ERROR("not support size.\n");
1255 return ret;
1256 }
1257 }
1258 }
1259
1260 return 0;
1261}
1262
1263static int ipp_start_property(struct exynos_drm_ippdrv *ippdrv,
1264 struct drm_exynos_ipp_cmd_node *c_node)
1265{
1266 struct drm_exynos_ipp_mem_node *m_node;
1267 struct drm_exynos_ipp_property *property = &c_node->property;
1268 struct list_head *head;
1269 int ret, i;
1270
YoungJun Chocbc4c332013-06-12 10:44:40 +09001271 DRM_DEBUG_KMS("prop_id[%d]\n", property->prop_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001272
1273 /* store command info in ippdrv */
Eunchul Kim7259c3d2012-12-22 17:49:22 +09001274 ippdrv->c_node = c_node;
Eunchul Kimcb471f142012-12-14 18:10:31 +09001275
1276 if (!ipp_check_mem_list(c_node)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +09001277 DRM_DEBUG_KMS("empty memory.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +09001278 return -ENOMEM;
1279 }
1280
1281 /* set current property in ippdrv */
1282 ret = ipp_set_property(ippdrv, property);
1283 if (ret) {
1284 DRM_ERROR("failed to set property.\n");
Eunchul Kim7259c3d2012-12-22 17:49:22 +09001285 ippdrv->c_node = NULL;
Eunchul Kimcb471f142012-12-14 18:10:31 +09001286 return ret;
1287 }
1288
1289 /* check command */
1290 switch (property->cmd) {
1291 case IPP_CMD_M2M:
1292 for_each_ipp_ops(i) {
1293 /* source/destination memory list */
1294 head = &c_node->mem_list[i];
1295
1296 m_node = list_first_entry(head,
1297 struct drm_exynos_ipp_mem_node, list);
1298 if (!m_node) {
1299 DRM_ERROR("failed to get node.\n");
1300 ret = -EFAULT;
1301 return ret;
1302 }
1303
YoungJun Chocbc4c332013-06-12 10:44:40 +09001304 DRM_DEBUG_KMS("m_node[0x%x]\n", (int)m_node);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001305
1306 ret = ipp_set_mem_node(ippdrv, c_node, m_node);
1307 if (ret) {
1308 DRM_ERROR("failed to set m node.\n");
1309 return ret;
1310 }
1311 }
1312 break;
1313 case IPP_CMD_WB:
1314 /* destination memory list */
1315 head = &c_node->mem_list[EXYNOS_DRM_OPS_DST];
1316
1317 list_for_each_entry(m_node, head, list) {
1318 ret = ipp_set_mem_node(ippdrv, c_node, m_node);
1319 if (ret) {
1320 DRM_ERROR("failed to set m node.\n");
1321 return ret;
1322 }
1323 }
1324 break;
1325 case IPP_CMD_OUTPUT:
1326 /* source memory list */
1327 head = &c_node->mem_list[EXYNOS_DRM_OPS_SRC];
1328
1329 list_for_each_entry(m_node, head, list) {
1330 ret = ipp_set_mem_node(ippdrv, c_node, m_node);
1331 if (ret) {
1332 DRM_ERROR("failed to set m node.\n");
1333 return ret;
1334 }
1335 }
1336 break;
1337 default:
1338 DRM_ERROR("invalid operations.\n");
1339 return -EINVAL;
1340 }
1341
YoungJun Chocbc4c332013-06-12 10:44:40 +09001342 DRM_DEBUG_KMS("cmd[%d]\n", property->cmd);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001343
1344 /* start operations */
1345 if (ippdrv->start) {
1346 ret = ippdrv->start(ippdrv->dev, property->cmd);
1347 if (ret) {
1348 DRM_ERROR("failed to start ops.\n");
1349 return ret;
1350 }
1351 }
1352
1353 return 0;
1354}
1355
1356static int ipp_stop_property(struct drm_device *drm_dev,
1357 struct exynos_drm_ippdrv *ippdrv,
1358 struct drm_exynos_ipp_cmd_node *c_node)
1359{
1360 struct drm_exynos_ipp_mem_node *m_node, *tm_node;
1361 struct drm_exynos_ipp_property *property = &c_node->property;
1362 struct list_head *head;
1363 int ret = 0, i;
1364
YoungJun Chocbc4c332013-06-12 10:44:40 +09001365 DRM_DEBUG_KMS("prop_id[%d]\n", property->prop_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001366
1367 /* put event */
1368 ipp_put_event(c_node, NULL);
1369
1370 /* check command */
1371 switch (property->cmd) {
1372 case IPP_CMD_M2M:
1373 for_each_ipp_ops(i) {
1374 /* source/destination memory list */
1375 head = &c_node->mem_list[i];
1376
1377 if (list_empty(head)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +09001378 DRM_DEBUG_KMS("mem_list is empty.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +09001379 break;
1380 }
1381
1382 list_for_each_entry_safe(m_node, tm_node,
1383 head, list) {
1384 ret = ipp_put_mem_node(drm_dev, c_node,
1385 m_node);
1386 if (ret) {
1387 DRM_ERROR("failed to put m_node.\n");
1388 goto err_clear;
1389 }
1390 }
1391 }
1392 break;
1393 case IPP_CMD_WB:
1394 /* destination memory list */
1395 head = &c_node->mem_list[EXYNOS_DRM_OPS_DST];
1396
1397 if (list_empty(head)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +09001398 DRM_DEBUG_KMS("mem_list is empty.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +09001399 break;
1400 }
1401
1402 list_for_each_entry_safe(m_node, tm_node, head, list) {
1403 ret = ipp_put_mem_node(drm_dev, c_node, m_node);
1404 if (ret) {
1405 DRM_ERROR("failed to put m_node.\n");
1406 goto err_clear;
1407 }
1408 }
1409 break;
1410 case IPP_CMD_OUTPUT:
1411 /* source memory list */
1412 head = &c_node->mem_list[EXYNOS_DRM_OPS_SRC];
1413
1414 if (list_empty(head)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +09001415 DRM_DEBUG_KMS("mem_list is empty.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +09001416 break;
1417 }
1418
1419 list_for_each_entry_safe(m_node, tm_node, head, list) {
1420 ret = ipp_put_mem_node(drm_dev, c_node, m_node);
1421 if (ret) {
1422 DRM_ERROR("failed to put m_node.\n");
1423 goto err_clear;
1424 }
1425 }
1426 break;
1427 default:
1428 DRM_ERROR("invalid operations.\n");
1429 ret = -EINVAL;
1430 goto err_clear;
1431 }
1432
1433err_clear:
1434 /* stop operations */
1435 if (ippdrv->stop)
1436 ippdrv->stop(ippdrv->dev, property->cmd);
1437
1438 return ret;
1439}
1440
1441void ipp_sched_cmd(struct work_struct *work)
1442{
1443 struct drm_exynos_ipp_cmd_work *cmd_work =
1444 (struct drm_exynos_ipp_cmd_work *)work;
1445 struct exynos_drm_ippdrv *ippdrv;
1446 struct drm_exynos_ipp_cmd_node *c_node;
1447 struct drm_exynos_ipp_property *property;
1448 int ret;
1449
Eunchul Kimcb471f142012-12-14 18:10:31 +09001450 ippdrv = cmd_work->ippdrv;
1451 if (!ippdrv) {
1452 DRM_ERROR("invalid ippdrv list.\n");
1453 return;
1454 }
1455
1456 c_node = cmd_work->c_node;
1457 if (!c_node) {
1458 DRM_ERROR("invalid command node list.\n");
1459 return;
1460 }
1461
1462 mutex_lock(&c_node->cmd_lock);
1463
1464 property = &c_node->property;
Eunchul Kimcb471f142012-12-14 18:10:31 +09001465
1466 switch (cmd_work->ctrl) {
1467 case IPP_CTRL_PLAY:
1468 case IPP_CTRL_RESUME:
1469 ret = ipp_start_property(ippdrv, c_node);
1470 if (ret) {
1471 DRM_ERROR("failed to start property:prop_id[%d]\n",
1472 c_node->property.prop_id);
1473 goto err_unlock;
1474 }
1475
1476 /*
1477 * M2M case supports wait_completion of transfer.
1478 * because M2M case supports single unit operation
1479 * with multiple queue.
1480 * M2M need to wait completion of data transfer.
1481 */
1482 if (ipp_is_m2m_cmd(property->cmd)) {
1483 if (!wait_for_completion_timeout
1484 (&c_node->start_complete, msecs_to_jiffies(200))) {
1485 DRM_ERROR("timeout event:prop_id[%d]\n",
1486 c_node->property.prop_id);
1487 goto err_unlock;
1488 }
1489 }
1490 break;
1491 case IPP_CTRL_STOP:
1492 case IPP_CTRL_PAUSE:
1493 ret = ipp_stop_property(ippdrv->drm_dev, ippdrv,
1494 c_node);
1495 if (ret) {
1496 DRM_ERROR("failed to stop property.\n");
1497 goto err_unlock;
1498 }
1499
1500 complete(&c_node->stop_complete);
1501 break;
1502 default:
1503 DRM_ERROR("unknown control type\n");
1504 break;
1505 }
1506
YoungJun Chocbc4c332013-06-12 10:44:40 +09001507 DRM_DEBUG_KMS("ctrl[%d] done.\n", cmd_work->ctrl);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001508
1509err_unlock:
1510 mutex_unlock(&c_node->cmd_lock);
1511}
1512
1513static int ipp_send_event(struct exynos_drm_ippdrv *ippdrv,
1514 struct drm_exynos_ipp_cmd_node *c_node, int *buf_id)
1515{
1516 struct drm_device *drm_dev = ippdrv->drm_dev;
1517 struct drm_exynos_ipp_property *property = &c_node->property;
1518 struct drm_exynos_ipp_mem_node *m_node;
1519 struct drm_exynos_ipp_queue_buf qbuf;
1520 struct drm_exynos_ipp_send_event *e;
1521 struct list_head *head;
1522 struct timeval now;
1523 unsigned long flags;
1524 u32 tbuf_id[EXYNOS_DRM_OPS_MAX] = {0, };
1525 int ret, i;
1526
1527 for_each_ipp_ops(i)
YoungJun Chocbc4c332013-06-12 10:44:40 +09001528 DRM_DEBUG_KMS("%s buf_id[%d]\n", i ? "dst" : "src", buf_id[i]);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001529
1530 if (!drm_dev) {
1531 DRM_ERROR("failed to get drm_dev.\n");
1532 return -EINVAL;
1533 }
1534
1535 if (!property) {
1536 DRM_ERROR("failed to get property.\n");
1537 return -EINVAL;
1538 }
1539
1540 if (list_empty(&c_node->event_list)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +09001541 DRM_DEBUG_KMS("event list is empty.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +09001542 return 0;
1543 }
1544
1545 if (!ipp_check_mem_list(c_node)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +09001546 DRM_DEBUG_KMS("empty memory.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +09001547 return 0;
1548 }
1549
1550 /* check command */
1551 switch (property->cmd) {
1552 case IPP_CMD_M2M:
1553 for_each_ipp_ops(i) {
1554 /* source/destination memory list */
1555 head = &c_node->mem_list[i];
1556
1557 m_node = list_first_entry(head,
1558 struct drm_exynos_ipp_mem_node, list);
1559 if (!m_node) {
1560 DRM_ERROR("empty memory node.\n");
1561 return -ENOMEM;
1562 }
1563
1564 tbuf_id[i] = m_node->buf_id;
YoungJun Chocbc4c332013-06-12 10:44:40 +09001565 DRM_DEBUG_KMS("%s buf_id[%d]\n",
Eunchul Kimcb471f142012-12-14 18:10:31 +09001566 i ? "dst" : "src", tbuf_id[i]);
1567
1568 ret = ipp_put_mem_node(drm_dev, c_node, m_node);
1569 if (ret)
1570 DRM_ERROR("failed to put m_node.\n");
1571 }
1572 break;
1573 case IPP_CMD_WB:
1574 /* clear buf for finding */
1575 memset(&qbuf, 0x0, sizeof(qbuf));
1576 qbuf.ops_id = EXYNOS_DRM_OPS_DST;
1577 qbuf.buf_id = buf_id[EXYNOS_DRM_OPS_DST];
1578
1579 /* get memory node entry */
1580 m_node = ipp_find_mem_node(c_node, &qbuf);
1581 if (!m_node) {
1582 DRM_ERROR("empty memory node.\n");
1583 return -ENOMEM;
1584 }
1585
1586 tbuf_id[EXYNOS_DRM_OPS_DST] = m_node->buf_id;
1587
1588 ret = ipp_put_mem_node(drm_dev, c_node, m_node);
1589 if (ret)
1590 DRM_ERROR("failed to put m_node.\n");
1591 break;
1592 case IPP_CMD_OUTPUT:
1593 /* source memory list */
1594 head = &c_node->mem_list[EXYNOS_DRM_OPS_SRC];
1595
1596 m_node = list_first_entry(head,
1597 struct drm_exynos_ipp_mem_node, list);
1598 if (!m_node) {
1599 DRM_ERROR("empty memory node.\n");
1600 return -ENOMEM;
1601 }
1602
1603 tbuf_id[EXYNOS_DRM_OPS_SRC] = m_node->buf_id;
1604
1605 ret = ipp_put_mem_node(drm_dev, c_node, m_node);
1606 if (ret)
1607 DRM_ERROR("failed to put m_node.\n");
1608 break;
1609 default:
1610 DRM_ERROR("invalid operations.\n");
1611 return -EINVAL;
1612 }
1613
1614 if (tbuf_id[EXYNOS_DRM_OPS_DST] != buf_id[EXYNOS_DRM_OPS_DST])
1615 DRM_ERROR("failed to match buf_id[%d %d]prop_id[%d]\n",
1616 tbuf_id[1], buf_id[1], property->prop_id);
1617
1618 /*
1619 * command node have event list of destination buffer
1620 * If destination buffer enqueue to mem list,
1621 * then we make event and link to event list tail.
1622 * so, we get first event for first enqueued buffer.
1623 */
1624 e = list_first_entry(&c_node->event_list,
1625 struct drm_exynos_ipp_send_event, base.link);
1626
1627 if (!e) {
1628 DRM_ERROR("empty event.\n");
1629 return -EINVAL;
1630 }
1631
1632 do_gettimeofday(&now);
YoungJun Chocbc4c332013-06-12 10:44:40 +09001633 DRM_DEBUG_KMS("tv_sec[%ld]tv_usec[%ld]\n", now.tv_sec, now.tv_usec);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001634 e->event.tv_sec = now.tv_sec;
1635 e->event.tv_usec = now.tv_usec;
1636 e->event.prop_id = property->prop_id;
1637
1638 /* set buffer id about source destination */
1639 for_each_ipp_ops(i)
1640 e->event.buf_id[i] = tbuf_id[i];
1641
1642 spin_lock_irqsave(&drm_dev->event_lock, flags);
1643 list_move_tail(&e->base.link, &e->base.file_priv->event_list);
1644 wake_up_interruptible(&e->base.file_priv->event_wait);
1645 spin_unlock_irqrestore(&drm_dev->event_lock, flags);
1646
YoungJun Chocbc4c332013-06-12 10:44:40 +09001647 DRM_DEBUG_KMS("done cmd[%d]prop_id[%d]buf_id[%d]\n",
Eunchul Kimcb471f142012-12-14 18:10:31 +09001648 property->cmd, property->prop_id, tbuf_id[EXYNOS_DRM_OPS_DST]);
1649
1650 return 0;
1651}
1652
1653void ipp_sched_event(struct work_struct *work)
1654{
1655 struct drm_exynos_ipp_event_work *event_work =
1656 (struct drm_exynos_ipp_event_work *)work;
1657 struct exynos_drm_ippdrv *ippdrv;
1658 struct drm_exynos_ipp_cmd_node *c_node;
1659 int ret;
1660
1661 if (!event_work) {
1662 DRM_ERROR("failed to get event_work.\n");
1663 return;
1664 }
1665
YoungJun Chocbc4c332013-06-12 10:44:40 +09001666 DRM_DEBUG_KMS("buf_id[%d]\n", event_work->buf_id[EXYNOS_DRM_OPS_DST]);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001667
1668 ippdrv = event_work->ippdrv;
1669 if (!ippdrv) {
1670 DRM_ERROR("failed to get ipp driver.\n");
1671 return;
1672 }
1673
Eunchul Kim7259c3d2012-12-22 17:49:22 +09001674 c_node = ippdrv->c_node;
Eunchul Kimcb471f142012-12-14 18:10:31 +09001675 if (!c_node) {
1676 DRM_ERROR("failed to get command node.\n");
1677 return;
1678 }
1679
1680 /*
1681 * IPP supports command thread, event thread synchronization.
1682 * If IPP close immediately from user land, then IPP make
1683 * synchronization with command thread, so make complete event.
1684 * or going out operations.
1685 */
1686 if (c_node->state != IPP_STATE_START) {
YoungJun Chocbc4c332013-06-12 10:44:40 +09001687 DRM_DEBUG_KMS("bypass state[%d]prop_id[%d]\n",
1688 c_node->state, c_node->property.prop_id);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001689 goto err_completion;
1690 }
1691
1692 mutex_lock(&c_node->event_lock);
1693
1694 ret = ipp_send_event(ippdrv, c_node, event_work->buf_id);
1695 if (ret) {
1696 DRM_ERROR("failed to send event.\n");
1697 goto err_completion;
1698 }
1699
1700err_completion:
1701 if (ipp_is_m2m_cmd(c_node->property.cmd))
1702 complete(&c_node->start_complete);
1703
1704 mutex_unlock(&c_node->event_lock);
1705}
1706
1707static int ipp_subdrv_probe(struct drm_device *drm_dev, struct device *dev)
1708{
1709 struct ipp_context *ctx = get_ipp_context(dev);
1710 struct exynos_drm_ippdrv *ippdrv;
1711 int ret, count = 0;
1712
Eunchul Kimcb471f142012-12-14 18:10:31 +09001713 /* get ipp driver entry */
1714 list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list) {
1715 ippdrv->drm_dev = drm_dev;
1716
1717 ret = ipp_create_id(&ctx->ipp_idr, &ctx->ipp_lock, ippdrv,
1718 &ippdrv->ipp_id);
1719 if (ret) {
1720 DRM_ERROR("failed to create id.\n");
1721 goto err_idr;
1722 }
1723
YoungJun Chocbc4c332013-06-12 10:44:40 +09001724 DRM_DEBUG_KMS("count[%d]ippdrv[0x%x]ipp_id[%d]\n",
Eunchul Kimcb471f142012-12-14 18:10:31 +09001725 count++, (int)ippdrv, ippdrv->ipp_id);
1726
1727 if (ippdrv->ipp_id == 0) {
1728 DRM_ERROR("failed to get ipp_id[%d]\n",
1729 ippdrv->ipp_id);
1730 goto err_idr;
1731 }
1732
1733 /* store parent device for node */
1734 ippdrv->parent_dev = dev;
1735
1736 /* store event work queue and handler */
1737 ippdrv->event_workq = ctx->event_workq;
1738 ippdrv->sched_event = ipp_sched_event;
1739 INIT_LIST_HEAD(&ippdrv->cmd_list);
Eunchul Kimc12e2612012-12-14 17:58:54 +09001740
1741 if (is_drm_iommu_supported(drm_dev)) {
1742 ret = drm_iommu_attach_device(drm_dev, ippdrv->dev);
1743 if (ret) {
1744 DRM_ERROR("failed to activate iommu\n");
1745 goto err_iommu;
1746 }
1747 }
Eunchul Kimcb471f142012-12-14 18:10:31 +09001748 }
1749
1750 return 0;
1751
Eunchul Kimc12e2612012-12-14 17:58:54 +09001752err_iommu:
1753 /* get ipp driver entry */
1754 list_for_each_entry_reverse(ippdrv, &exynos_drm_ippdrv_list, drv_list)
1755 if (is_drm_iommu_supported(drm_dev))
1756 drm_iommu_detach_device(drm_dev, ippdrv->dev);
1757
Eunchul Kimcb471f142012-12-14 18:10:31 +09001758err_idr:
Eunchul Kimcb471f142012-12-14 18:10:31 +09001759 idr_destroy(&ctx->ipp_idr);
1760 idr_destroy(&ctx->prop_idr);
1761 return ret;
1762}
1763
1764static void ipp_subdrv_remove(struct drm_device *drm_dev, struct device *dev)
1765{
1766 struct exynos_drm_ippdrv *ippdrv;
1767
Eunchul Kimcb471f142012-12-14 18:10:31 +09001768 /* get ipp driver entry */
1769 list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list) {
Eunchul Kimc12e2612012-12-14 17:58:54 +09001770 if (is_drm_iommu_supported(drm_dev))
1771 drm_iommu_detach_device(drm_dev, ippdrv->dev);
1772
Eunchul Kimcb471f142012-12-14 18:10:31 +09001773 ippdrv->drm_dev = NULL;
1774 exynos_drm_ippdrv_unregister(ippdrv);
1775 }
1776}
1777
1778static int ipp_subdrv_open(struct drm_device *drm_dev, struct device *dev,
1779 struct drm_file *file)
1780{
1781 struct drm_exynos_file_private *file_priv = file->driver_priv;
1782 struct exynos_drm_ipp_private *priv;
1783
Eunchul Kimcb471f142012-12-14 18:10:31 +09001784 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1785 if (!priv) {
1786 DRM_ERROR("failed to allocate priv.\n");
1787 return -ENOMEM;
1788 }
1789 priv->dev = dev;
1790 file_priv->ipp_priv = priv;
1791
1792 INIT_LIST_HEAD(&priv->event_list);
1793
YoungJun Chocbc4c332013-06-12 10:44:40 +09001794 DRM_DEBUG_KMS("done priv[0x%x]\n", (int)priv);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001795
1796 return 0;
1797}
1798
1799static void ipp_subdrv_close(struct drm_device *drm_dev, struct device *dev,
1800 struct drm_file *file)
1801{
1802 struct drm_exynos_file_private *file_priv = file->driver_priv;
1803 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv;
1804 struct exynos_drm_ippdrv *ippdrv = NULL;
1805 struct drm_exynos_ipp_cmd_node *c_node, *tc_node;
1806 int count = 0;
1807
YoungJun Chocbc4c332013-06-12 10:44:40 +09001808 DRM_DEBUG_KMS("for priv[0x%x]\n", (int)priv);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001809
1810 if (list_empty(&exynos_drm_ippdrv_list)) {
YoungJun Chocbc4c332013-06-12 10:44:40 +09001811 DRM_DEBUG_KMS("ippdrv_list is empty.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +09001812 goto err_clear;
1813 }
1814
1815 list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list) {
1816 if (list_empty(&ippdrv->cmd_list))
1817 continue;
1818
1819 list_for_each_entry_safe(c_node, tc_node,
1820 &ippdrv->cmd_list, list) {
YoungJun Chocbc4c332013-06-12 10:44:40 +09001821 DRM_DEBUG_KMS("count[%d]ippdrv[0x%x]\n",
1822 count++, (int)ippdrv);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001823
1824 if (c_node->priv == priv) {
1825 /*
1826 * userland goto unnormal state. process killed.
1827 * and close the file.
1828 * so, IPP didn't called stop cmd ctrl.
1829 * so, we are make stop operation in this state.
1830 */
1831 if (c_node->state == IPP_STATE_START) {
1832 ipp_stop_property(drm_dev, ippdrv,
1833 c_node);
1834 c_node->state = IPP_STATE_STOP;
1835 }
1836
1837 ippdrv->dedicated = false;
1838 ipp_clean_cmd_node(c_node);
1839 if (list_empty(&ippdrv->cmd_list))
1840 pm_runtime_put_sync(ippdrv->dev);
1841 }
1842 }
1843 }
1844
1845err_clear:
1846 kfree(priv);
1847 return;
1848}
1849
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -08001850static int ipp_probe(struct platform_device *pdev)
Eunchul Kimcb471f142012-12-14 18:10:31 +09001851{
1852 struct device *dev = &pdev->dev;
1853 struct ipp_context *ctx;
1854 struct exynos_drm_subdrv *subdrv;
1855 int ret;
1856
Seung-Woo Kimd873ab92013-05-22 21:14:14 +09001857 ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001858 if (!ctx)
1859 return -ENOMEM;
1860
Eunchul Kimcb471f142012-12-14 18:10:31 +09001861 mutex_init(&ctx->ipp_lock);
1862 mutex_init(&ctx->prop_lock);
1863
1864 idr_init(&ctx->ipp_idr);
1865 idr_init(&ctx->prop_idr);
1866
1867 /*
1868 * create single thread for ipp event
1869 * IPP supports event thread for IPP drivers.
1870 * IPP driver send event_work to this thread.
1871 * and IPP event thread send event to user process.
1872 */
1873 ctx->event_workq = create_singlethread_workqueue("ipp_event");
1874 if (!ctx->event_workq) {
1875 dev_err(dev, "failed to create event workqueue\n");
Sachin Kamatbfb6ed22012-12-24 14:03:42 +05301876 return -EINVAL;
Eunchul Kimcb471f142012-12-14 18:10:31 +09001877 }
1878
1879 /*
1880 * create single thread for ipp command
1881 * IPP supports command thread for user process.
1882 * user process make command node using set property ioctl.
1883 * and make start_work and send this work to command thread.
1884 * and then this command thread start property.
1885 */
1886 ctx->cmd_workq = create_singlethread_workqueue("ipp_cmd");
1887 if (!ctx->cmd_workq) {
1888 dev_err(dev, "failed to create cmd workqueue\n");
1889 ret = -EINVAL;
1890 goto err_event_workq;
1891 }
1892
1893 /* set sub driver informations */
1894 subdrv = &ctx->subdrv;
1895 subdrv->dev = dev;
1896 subdrv->probe = ipp_subdrv_probe;
1897 subdrv->remove = ipp_subdrv_remove;
1898 subdrv->open = ipp_subdrv_open;
1899 subdrv->close = ipp_subdrv_close;
1900
1901 platform_set_drvdata(pdev, ctx);
1902
1903 ret = exynos_drm_subdrv_register(subdrv);
1904 if (ret < 0) {
1905 DRM_ERROR("failed to register drm ipp device.\n");
1906 goto err_cmd_workq;
1907 }
1908
Seung-Woo Kimd873ab92013-05-22 21:14:14 +09001909 dev_info(dev, "drm ipp registered successfully.\n");
Eunchul Kimcb471f142012-12-14 18:10:31 +09001910
1911 return 0;
1912
1913err_cmd_workq:
1914 destroy_workqueue(ctx->cmd_workq);
1915err_event_workq:
1916 destroy_workqueue(ctx->event_workq);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001917 return ret;
1918}
1919
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -08001920static int ipp_remove(struct platform_device *pdev)
Eunchul Kimcb471f142012-12-14 18:10:31 +09001921{
1922 struct ipp_context *ctx = platform_get_drvdata(pdev);
1923
Eunchul Kimcb471f142012-12-14 18:10:31 +09001924 /* unregister sub driver */
1925 exynos_drm_subdrv_unregister(&ctx->subdrv);
1926
1927 /* remove,destroy ipp idr */
Eunchul Kimcb471f142012-12-14 18:10:31 +09001928 idr_destroy(&ctx->ipp_idr);
1929 idr_destroy(&ctx->prop_idr);
1930
1931 mutex_destroy(&ctx->ipp_lock);
1932 mutex_destroy(&ctx->prop_lock);
1933
1934 /* destroy command, event work queue */
1935 destroy_workqueue(ctx->cmd_workq);
1936 destroy_workqueue(ctx->event_workq);
1937
Eunchul Kimcb471f142012-12-14 18:10:31 +09001938 return 0;
1939}
1940
1941static int ipp_power_ctrl(struct ipp_context *ctx, bool enable)
1942{
YoungJun Chocbc4c332013-06-12 10:44:40 +09001943 DRM_DEBUG_KMS("enable[%d]\n", enable);
Eunchul Kimcb471f142012-12-14 18:10:31 +09001944
1945 return 0;
1946}
1947
1948#ifdef CONFIG_PM_SLEEP
1949static int ipp_suspend(struct device *dev)
1950{
1951 struct ipp_context *ctx = get_ipp_context(dev);
1952
Eunchul Kimcb471f142012-12-14 18:10:31 +09001953 if (pm_runtime_suspended(dev))
1954 return 0;
1955
1956 return ipp_power_ctrl(ctx, false);
1957}
1958
1959static int ipp_resume(struct device *dev)
1960{
1961 struct ipp_context *ctx = get_ipp_context(dev);
1962
Eunchul Kimcb471f142012-12-14 18:10:31 +09001963 if (!pm_runtime_suspended(dev))
1964 return ipp_power_ctrl(ctx, true);
1965
1966 return 0;
1967}
1968#endif
1969
1970#ifdef CONFIG_PM_RUNTIME
1971static int ipp_runtime_suspend(struct device *dev)
1972{
1973 struct ipp_context *ctx = get_ipp_context(dev);
1974
Eunchul Kimcb471f142012-12-14 18:10:31 +09001975 return ipp_power_ctrl(ctx, false);
1976}
1977
1978static int ipp_runtime_resume(struct device *dev)
1979{
1980 struct ipp_context *ctx = get_ipp_context(dev);
1981
Eunchul Kimcb471f142012-12-14 18:10:31 +09001982 return ipp_power_ctrl(ctx, true);
1983}
1984#endif
1985
1986static const struct dev_pm_ops ipp_pm_ops = {
1987 SET_SYSTEM_SLEEP_PM_OPS(ipp_suspend, ipp_resume)
1988 SET_RUNTIME_PM_OPS(ipp_runtime_suspend, ipp_runtime_resume, NULL)
1989};
1990
1991struct platform_driver ipp_driver = {
1992 .probe = ipp_probe,
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -08001993 .remove = ipp_remove,
Eunchul Kimcb471f142012-12-14 18:10:31 +09001994 .driver = {
1995 .name = "exynos-drm-ipp",
1996 .owner = THIS_MODULE,
1997 .pm = &ipp_pm_ops,
1998 },
1999};
2000