aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrzej Hajda <a.hajda@samsung.com>2014-07-03 09:10:28 -0400
committerInki Dae <daeinki@gmail.com>2014-08-03 03:52:17 -0400
commit5c76c5b146b0f25ee55af190c6213faf63da0cd9 (patch)
tree39daaff473eeeb8bfa174d5de08c9f12a89beaae
parentc51f73b3ceb84f4454053afc8f3d35a54b95dc67 (diff)
drm/exynos/ipp: remove struct exynos_drm_ipp_private
struct exynos_drm_ipp_private contains only one pointer so all occurrences of the struct can be replaced by the pointer itself. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_drv.h6
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_ipp.c30
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_ipp.h4
3 files changed, 12 insertions, 28 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.h b/drivers/gpu/drm/exynos/exynos_drm_drv.h
index dbb0973c8b5b..69a6fa397d75 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_drv.h
+++ b/drivers/gpu/drm/exynos/exynos_drm_drv.h
@@ -237,13 +237,9 @@ struct exynos_drm_g2d_private {
237 struct list_head userptr_list; 237 struct list_head userptr_list;
238}; 238};
239 239
240struct exynos_drm_ipp_private {
241 struct device *dev;
242};
243
244struct drm_exynos_file_private { 240struct drm_exynos_file_private {
245 struct exynos_drm_g2d_private *g2d_priv; 241 struct exynos_drm_g2d_private *g2d_priv;
246 struct exynos_drm_ipp_private *ipp_priv; 242 struct device *ipp_dev;
247 struct file *anon_filp; 243 struct file *anon_filp;
248}; 244};
249 245
diff --git a/drivers/gpu/drm/exynos/exynos_drm_ipp.c b/drivers/gpu/drm/exynos/exynos_drm_ipp.c
index 5fb89c0206a9..34d185c280c0 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_ipp.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_ipp.c
@@ -308,8 +308,7 @@ int exynos_drm_ipp_get_property(struct drm_device *drm_dev, void *data,
308 struct drm_file *file) 308 struct drm_file *file)
309{ 309{
310 struct drm_exynos_file_private *file_priv = file->driver_priv; 310 struct drm_exynos_file_private *file_priv = file->driver_priv;
311 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv; 311 struct device *dev = file_priv->ipp_dev;
312 struct device *dev = priv->dev;
313 struct ipp_context *ctx = get_ipp_context(dev); 312 struct ipp_context *ctx = get_ipp_context(dev);
314 struct drm_exynos_ipp_prop_list *prop_list = data; 313 struct drm_exynos_ipp_prop_list *prop_list = data;
315 struct exynos_drm_ippdrv *ippdrv; 314 struct exynos_drm_ippdrv *ippdrv;
@@ -441,8 +440,7 @@ int exynos_drm_ipp_set_property(struct drm_device *drm_dev, void *data,
441 struct drm_file *file) 440 struct drm_file *file)
442{ 441{
443 struct drm_exynos_file_private *file_priv = file->driver_priv; 442 struct drm_exynos_file_private *file_priv = file->driver_priv;
444 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv; 443 struct device *dev = file_priv->ipp_dev;
445 struct device *dev = priv->dev;
446 struct ipp_context *ctx = get_ipp_context(dev); 444 struct ipp_context *ctx = get_ipp_context(dev);
447 struct drm_exynos_ipp_property *property = data; 445 struct drm_exynos_ipp_property *property = data;
448 struct exynos_drm_ippdrv *ippdrv; 446 struct exynos_drm_ippdrv *ippdrv;
@@ -501,7 +499,7 @@ int exynos_drm_ipp_set_property(struct drm_device *drm_dev, void *data,
501 property->prop_id, property->cmd, (int)ippdrv); 499 property->prop_id, property->cmd, (int)ippdrv);
502 500
503 /* stored property information and ippdrv in private data */ 501 /* stored property information and ippdrv in private data */
504 c_node->priv = priv; 502 c_node->dev = dev;
505 c_node->property = *property; 503 c_node->property = *property;
506 c_node->state = IPP_STATE_IDLE; 504 c_node->state = IPP_STATE_IDLE;
507 505
@@ -929,8 +927,7 @@ int exynos_drm_ipp_queue_buf(struct drm_device *drm_dev, void *data,
929 struct drm_file *file) 927 struct drm_file *file)
930{ 928{
931 struct drm_exynos_file_private *file_priv = file->driver_priv; 929 struct drm_exynos_file_private *file_priv = file->driver_priv;
932 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv; 930 struct device *dev = file_priv->ipp_dev;
933 struct device *dev = priv->dev;
934 struct ipp_context *ctx = get_ipp_context(dev); 931 struct ipp_context *ctx = get_ipp_context(dev);
935 struct drm_exynos_ipp_queue_buf *qbuf = data; 932 struct drm_exynos_ipp_queue_buf *qbuf = data;
936 struct drm_exynos_ipp_cmd_node *c_node; 933 struct drm_exynos_ipp_cmd_node *c_node;
@@ -1061,9 +1058,8 @@ int exynos_drm_ipp_cmd_ctrl(struct drm_device *drm_dev, void *data,
1061 struct drm_file *file) 1058 struct drm_file *file)
1062{ 1059{
1063 struct drm_exynos_file_private *file_priv = file->driver_priv; 1060 struct drm_exynos_file_private *file_priv = file->driver_priv;
1064 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv;
1065 struct exynos_drm_ippdrv *ippdrv = NULL; 1061 struct exynos_drm_ippdrv *ippdrv = NULL;
1066 struct device *dev = priv->dev; 1062 struct device *dev = file_priv->ipp_dev;
1067 struct ipp_context *ctx = get_ipp_context(dev); 1063 struct ipp_context *ctx = get_ipp_context(dev);
1068 struct drm_exynos_ipp_cmd_ctrl *cmd_ctrl = data; 1064 struct drm_exynos_ipp_cmd_ctrl *cmd_ctrl = data;
1069 struct drm_exynos_ipp_cmd_work *cmd_work; 1065 struct drm_exynos_ipp_cmd_work *cmd_work;
@@ -1775,16 +1771,10 @@ static int ipp_subdrv_open(struct drm_device *drm_dev, struct device *dev,
1775 struct drm_file *file) 1771 struct drm_file *file)
1776{ 1772{
1777 struct drm_exynos_file_private *file_priv = file->driver_priv; 1773 struct drm_exynos_file_private *file_priv = file->driver_priv;
1778 struct exynos_drm_ipp_private *priv;
1779
1780 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1781 if (!priv)
1782 return -ENOMEM;
1783 priv->dev = dev;
1784 file_priv->ipp_priv = priv;
1785 1774
1775 file_priv->ipp_dev = dev;
1786 1776
1787 DRM_DEBUG_KMS("done priv[0x%x]\n", (int)priv); 1777 DRM_DEBUG_KMS("done priv[0x%x]\n", (int)dev);
1788 1778
1789 return 0; 1779 return 0;
1790} 1780}
@@ -1793,13 +1783,12 @@ static void ipp_subdrv_close(struct drm_device *drm_dev, struct device *dev,
1793 struct drm_file *file) 1783 struct drm_file *file)
1794{ 1784{
1795 struct drm_exynos_file_private *file_priv = file->driver_priv; 1785 struct drm_exynos_file_private *file_priv = file->driver_priv;
1796 struct exynos_drm_ipp_private *priv = file_priv->ipp_priv;
1797 struct exynos_drm_ippdrv *ippdrv = NULL; 1786 struct exynos_drm_ippdrv *ippdrv = NULL;
1798 struct ipp_context *ctx = get_ipp_context(dev); 1787 struct ipp_context *ctx = get_ipp_context(dev);
1799 struct drm_exynos_ipp_cmd_node *c_node, *tc_node; 1788 struct drm_exynos_ipp_cmd_node *c_node, *tc_node;
1800 int count = 0; 1789 int count = 0;
1801 1790
1802 DRM_DEBUG_KMS("for priv[0x%x]\n", (int)priv); 1791 DRM_DEBUG_KMS("for priv[0x%x]\n", (int)file_priv->ipp_dev);
1803 1792
1804 list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list) { 1793 list_for_each_entry(ippdrv, &exynos_drm_ippdrv_list, drv_list) {
1805 mutex_lock(&ippdrv->cmd_lock); 1794 mutex_lock(&ippdrv->cmd_lock);
@@ -1808,7 +1797,7 @@ static void ipp_subdrv_close(struct drm_device *drm_dev, struct device *dev,
1808 DRM_DEBUG_KMS("count[%d]ippdrv[0x%x]\n", 1797 DRM_DEBUG_KMS("count[%d]ippdrv[0x%x]\n",
1809 count++, (int)ippdrv); 1798 count++, (int)ippdrv);
1810 1799
1811 if (c_node->priv == priv) { 1800 if (c_node->dev == file_priv->ipp_dev) {
1812 /* 1801 /*
1813 * userland goto unnormal state. process killed. 1802 * userland goto unnormal state. process killed.
1814 * and close the file. 1803 * and close the file.
@@ -1830,7 +1819,6 @@ static void ipp_subdrv_close(struct drm_device *drm_dev, struct device *dev,
1830 mutex_unlock(&ippdrv->cmd_lock); 1819 mutex_unlock(&ippdrv->cmd_lock);
1831 } 1820 }
1832 1821
1833 kfree(priv);
1834 return; 1822 return;
1835} 1823}
1836 1824
diff --git a/drivers/gpu/drm/exynos/exynos_drm_ipp.h b/drivers/gpu/drm/exynos/exynos_drm_ipp.h
index 7aaeaae757c2..6f48d62aeb30 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_ipp.h
+++ b/drivers/gpu/drm/exynos/exynos_drm_ipp.h
@@ -48,7 +48,7 @@ struct drm_exynos_ipp_cmd_work {
48/* 48/*
49 * A structure of command node. 49 * A structure of command node.
50 * 50 *
51 * @priv: IPP private information. 51 * @dev: IPP device.
52 * @list: list head to command queue information. 52 * @list: list head to command queue information.
53 * @event_list: list head of event. 53 * @event_list: list head of event.
54 * @mem_list: list head to source,destination memory queue information. 54 * @mem_list: list head to source,destination memory queue information.
@@ -64,7 +64,7 @@ struct drm_exynos_ipp_cmd_work {
64 * @state: state of command node. 64 * @state: state of command node.
65 */ 65 */
66struct drm_exynos_ipp_cmd_node { 66struct drm_exynos_ipp_cmd_node {
67 struct exynos_drm_ipp_private *priv; 67 struct device *dev;
68 struct list_head list; 68 struct list_head list;
69 struct list_head event_list; 69 struct list_head event_list;
70 struct list_head mem_list[EXYNOS_DRM_OPS_MAX]; 70 struct list_head mem_list[EXYNOS_DRM_OPS_MAX];