Skip to content

Commit

Permalink
drm/exynos/hdmi: embed display into private context
Browse files Browse the repository at this point in the history
exynos_drm_display is used by internal Exynos DRM framework for
representing encoder:connector pair. As it should be mapped 1:1 to hdmi
private context it seems more reasonable to embed it directly in that context.
As a result further code simplification will be possible.
Moreover it will be possible to handle multiple hdmi devices in the system.

Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
  • Loading branch information
Andrzej Hajda authored and Inki Dae committed Nov 24, 2014
1 parent 400c8ac commit 930865f
Showing 1 changed file with 20 additions and 29 deletions.
49 changes: 20 additions & 29 deletions drivers/gpu/drm/exynos/exynos_hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
#include <linux/gpio.h>
#include <media/s5p_hdmi.h>

#define get_hdmi_display(dev) platform_get_drvdata(to_platform_device(dev))
#define ctx_from_connector(c) container_of(c, struct hdmi_context, connector)

#define HOTPLUG_DEBOUNCE_MS 1100
Expand Down Expand Up @@ -182,6 +181,7 @@ struct hdmi_conf_regs {
};

struct hdmi_context {
struct exynos_drm_display display;
struct device *dev;
struct drm_device *drm_dev;
struct drm_connector connector;
Expand Down Expand Up @@ -2143,11 +2143,6 @@ static struct exynos_drm_display_ops hdmi_display_ops = {
.commit = hdmi_commit,
};

static struct exynos_drm_display hdmi_display = {
.type = EXYNOS_DISPLAY_TYPE_HDMI,
.ops = &hdmi_display_ops,
};

static void hdmi_hotplug_work_func(struct work_struct *work)
{
struct hdmi_context *hdata;
Expand Down Expand Up @@ -2302,12 +2297,11 @@ MODULE_DEVICE_TABLE (of, hdmi_match_types);
static int hdmi_bind(struct device *dev, struct device *master, void *data)
{
struct drm_device *drm_dev = data;
struct hdmi_context *hdata;
struct hdmi_context *hdata = dev_get_drvdata(dev);

hdata = hdmi_display.ctx;
hdata->drm_dev = drm_dev;

return exynos_drm_create_enc_conn(drm_dev, &hdmi_display);
return exynos_drm_create_enc_conn(drm_dev, &hdata->display);
}

static void hdmi_unbind(struct device *dev, struct device *master, void *data)
Expand Down Expand Up @@ -2349,31 +2343,28 @@ static int hdmi_probe(struct platform_device *pdev)
struct resource *res;
int ret;

ret = exynos_drm_component_add(&pdev->dev, EXYNOS_DEVICE_TYPE_CONNECTOR,
hdmi_display.type);
if (ret)
return ret;

if (!dev->of_node) {
ret = -ENODEV;
goto err_del_component;
}
if (!dev->of_node)
return -ENODEV;

pdata = drm_hdmi_dt_parse_pdata(dev);
if (!pdata) {
ret = -EINVAL;
goto err_del_component;
}
if (!pdata)
return -EINVAL;

hdata = devm_kzalloc(dev, sizeof(struct hdmi_context), GFP_KERNEL);
if (!hdata) {
ret = -ENOMEM;
goto err_del_component;
}
if (!hdata)
return -ENOMEM;

hdata->display.type = EXYNOS_DISPLAY_TYPE_HDMI;
hdata->display.ops = &hdmi_display_ops;

ret = exynos_drm_component_add(&pdev->dev, EXYNOS_DEVICE_TYPE_CONNECTOR,
hdata->display.type);
if (ret)
return ret;

mutex_init(&hdata->hdmi_mutex);

platform_set_drvdata(pdev, &hdmi_display);
platform_set_drvdata(pdev, hdata);

match = of_match_node(hdmi_match_types, dev->of_node);
if (!match) {
Expand Down Expand Up @@ -2485,7 +2476,7 @@ static int hdmi_probe(struct platform_device *pdev)
}

pm_runtime_enable(dev);
hdmi_display.ctx = hdata;
hdata->display.ctx = hdata;

ret = component_add(&pdev->dev, &hdmi_component_ops);
if (ret)
Expand All @@ -2510,7 +2501,7 @@ static int hdmi_probe(struct platform_device *pdev)

static int hdmi_remove(struct platform_device *pdev)
{
struct hdmi_context *hdata = hdmi_display.ctx;
struct hdmi_context *hdata = platform_get_drvdata(pdev);

cancel_delayed_work_sync(&hdata->hotplug_work);

Expand Down

0 comments on commit 930865f

Please sign in to comment.