|
@@ -173,7 +173,7 @@ static void *ipp_find_obj(struct idr *id_idr, struct mutex *lock, u32 id)
|
|
|
{
|
|
|
void *obj;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:id[%d]\n", __func__, id);
|
|
|
+ DRM_DEBUG_KMS("id[%d]\n", id);
|
|
|
|
|
|
mutex_lock(lock);
|
|
|
|
|
@@ -210,7 +210,7 @@ static struct exynos_drm_ippdrv *ipp_find_driver(struct ipp_context *ctx,
|
|
|
struct exynos_drm_ippdrv *ippdrv;
|
|
|
u32 ipp_id = property->ipp_id;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:ipp_id[%d]\n", __func__, ipp_id);
|
|
|
+ DRM_DEBUG_KMS("ipp_id[%d]\n", ipp_id);
|
|
|
|
|
|
if (ipp_id) {
|
|
|
/* find ipp driver using idr */
|
|
@@ -251,14 +251,13 @@ static struct exynos_drm_ippdrv *ipp_find_driver(struct ipp_context *ctx,
|
|
|
*/
|
|
|
list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list) {
|
|
|
if (ipp_check_dedicated(ippdrv, property->cmd)) {
|
|
|
- DRM_DEBUG_KMS("%s:used device.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("used device.\n");
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
if (ippdrv->check_property &&
|
|
|
ippdrv->check_property(ippdrv->dev, property)) {
|
|
|
- DRM_DEBUG_KMS("%s:not support property.\n",
|
|
|
- __func__);
|
|
|
+ DRM_DEBUG_KMS("not support property.\n");
|
|
|
continue;
|
|
|
}
|
|
|
|
|
@@ -277,10 +276,10 @@ static struct exynos_drm_ippdrv *ipp_find_drv_by_handle(u32 prop_id)
|
|
|
struct drm_exynos_ipp_cmd_node *c_node;
|
|
|
int count = 0;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:prop_id[%d]\n", __func__, prop_id);
|
|
|
+ DRM_DEBUG_KMS("prop_id[%d]\n", prop_id);
|
|
|
|
|
|
if (list_empty(&exynos_drm_ippdrv_list)) {
|
|
|
- DRM_DEBUG_KMS("%s:ippdrv_list is empty.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("ippdrv_list is empty.\n");
|
|
|
return ERR_PTR(-ENODEV);
|
|
|
}
|
|
|
|
|
@@ -290,8 +289,7 @@ static struct exynos_drm_ippdrv *ipp_find_drv_by_handle(u32 prop_id)
|
|
|
* e.g PAUSE state, queue buf, command contro.
|
|
|
*/
|
|
|
list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list) {
|
|
|
- DRM_DEBUG_KMS("%s:count[%d]ippdrv[0x%x]\n", __func__,
|
|
|
- count++, (int)ippdrv);
|
|
|
+ DRM_DEBUG_KMS("count[%d]ippdrv[0x%x]\n", count++, (int)ippdrv);
|
|
|
|
|
|
if (!list_empty(&ippdrv->cmd_list)) {
|
|
|
list_for_each_entry(c_node, &ippdrv->cmd_list, list)
|
|
@@ -324,7 +322,7 @@ int exynos_drm_ipp_get_property(struct drm_device *drm_dev, void *data,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:ipp_id[%d]\n", __func__, prop_list->ipp_id);
|
|
|
+ DRM_DEBUG_KMS("ipp_id[%d]\n", prop_list->ipp_id);
|
|
|
|
|
|
if (!prop_list->ipp_id) {
|
|
|
list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list)
|
|
@@ -363,11 +361,11 @@ static void ipp_print_property(struct drm_exynos_ipp_property *property,
|
|
|
struct drm_exynos_pos *pos = &config->pos;
|
|
|
struct drm_exynos_sz *sz = &config->sz;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:prop_id[%d]ops[%s]fmt[0x%x]\n",
|
|
|
- __func__, property->prop_id, idx ? "dst" : "src", config->fmt);
|
|
|
+ DRM_DEBUG_KMS("prop_id[%d]ops[%s]fmt[0x%x]\n",
|
|
|
+ property->prop_id, idx ? "dst" : "src", config->fmt);
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:pos[%d %d %d %d]sz[%d %d]f[%d]r[%d]\n",
|
|
|
- __func__, pos->x, pos->y, pos->w, pos->h,
|
|
|
+ DRM_DEBUG_KMS("pos[%d %d %d %d]sz[%d %d]f[%d]r[%d]\n",
|
|
|
+ pos->x, pos->y, pos->w, pos->h,
|
|
|
sz->hsize, sz->vsize, config->flip, config->degree);
|
|
|
}
|
|
|
|
|
@@ -377,7 +375,7 @@ static int ipp_find_and_set_property(struct drm_exynos_ipp_property *property)
|
|
|
struct drm_exynos_ipp_cmd_node *c_node;
|
|
|
u32 prop_id = property->prop_id;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:prop_id[%d]\n", __func__, prop_id);
|
|
|
+ DRM_DEBUG_KMS("prop_id[%d]\n", prop_id);
|
|
|
|
|
|
ippdrv = ipp_find_drv_by_handle(prop_id);
|
|
|
if (IS_ERR(ippdrv)) {
|
|
@@ -393,8 +391,8 @@ static int ipp_find_and_set_property(struct drm_exynos_ipp_property *property)
|
|
|
list_for_each_entry(c_node, &ippdrv->cmd_list, list) {
|
|
|
if ((c_node->property.prop_id == prop_id) &&
|
|
|
(c_node->state == IPP_STATE_STOP)) {
|
|
|
- DRM_DEBUG_KMS("%s:found cmd[%d]ippdrv[0x%x]\n",
|
|
|
- __func__, property->cmd, (int)ippdrv);
|
|
|
+ DRM_DEBUG_KMS("found cmd[%d]ippdrv[0x%x]\n",
|
|
|
+ property->cmd, (int)ippdrv);
|
|
|
|
|
|
c_node->property = *property;
|
|
|
return 0;
|
|
@@ -472,7 +470,7 @@ int exynos_drm_ipp_set_property(struct drm_device *drm_dev, void *data,
|
|
|
* instead of allocation.
|
|
|
*/
|
|
|
if (property->prop_id) {
|
|
|
- DRM_DEBUG_KMS("%s:prop_id[%d]\n", __func__, property->prop_id);
|
|
|
+ DRM_DEBUG_KMS("prop_id[%d]\n", property->prop_id);
|
|
|
return ipp_find_and_set_property(property);
|
|
|
}
|
|
|
|
|
@@ -498,8 +496,8 @@ int exynos_drm_ipp_set_property(struct drm_device *drm_dev, void *data,
|
|
|
goto err_clear;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:created prop_id[%d]cmd[%d]ippdrv[0x%x]\n",
|
|
|
- __func__, property->prop_id, property->cmd, (int)ippdrv);
|
|
|
+ DRM_DEBUG_KMS("created prop_id[%d]cmd[%d]ippdrv[0x%x]\n",
|
|
|
+ property->prop_id, property->cmd, (int)ippdrv);
|
|
|
|
|
|
/* stored property information and ippdrv in private data */
|
|
|
c_node->priv = priv;
|
|
@@ -584,20 +582,19 @@ static int ipp_check_mem_list(struct drm_exynos_ipp_cmd_node *c_node)
|
|
|
head = &c_node->mem_list[i];
|
|
|
|
|
|
if (list_empty(head)) {
|
|
|
- DRM_DEBUG_KMS("%s:%s memory empty.\n", __func__,
|
|
|
- i ? "dst" : "src");
|
|
|
+ DRM_DEBUG_KMS("%s memory empty.\n", i ? "dst" : "src");
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
/* find memory node entry */
|
|
|
list_for_each_entry(m_node, head, list) {
|
|
|
- DRM_DEBUG_KMS("%s:%s,count[%d]m_node[0x%x]\n", __func__,
|
|
|
+ DRM_DEBUG_KMS("%s,count[%d]m_node[0x%x]\n",
|
|
|
i ? "dst" : "src", count[i], (int)m_node);
|
|
|
count[i]++;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:min[%d]max[%d]\n", __func__,
|
|
|
+ DRM_DEBUG_KMS("min[%d]max[%d]\n",
|
|
|
min(count[EXYNOS_DRM_OPS_SRC], count[EXYNOS_DRM_OPS_DST]),
|
|
|
max(count[EXYNOS_DRM_OPS_SRC], count[EXYNOS_DRM_OPS_DST]));
|
|
|
|
|
@@ -626,15 +623,14 @@ static struct drm_exynos_ipp_mem_node
|
|
|
struct list_head *head;
|
|
|
int count = 0;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:buf_id[%d]\n", __func__, qbuf->buf_id);
|
|
|
+ DRM_DEBUG_KMS("buf_id[%d]\n", qbuf->buf_id);
|
|
|
|
|
|
/* source/destination memory list */
|
|
|
head = &c_node->mem_list[qbuf->ops_id];
|
|
|
|
|
|
/* find memory node from memory list */
|
|
|
list_for_each_entry(m_node, head, list) {
|
|
|
- DRM_DEBUG_KMS("%s:count[%d]m_node[0x%x]\n",
|
|
|
- __func__, count++, (int)m_node);
|
|
|
+ DRM_DEBUG_KMS("count[%d]m_node[0x%x]\n", count++, (int)m_node);
|
|
|
|
|
|
/* compare buffer id */
|
|
|
if (m_node->buf_id == qbuf->buf_id)
|
|
@@ -651,7 +647,7 @@ static int ipp_set_mem_node(struct exynos_drm_ippdrv *ippdrv,
|
|
|
struct exynos_drm_ipp_ops *ops = NULL;
|
|
|
int ret = 0;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:node[0x%x]\n", __func__, (int)m_node);
|
|
|
+ DRM_DEBUG_KMS("node[0x%x]\n", (int)m_node);
|
|
|
|
|
|
if (!m_node) {
|
|
|
DRM_ERROR("invalid queue node.\n");
|
|
@@ -660,7 +656,7 @@ static int ipp_set_mem_node(struct exynos_drm_ippdrv *ippdrv,
|
|
|
|
|
|
mutex_lock(&c_node->mem_lock);
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:ops_id[%d]\n", __func__, m_node->ops_id);
|
|
|
+ DRM_DEBUG_KMS("ops_id[%d]\n", m_node->ops_id);
|
|
|
|
|
|
/* get operations callback */
|
|
|
ops = ippdrv->ops[m_node->ops_id];
|
|
@@ -712,14 +708,11 @@ static struct drm_exynos_ipp_mem_node
|
|
|
m_node->prop_id = qbuf->prop_id;
|
|
|
m_node->buf_id = qbuf->buf_id;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:m_node[0x%x]ops_id[%d]\n", __func__,
|
|
|
- (int)m_node, qbuf->ops_id);
|
|
|
- DRM_DEBUG_KMS("%s:prop_id[%d]buf_id[%d]\n", __func__,
|
|
|
- qbuf->prop_id, m_node->buf_id);
|
|
|
+ DRM_DEBUG_KMS("m_node[0x%x]ops_id[%d]\n", (int)m_node, qbuf->ops_id);
|
|
|
+ DRM_DEBUG_KMS("prop_id[%d]buf_id[%d]\n", qbuf->prop_id, m_node->buf_id);
|
|
|
|
|
|
for_each_ipp_planar(i) {
|
|
|
- DRM_DEBUG_KMS("%s:i[%d]handle[0x%x]\n", __func__,
|
|
|
- i, qbuf->handle[i]);
|
|
|
+ DRM_DEBUG_KMS("i[%d]handle[0x%x]\n", i, qbuf->handle[i]);
|
|
|
|
|
|
/* get dma address by handle */
|
|
|
if (qbuf->handle[i]) {
|
|
@@ -732,9 +725,8 @@ static struct drm_exynos_ipp_mem_node
|
|
|
|
|
|
buf_info.handles[i] = qbuf->handle[i];
|
|
|
buf_info.base[i] = *(dma_addr_t *) addr;
|
|
|
- DRM_DEBUG_KMS("%s:i[%d]base[0x%x]hd[0x%x]\n",
|
|
|
- __func__, i, buf_info.base[i],
|
|
|
- (int)buf_info.handles[i]);
|
|
|
+ DRM_DEBUG_KMS("i[%d]base[0x%x]hd[0x%x]\n",
|
|
|
+ i, buf_info.base[i], (int)buf_info.handles[i]);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -758,7 +750,7 @@ static int ipp_put_mem_node(struct drm_device *drm_dev,
|
|
|
{
|
|
|
int i;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:node[0x%x]\n", __func__, (int)m_node);
|
|
|
+ DRM_DEBUG_KMS("node[0x%x]\n", (int)m_node);
|
|
|
|
|
|
if (!m_node) {
|
|
|
DRM_ERROR("invalid dequeue node.\n");
|
|
@@ -772,7 +764,7 @@ static int ipp_put_mem_node(struct drm_device *drm_dev,
|
|
|
|
|
|
mutex_lock(&c_node->mem_lock);
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:ops_id[%d]\n", __func__, m_node->ops_id);
|
|
|
+ DRM_DEBUG_KMS("ops_id[%d]\n", m_node->ops_id);
|
|
|
|
|
|
/* put gem buffer */
|
|
|
for_each_ipp_planar(i) {
|
|
@@ -804,8 +796,7 @@ static int ipp_get_event(struct drm_device *drm_dev,
|
|
|
struct drm_exynos_ipp_send_event *e;
|
|
|
unsigned long flags;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:ops_id[%d]buf_id[%d]\n", __func__,
|
|
|
- qbuf->ops_id, qbuf->buf_id);
|
|
|
+ DRM_DEBUG_KMS("ops_id[%d]buf_id[%d]\n", qbuf->ops_id, qbuf->buf_id);
|
|
|
|
|
|
e = kzalloc(sizeof(*e), GFP_KERNEL);
|
|
|
|
|
@@ -838,13 +829,12 @@ static void ipp_put_event(struct drm_exynos_ipp_cmd_node *c_node,
|
|
|
int count = 0;
|
|
|
|
|
|
if (list_empty(&c_node->event_list)) {
|
|
|
- DRM_DEBUG_KMS("%s:event_list is empty.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("event_list is empty.\n");
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
list_for_each_entry_safe(e, te, &c_node->event_list, base.link) {
|
|
|
- DRM_DEBUG_KMS("%s:count[%d]e[0x%x]\n",
|
|
|
- __func__, count++, (int)e);
|
|
|
+ DRM_DEBUG_KMS("count[%d]e[0x%x]\n", count++, (int)e);
|
|
|
|
|
|
/*
|
|
|
* quf == NULL condition means all event deletion.
|
|
@@ -905,12 +895,12 @@ static int ipp_queue_buf_with_run(struct device *dev,
|
|
|
property = &c_node->property;
|
|
|
|
|
|
if (c_node->state != IPP_STATE_START) {
|
|
|
- DRM_DEBUG_KMS("%s:bypass for invalid state.\n" , __func__);
|
|
|
+ DRM_DEBUG_KMS("bypass for invalid state.\n");
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
if (!ipp_check_mem_list(c_node)) {
|
|
|
- DRM_DEBUG_KMS("%s:empty memory.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("empty memory.\n");
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -973,8 +963,8 @@ int exynos_drm_ipp_queue_buf(struct drm_device *drm_dev, void *data,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:prop_id[%d]ops_id[%s]buf_id[%d]buf_type[%d]\n",
|
|
|
- __func__, qbuf->prop_id, qbuf->ops_id ? "dst" : "src",
|
|
|
+ DRM_DEBUG_KMS("prop_id[%d]ops_id[%s]buf_id[%d]buf_type[%d]\n",
|
|
|
+ qbuf->prop_id, qbuf->ops_id ? "dst" : "src",
|
|
|
qbuf->buf_id, qbuf->buf_type);
|
|
|
|
|
|
/* find command node */
|
|
@@ -1106,7 +1096,7 @@ int exynos_drm_ipp_cmd_ctrl(struct drm_device *drm_dev, void *data,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:ctrl[%d]prop_id[%d]\n", __func__,
|
|
|
+ DRM_DEBUG_KMS("ctrl[%d]prop_id[%d]\n",
|
|
|
cmd_ctrl->ctrl, cmd_ctrl->prop_id);
|
|
|
|
|
|
ippdrv = ipp_find_drv_by_handle(cmd_ctrl->prop_id);
|
|
@@ -1181,7 +1171,7 @@ int exynos_drm_ipp_cmd_ctrl(struct drm_device *drm_dev, void *data,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:done ctrl[%d]prop_id[%d]\n", __func__,
|
|
|
+ DRM_DEBUG_KMS("done ctrl[%d]prop_id[%d]\n",
|
|
|
cmd_ctrl->ctrl, cmd_ctrl->prop_id);
|
|
|
|
|
|
return 0;
|
|
@@ -1217,7 +1207,7 @@ static int ipp_set_property(struct exynos_drm_ippdrv *ippdrv,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:prop_id[%d]\n", __func__, property->prop_id);
|
|
|
+ DRM_DEBUG_KMS("prop_id[%d]\n", property->prop_id);
|
|
|
|
|
|
/* reset h/w block */
|
|
|
if (ippdrv->reset &&
|
|
@@ -1278,13 +1268,13 @@ static int ipp_start_property(struct exynos_drm_ippdrv *ippdrv,
|
|
|
struct list_head *head;
|
|
|
int ret, i;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:prop_id[%d]\n", __func__, property->prop_id);
|
|
|
+ DRM_DEBUG_KMS("prop_id[%d]\n", property->prop_id);
|
|
|
|
|
|
/* store command info in ippdrv */
|
|
|
ippdrv->c_node = c_node;
|
|
|
|
|
|
if (!ipp_check_mem_list(c_node)) {
|
|
|
- DRM_DEBUG_KMS("%s:empty memory.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("empty memory.\n");
|
|
|
return -ENOMEM;
|
|
|
}
|
|
|
|
|
@@ -1311,8 +1301,7 @@ static int ipp_start_property(struct exynos_drm_ippdrv *ippdrv,
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:m_node[0x%x]\n",
|
|
|
- __func__, (int)m_node);
|
|
|
+ DRM_DEBUG_KMS("m_node[0x%x]\n", (int)m_node);
|
|
|
|
|
|
ret = ipp_set_mem_node(ippdrv, c_node, m_node);
|
|
|
if (ret) {
|
|
@@ -1350,7 +1339,7 @@ static int ipp_start_property(struct exynos_drm_ippdrv *ippdrv,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:cmd[%d]\n", __func__, property->cmd);
|
|
|
+ DRM_DEBUG_KMS("cmd[%d]\n", property->cmd);
|
|
|
|
|
|
/* start operations */
|
|
|
if (ippdrv->start) {
|
|
@@ -1373,7 +1362,7 @@ static int ipp_stop_property(struct drm_device *drm_dev,
|
|
|
struct list_head *head;
|
|
|
int ret = 0, i;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:prop_id[%d]\n", __func__, property->prop_id);
|
|
|
+ DRM_DEBUG_KMS("prop_id[%d]\n", property->prop_id);
|
|
|
|
|
|
/* put event */
|
|
|
ipp_put_event(c_node, NULL);
|
|
@@ -1386,8 +1375,7 @@ static int ipp_stop_property(struct drm_device *drm_dev,
|
|
|
head = &c_node->mem_list[i];
|
|
|
|
|
|
if (list_empty(head)) {
|
|
|
- DRM_DEBUG_KMS("%s:mem_list is empty.\n",
|
|
|
- __func__);
|
|
|
+ DRM_DEBUG_KMS("mem_list is empty.\n");
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -1407,7 +1395,7 @@ static int ipp_stop_property(struct drm_device *drm_dev,
|
|
|
head = &c_node->mem_list[EXYNOS_DRM_OPS_DST];
|
|
|
|
|
|
if (list_empty(head)) {
|
|
|
- DRM_DEBUG_KMS("%s:mem_list is empty.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("mem_list is empty.\n");
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -1424,7 +1412,7 @@ static int ipp_stop_property(struct drm_device *drm_dev,
|
|
|
head = &c_node->mem_list[EXYNOS_DRM_OPS_SRC];
|
|
|
|
|
|
if (list_empty(head)) {
|
|
|
- DRM_DEBUG_KMS("%s:mem_list is empty.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("mem_list is empty.\n");
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -1516,7 +1504,7 @@ void ipp_sched_cmd(struct work_struct *work)
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:ctrl[%d] done.\n", __func__, cmd_work->ctrl);
|
|
|
+ DRM_DEBUG_KMS("ctrl[%d] done.\n", cmd_work->ctrl);
|
|
|
|
|
|
err_unlock:
|
|
|
mutex_unlock(&c_node->cmd_lock);
|
|
@@ -1537,8 +1525,7 @@ static int ipp_send_event(struct exynos_drm_ippdrv *ippdrv,
|
|
|
int ret, i;
|
|
|
|
|
|
for_each_ipp_ops(i)
|
|
|
- DRM_DEBUG_KMS("%s:%s buf_id[%d]\n", __func__,
|
|
|
- i ? "dst" : "src", buf_id[i]);
|
|
|
+ DRM_DEBUG_KMS("%s buf_id[%d]\n", i ? "dst" : "src", buf_id[i]);
|
|
|
|
|
|
if (!drm_dev) {
|
|
|
DRM_ERROR("failed to get drm_dev.\n");
|
|
@@ -1551,12 +1538,12 @@ static int ipp_send_event(struct exynos_drm_ippdrv *ippdrv,
|
|
|
}
|
|
|
|
|
|
if (list_empty(&c_node->event_list)) {
|
|
|
- DRM_DEBUG_KMS("%s:event list is empty.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("event list is empty.\n");
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
if (!ipp_check_mem_list(c_node)) {
|
|
|
- DRM_DEBUG_KMS("%s:empty memory.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("empty memory.\n");
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -1575,7 +1562,7 @@ static int ipp_send_event(struct exynos_drm_ippdrv *ippdrv,
|
|
|
}
|
|
|
|
|
|
tbuf_id[i] = m_node->buf_id;
|
|
|
- DRM_DEBUG_KMS("%s:%s buf_id[%d]\n", __func__,
|
|
|
+ DRM_DEBUG_KMS("%s buf_id[%d]\n",
|
|
|
i ? "dst" : "src", tbuf_id[i]);
|
|
|
|
|
|
ret = ipp_put_mem_node(drm_dev, c_node, m_node);
|
|
@@ -1643,8 +1630,7 @@ static int ipp_send_event(struct exynos_drm_ippdrv *ippdrv,
|
|
|
}
|
|
|
|
|
|
do_gettimeofday(&now);
|
|
|
- DRM_DEBUG_KMS("%s:tv_sec[%ld]tv_usec[%ld]\n"
|
|
|
- , __func__, now.tv_sec, now.tv_usec);
|
|
|
+ DRM_DEBUG_KMS("tv_sec[%ld]tv_usec[%ld]\n", now.tv_sec, now.tv_usec);
|
|
|
e->event.tv_sec = now.tv_sec;
|
|
|
e->event.tv_usec = now.tv_usec;
|
|
|
e->event.prop_id = property->prop_id;
|
|
@@ -1658,7 +1644,7 @@ static int ipp_send_event(struct exynos_drm_ippdrv *ippdrv,
|
|
|
wake_up_interruptible(&e->base.file_priv->event_wait);
|
|
|
spin_unlock_irqrestore(&drm_dev->event_lock, flags);
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:done cmd[%d]prop_id[%d]buf_id[%d]\n", __func__,
|
|
|
+ DRM_DEBUG_KMS("done cmd[%d]prop_id[%d]buf_id[%d]\n",
|
|
|
property->cmd, property->prop_id, tbuf_id[EXYNOS_DRM_OPS_DST]);
|
|
|
|
|
|
return 0;
|
|
@@ -1677,8 +1663,7 @@ void ipp_sched_event(struct work_struct *work)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:buf_id[%d]\n", __func__,
|
|
|
- event_work->buf_id[EXYNOS_DRM_OPS_DST]);
|
|
|
+ DRM_DEBUG_KMS("buf_id[%d]\n", event_work->buf_id[EXYNOS_DRM_OPS_DST]);
|
|
|
|
|
|
ippdrv = event_work->ippdrv;
|
|
|
if (!ippdrv) {
|
|
@@ -1699,8 +1684,8 @@ void ipp_sched_event(struct work_struct *work)
|
|
|
* or going out operations.
|
|
|
*/
|
|
|
if (c_node->state != IPP_STATE_START) {
|
|
|
- DRM_DEBUG_KMS("%s:bypass state[%d]prop_id[%d]\n",
|
|
|
- __func__, c_node->state, c_node->property.prop_id);
|
|
|
+ DRM_DEBUG_KMS("bypass state[%d]prop_id[%d]\n",
|
|
|
+ c_node->state, c_node->property.prop_id);
|
|
|
goto err_completion;
|
|
|
}
|
|
|
|
|
@@ -1736,7 +1721,7 @@ static int ipp_subdrv_probe(struct drm_device *drm_dev, struct device *dev)
|
|
|
goto err_idr;
|
|
|
}
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:count[%d]ippdrv[0x%x]ipp_id[%d]\n", __func__,
|
|
|
+ DRM_DEBUG_KMS("count[%d]ippdrv[0x%x]ipp_id[%d]\n",
|
|
|
count++, (int)ippdrv, ippdrv->ipp_id);
|
|
|
|
|
|
if (ippdrv->ipp_id == 0) {
|
|
@@ -1806,7 +1791,7 @@ static int ipp_subdrv_open(struct drm_device *drm_dev, struct device *dev,
|
|
|
|
|
|
INIT_LIST_HEAD(&priv->event_list);
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:done priv[0x%x]\n", __func__, (int)priv);
|
|
|
+ DRM_DEBUG_KMS("done priv[0x%x]\n", (int)priv);
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
@@ -1820,10 +1805,10 @@ static void ipp_subdrv_close(struct drm_device *drm_dev, struct device *dev,
|
|
|
struct drm_exynos_ipp_cmd_node *c_node, *tc_node;
|
|
|
int count = 0;
|
|
|
|
|
|
- DRM_DEBUG_KMS("%s:for priv[0x%x]\n", __func__, (int)priv);
|
|
|
+ DRM_DEBUG_KMS("for priv[0x%x]\n", (int)priv);
|
|
|
|
|
|
if (list_empty(&exynos_drm_ippdrv_list)) {
|
|
|
- DRM_DEBUG_KMS("%s:ippdrv_list is empty.\n", __func__);
|
|
|
+ DRM_DEBUG_KMS("ippdrv_list is empty.\n");
|
|
|
goto err_clear;
|
|
|
}
|
|
|
|
|
@@ -1833,8 +1818,8 @@ static void ipp_subdrv_close(struct drm_device *drm_dev, struct device *dev,
|
|
|
|
|
|
list_for_each_entry_safe(c_node, tc_node,
|
|
|
&ippdrv->cmd_list, list) {
|
|
|
- DRM_DEBUG_KMS("%s:count[%d]ippdrv[0x%x]\n",
|
|
|
- __func__, count++, (int)ippdrv);
|
|
|
+ DRM_DEBUG_KMS("count[%d]ippdrv[0x%x]\n",
|
|
|
+ count++, (int)ippdrv);
|
|
|
|
|
|
if (c_node->priv == priv) {
|
|
|
/*
|
|
@@ -1955,7 +1940,7 @@ static int ipp_remove(struct platform_device *pdev)
|
|
|
|
|
|
static int ipp_power_ctrl(struct ipp_context *ctx, bool enable)
|
|
|
{
|
|
|
- DRM_DEBUG_KMS("%s:enable[%d]\n", __func__, enable);
|
|
|
+ DRM_DEBUG_KMS("enable[%d]\n", enable);
|
|
|
|
|
|
return 0;
|
|
|
}
|