2019-05-27 06:55:01 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2012-02-03 09:01:55 +00:00
|
|
|
/*
|
|
|
|
* Samsung SoC DP (Display Port) interface driver.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Samsung Electronics Co., Ltd.
|
|
|
|
* Author: Jingoo Han <jg1.han@samsung.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/clk.h>
|
2014-05-09 05:25:20 +00:00
|
|
|
#include <linux/component.h>
|
2019-06-24 13:06:28 +00:00
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/of_graph.h>
|
|
|
|
#include <linux/platform_device.h>
|
2018-06-11 12:25:00 +00:00
|
|
|
#include <linux/pm_runtime.h>
|
2014-01-30 21:19:23 +00:00
|
|
|
#include <video/of_display_timing.h>
|
|
|
|
#include <video/of_videomode.h>
|
2016-03-29 01:57:03 +00:00
|
|
|
#include <video/videomode.h>
|
2012-02-03 09:01:55 +00:00
|
|
|
|
2019-06-24 13:06:28 +00:00
|
|
|
#include <drm/bridge/analogix_dp.h>
|
2019-01-17 21:03:34 +00:00
|
|
|
#include <drm/drm_atomic_helper.h>
|
2019-08-26 15:26:29 +00:00
|
|
|
#include <drm/drm_bridge.h>
|
2014-01-30 21:19:30 +00:00
|
|
|
#include <drm/drm_crtc.h>
|
2017-03-29 18:55:46 +00:00
|
|
|
#include <drm/drm_of.h>
|
2014-07-31 17:42:14 +00:00
|
|
|
#include <drm/drm_panel.h>
|
2019-06-24 13:06:28 +00:00
|
|
|
#include <drm/drm_print.h>
|
2019-01-17 21:03:34 +00:00
|
|
|
#include <drm/drm_probe_helper.h>
|
2020-03-05 15:59:31 +00:00
|
|
|
#include <drm/drm_simple_kms_helper.h>
|
2016-03-29 01:57:03 +00:00
|
|
|
#include <drm/exynos_drm.h>
|
|
|
|
|
2015-08-15 15:14:08 +00:00
|
|
|
#include "exynos_drm_crtc.h"
|
2012-02-03 09:01:55 +00:00
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
#define to_dp(nm) container_of(nm, struct exynos_dp_device, nm)
|
2014-01-30 21:19:30 +00:00
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
struct exynos_dp_device {
|
|
|
|
struct drm_encoder encoder;
|
2016-06-08 14:13:27 +00:00
|
|
|
struct drm_connector *connector;
|
2016-03-29 01:57:03 +00:00
|
|
|
struct drm_bridge *ptn_bridge;
|
|
|
|
struct drm_device *drm_dev;
|
|
|
|
struct device *dev;
|
2015-04-07 13:28:50 +00:00
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
struct videomode vm;
|
2018-01-10 16:23:41 +00:00
|
|
|
struct analogix_dp_device *adp;
|
2016-03-29 01:57:03 +00:00
|
|
|
struct analogix_dp_plat_data plat_data;
|
2014-02-24 10:20:15 +00:00
|
|
|
};
|
|
|
|
|
2016-09-25 07:54:59 +00:00
|
|
|
static int exynos_dp_crtc_clock_enable(struct analogix_dp_plat_data *plat_data,
|
2016-03-29 01:57:03 +00:00
|
|
|
bool enable)
|
2012-02-03 09:01:55 +00:00
|
|
|
{
|
2016-03-29 01:57:03 +00:00
|
|
|
struct exynos_dp_device *dp = to_dp(plat_data);
|
|
|
|
struct drm_encoder *encoder = &dp->encoder;
|
2012-02-03 09:01:55 +00:00
|
|
|
|
2016-04-29 16:39:08 +00:00
|
|
|
if (!encoder->crtc)
|
|
|
|
return -EPERM;
|
2012-02-03 09:01:55 +00:00
|
|
|
|
2016-04-29 16:39:08 +00:00
|
|
|
exynos_drm_pipe_clk_enable(to_exynos_crtc(encoder->crtc), enable);
|
2012-07-19 04:52:59 +00:00
|
|
|
|
2012-02-03 09:01:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
static int exynos_dp_poweron(struct analogix_dp_plat_data *plat_data)
|
2012-02-03 09:01:55 +00:00
|
|
|
{
|
2016-03-29 01:57:03 +00:00
|
|
|
return exynos_dp_crtc_clock_enable(plat_data, true);
|
2012-02-03 09:01:55 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
static int exynos_dp_poweroff(struct analogix_dp_plat_data *plat_data)
|
2012-02-03 09:01:55 +00:00
|
|
|
{
|
2016-03-29 01:57:03 +00:00
|
|
|
return exynos_dp_crtc_clock_enable(plat_data, false);
|
2012-02-03 09:01:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-29 09:15:35 +00:00
|
|
|
static int exynos_dp_get_modes(struct analogix_dp_plat_data *plat_data,
|
|
|
|
struct drm_connector *connector)
|
2012-02-03 09:01:55 +00:00
|
|
|
{
|
2016-03-29 01:57:03 +00:00
|
|
|
struct exynos_dp_device *dp = to_dp(plat_data);
|
2014-01-30 21:19:30 +00:00
|
|
|
struct drm_display_mode *mode;
|
2016-03-29 01:57:03 +00:00
|
|
|
int num_modes = 0;
|
2014-01-30 21:19:30 +00:00
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
if (dp->plat_data.panel)
|
|
|
|
return num_modes;
|
2014-07-31 17:42:14 +00:00
|
|
|
|
2014-01-30 21:19:30 +00:00
|
|
|
mode = drm_mode_create(connector->dev);
|
|
|
|
if (!mode) {
|
2019-04-15 05:24:36 +00:00
|
|
|
DRM_DEV_ERROR(dp->dev,
|
|
|
|
"failed to create a new display mode.\n");
|
2016-03-29 01:57:03 +00:00
|
|
|
return num_modes;
|
2014-01-30 21:19:30 +00:00
|
|
|
}
|
|
|
|
|
2016-02-12 12:13:56 +00:00
|
|
|
drm_display_mode_from_videomode(&dp->vm, mode);
|
2014-01-30 21:19:30 +00:00
|
|
|
connector->display_info.width_mm = mode->width_mm;
|
|
|
|
connector->display_info.height_mm = mode->height_mm;
|
|
|
|
|
|
|
|
mode->type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED;
|
|
|
|
drm_mode_set_name(mode);
|
|
|
|
drm_mode_probed_add(connector, mode);
|
2014-01-30 21:19:23 +00:00
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
return num_modes + 1;
|
2014-02-24 10:20:15 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
static int exynos_dp_bridge_attach(struct analogix_dp_plat_data *plat_data,
|
|
|
|
struct drm_bridge *bridge,
|
|
|
|
struct drm_connector *connector)
|
2014-01-30 21:19:30 +00:00
|
|
|
{
|
2016-03-29 01:57:03 +00:00
|
|
|
struct exynos_dp_device *dp = to_dp(plat_data);
|
2014-01-30 21:19:30 +00:00
|
|
|
int ret;
|
|
|
|
|
2016-06-08 14:13:27 +00:00
|
|
|
dp->connector = connector;
|
2015-08-11 00:37:04 +00:00
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
/* Pre-empt DP connector creation if there's a bridge */
|
|
|
|
if (dp->ptn_bridge) {
|
drm/bridge: Extend bridge API to disable connector creation
Most bridge drivers create a DRM connector to model the connector at the
output of the bridge. This model is historical and has worked pretty
well so far, but causes several issues:
- It prevents supporting more complex display pipelines where DRM
connector operations are split over multiple components. For instance a
pipeline with a bridge connected to the DDC signals to read EDID data,
and another one connected to the HPD signal to detect connection and
disconnection, will not be possible to support through this model.
- It requires every bridge driver to implement similar connector
handling code, resulting in code duplication.
- It assumes that a bridge will either be wired to a connector or to
another bridge, but doesn't support bridges that can be used in both
positions very well (although there is some ad-hoc support for this in
the analogix_dp bridge driver).
In order to solve these issues, ownership of the connector should be
moved to the display controller driver (where it can be implemented
using helpers provided by the core).
Extend the bridge API to allow disabling connector creation in bridge
drivers as a first step towards the new model. The new flags argument to
the bridge .attach() operation allows instructing the bridge driver to
skip creating a connector. Unconditionally set the new flags argument to
0 for now to keep the existing behaviour, and modify all existing bridge
drivers to return an error when connector creation is not requested as
they don't support this feature yet.
The change is based on the following semantic patch, with manual review
and edits.
@ rule1 @
identifier funcs;
identifier fn;
@@
struct drm_bridge_funcs funcs = {
...,
.attach = fn
};
@ depends on rule1 @
identifier rule1.fn;
identifier bridge;
statement S, S1;
@@
int fn(
struct drm_bridge *bridge
+ , enum drm_bridge_attach_flags flags
)
{
... when != S
+ if (flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR) {
+ DRM_ERROR("Fix bridge driver to make connector optional!");
+ return -EINVAL;
+ }
+
S1
...
}
@ depends on rule1 @
identifier rule1.fn;
identifier bridge, flags;
expression E1, E2, E3;
@@
int fn(
struct drm_bridge *bridge,
enum drm_bridge_attach_flags flags
) {
<...
drm_bridge_attach(E1, E2, E3
+ , flags
)
...>
}
@@
expression E1, E2, E3;
@@
drm_bridge_attach(E1, E2, E3
+ , 0
)
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tested-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200226112514.12455-10-laurent.pinchart@ideasonboard.com
2020-02-26 11:24:29 +00:00
|
|
|
ret = drm_bridge_attach(&dp->encoder, dp->ptn_bridge, bridge,
|
|
|
|
0);
|
2016-03-29 01:57:03 +00:00
|
|
|
if (ret) {
|
2019-04-15 05:24:36 +00:00
|
|
|
DRM_DEV_ERROR(dp->dev,
|
|
|
|
"Failed to attach bridge to drm\n");
|
2016-03-29 01:57:03 +00:00
|
|
|
return ret;
|
2014-07-31 17:42:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-02 11:00:03 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void exynos_dp_mode_set(struct drm_encoder *encoder,
|
|
|
|
struct drm_display_mode *mode,
|
|
|
|
struct drm_display_mode *adjusted_mode)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
static void exynos_dp_nop(struct drm_encoder *encoder)
|
2015-11-02 11:00:03 +00:00
|
|
|
{
|
2016-03-29 01:57:03 +00:00
|
|
|
/* do nothing */
|
2015-11-02 11:00:03 +00:00
|
|
|
}
|
|
|
|
|
2015-12-15 11:21:06 +00:00
|
|
|
static const struct drm_encoder_helper_funcs exynos_dp_encoder_helper_funcs = {
|
2015-08-15 15:14:08 +00:00
|
|
|
.mode_set = exynos_dp_mode_set,
|
2016-03-29 01:57:03 +00:00
|
|
|
.enable = exynos_dp_nop,
|
|
|
|
.disable = exynos_dp_nop,
|
2014-01-30 21:19:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int exynos_dp_dt_parse_panel(struct exynos_dp_device *dp)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2016-02-12 12:13:56 +00:00
|
|
|
ret = of_get_videomode(dp->dev->of_node, &dp->vm, OF_USE_NATIVE_MODE);
|
2014-01-30 21:19:23 +00:00
|
|
|
if (ret) {
|
2019-04-15 05:24:36 +00:00
|
|
|
DRM_DEV_ERROR(dp->dev,
|
|
|
|
"failed: of_get_videomode() : %d\n", ret);
|
2014-01-30 21:19:23 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-09 05:25:20 +00:00
|
|
|
static int exynos_dp_bind(struct device *dev, struct device *master, void *data)
|
2012-02-03 09:01:55 +00:00
|
|
|
{
|
2014-11-17 08:54:24 +00:00
|
|
|
struct exynos_dp_device *dp = dev_get_drvdata(dev);
|
2015-08-15 15:14:08 +00:00
|
|
|
struct drm_encoder *encoder = &dp->encoder;
|
2016-03-29 01:57:03 +00:00
|
|
|
struct drm_device *drm_dev = data;
|
2017-08-24 13:33:51 +00:00
|
|
|
int ret;
|
2012-02-03 09:01:55 +00:00
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
dp->drm_dev = drm_dev;
|
2012-10-12 20:48:00 +00:00
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
if (!dp->plat_data.panel && !dp->ptn_bridge) {
|
2014-07-31 17:42:14 +00:00
|
|
|
ret = exynos_dp_dt_parse_panel(dp);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2014-01-30 21:19:23 +00:00
|
|
|
|
2020-03-05 15:59:31 +00:00
|
|
|
drm_simple_encoder_init(drm_dev, encoder, DRM_MODE_ENCODER_TMDS);
|
2015-08-15 15:14:08 +00:00
|
|
|
|
|
|
|
drm_encoder_helper_add(encoder, &exynos_dp_encoder_helper_funcs);
|
2015-08-05 23:24:20 +00:00
|
|
|
|
2017-08-24 13:33:51 +00:00
|
|
|
ret = exynos_drm_set_possible_crtcs(encoder, EXYNOS_DISPLAY_TYPE_LCD);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
dp->plat_data.encoder = encoder;
|
2015-08-05 23:24:20 +00:00
|
|
|
|
2020-03-10 10:34:27 +00:00
|
|
|
ret = analogix_dp_bind(dp->adp, dp->drm_dev);
|
|
|
|
if (ret)
|
2018-01-10 16:23:42 +00:00
|
|
|
dp->encoder.funcs->destroy(&dp->encoder);
|
2018-01-10 16:23:41 +00:00
|
|
|
|
2020-03-10 10:34:27 +00:00
|
|
|
return ret;
|
2012-02-03 09:01:55 +00:00
|
|
|
}
|
|
|
|
|
2014-05-09 05:25:20 +00:00
|
|
|
static void exynos_dp_unbind(struct device *dev, struct device *master,
|
2016-03-29 01:57:19 +00:00
|
|
|
void *data)
|
2012-02-03 09:01:55 +00:00
|
|
|
{
|
2018-01-10 16:23:41 +00:00
|
|
|
struct exynos_dp_device *dp = dev_get_drvdata(dev);
|
|
|
|
|
2018-01-10 16:23:42 +00:00
|
|
|
analogix_dp_unbind(dp->adp);
|
|
|
|
dp->encoder.funcs->destroy(&dp->encoder);
|
2014-05-09 05:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct component_ops exynos_dp_ops = {
|
|
|
|
.bind = exynos_dp_bind,
|
|
|
|
.unbind = exynos_dp_unbind,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int exynos_dp_probe(struct platform_device *pdev)
|
|
|
|
{
|
2014-07-31 17:42:14 +00:00
|
|
|
struct device *dev = &pdev->dev;
|
2017-03-29 18:55:46 +00:00
|
|
|
struct device_node *np;
|
2014-07-31 17:42:14 +00:00
|
|
|
struct exynos_dp_device *dp;
|
2017-03-29 18:55:46 +00:00
|
|
|
struct drm_panel *panel;
|
|
|
|
struct drm_bridge *bridge;
|
|
|
|
int ret;
|
2014-05-29 09:28:02 +00:00
|
|
|
|
2014-07-31 17:42:14 +00:00
|
|
|
dp = devm_kzalloc(&pdev->dev, sizeof(struct exynos_dp_device),
|
2016-03-29 01:57:19 +00:00
|
|
|
GFP_KERNEL);
|
2014-07-31 17:42:14 +00:00
|
|
|
if (!dp)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2020-03-10 10:34:27 +00:00
|
|
|
dp->dev = dev;
|
2016-03-29 01:57:03 +00:00
|
|
|
/*
|
|
|
|
* We just use the drvdata until driver run into component
|
|
|
|
* add function, and then we would set drvdata to null, so
|
|
|
|
* that analogix dp driver would take charge of the drvdata.
|
|
|
|
*/
|
2014-11-17 08:54:24 +00:00
|
|
|
platform_set_drvdata(pdev, dp);
|
|
|
|
|
2015-11-26 12:34:18 +00:00
|
|
|
/* This is for the backward compatibility. */
|
2016-01-29 15:09:31 +00:00
|
|
|
np = of_parse_phandle(dev->of_node, "panel", 0);
|
|
|
|
if (np) {
|
2016-03-29 01:57:03 +00:00
|
|
|
dp->plat_data.panel = of_drm_find_panel(np);
|
2018-05-09 13:00:39 +00:00
|
|
|
|
2016-01-29 15:09:31 +00:00
|
|
|
of_node_put(np);
|
2018-05-09 13:00:39 +00:00
|
|
|
if (IS_ERR(dp->plat_data.panel))
|
|
|
|
return PTR_ERR(dp->plat_data.panel);
|
|
|
|
|
2015-11-26 12:34:18 +00:00
|
|
|
goto out;
|
2016-01-29 15:09:31 +00:00
|
|
|
}
|
2015-11-26 12:34:18 +00:00
|
|
|
|
2017-03-29 18:55:46 +00:00
|
|
|
ret = drm_of_find_panel_or_bridge(dev->of_node, 0, 0, &panel, &bridge);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* The remote port can be either a panel or a bridge */
|
|
|
|
dp->plat_data.panel = panel;
|
2020-03-10 10:34:27 +00:00
|
|
|
dp->plat_data.dev_type = EXYNOS_DP;
|
|
|
|
dp->plat_data.power_on_start = exynos_dp_poweron;
|
|
|
|
dp->plat_data.power_off = exynos_dp_poweroff;
|
|
|
|
dp->plat_data.attach = exynos_dp_bridge_attach;
|
|
|
|
dp->plat_data.get_modes = exynos_dp_get_modes;
|
2018-03-05 08:57:41 +00:00
|
|
|
dp->plat_data.skip_connector = !!bridge;
|
2020-03-10 10:34:27 +00:00
|
|
|
|
2017-03-29 18:55:46 +00:00
|
|
|
dp->ptn_bridge = bridge;
|
2015-01-20 16:38:46 +00:00
|
|
|
|
2015-11-26 12:34:18 +00:00
|
|
|
out:
|
2020-03-10 10:34:27 +00:00
|
|
|
dp->adp = analogix_dp_probe(dev, &dp->plat_data);
|
|
|
|
if (IS_ERR(dp->adp))
|
|
|
|
return PTR_ERR(dp->adp);
|
|
|
|
|
2016-03-29 01:57:03 +00:00
|
|
|
return component_add(&pdev->dev, &exynos_dp_ops);
|
2014-05-09 05:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int exynos_dp_remove(struct platform_device *pdev)
|
|
|
|
{
|
2020-03-10 10:34:27 +00:00
|
|
|
struct exynos_dp_device *dp = platform_get_drvdata(pdev);
|
|
|
|
|
2014-05-29 09:28:02 +00:00
|
|
|
component_del(&pdev->dev, &exynos_dp_ops);
|
2020-03-10 10:34:27 +00:00
|
|
|
analogix_dp_remove(dp->adp);
|
2014-05-29 09:28:02 +00:00
|
|
|
|
2012-02-03 09:01:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-02 11:32:36 +00:00
|
|
|
#ifdef CONFIG_PM
|
|
|
|
static int exynos_dp_suspend(struct device *dev)
|
|
|
|
{
|
2018-01-10 16:23:41 +00:00
|
|
|
struct exynos_dp_device *dp = dev_get_drvdata(dev);
|
|
|
|
|
|
|
|
return analogix_dp_suspend(dp->adp);
|
2015-11-02 11:32:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int exynos_dp_resume(struct device *dev)
|
|
|
|
{
|
2018-01-10 16:23:41 +00:00
|
|
|
struct exynos_dp_device *dp = dev_get_drvdata(dev);
|
|
|
|
|
|
|
|
return analogix_dp_resume(dp->adp);
|
2015-11-02 11:32:36 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const struct dev_pm_ops exynos_dp_pm_ops = {
|
|
|
|
SET_RUNTIME_PM_OPS(exynos_dp_suspend, exynos_dp_resume, NULL)
|
2018-06-11 12:25:00 +00:00
|
|
|
SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
|
|
|
|
pm_runtime_force_resume)
|
2015-11-02 11:32:36 +00:00
|
|
|
};
|
|
|
|
|
2012-10-12 20:48:00 +00:00
|
|
|
static const struct of_device_id exynos_dp_match[] = {
|
|
|
|
{ .compatible = "samsung,exynos5-dp" },
|
|
|
|
{},
|
|
|
|
};
|
2014-07-30 02:29:41 +00:00
|
|
|
MODULE_DEVICE_TABLE(of, exynos_dp_match);
|
2012-10-12 20:48:00 +00:00
|
|
|
|
2014-01-30 21:19:23 +00:00
|
|
|
struct platform_driver dp_driver = {
|
2012-02-03 09:01:55 +00:00
|
|
|
.probe = exynos_dp_probe,
|
2012-12-21 21:07:39 +00:00
|
|
|
.remove = exynos_dp_remove,
|
2012-02-03 09:01:55 +00:00
|
|
|
.driver = {
|
|
|
|
.name = "exynos-dp",
|
|
|
|
.owner = THIS_MODULE,
|
2015-11-02 11:32:36 +00:00
|
|
|
.pm = &exynos_dp_pm_ops,
|
2013-10-16 16:28:15 +00:00
|
|
|
.of_match_table = exynos_dp_match,
|
2012-02-03 09:01:55 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
|
2016-03-29 01:57:03 +00:00
|
|
|
MODULE_DESCRIPTION("Samsung Specific Analogix-DP Driver Extension");
|
2014-06-03 12:46:11 +00:00
|
|
|
MODULE_LICENSE("GPL v2");
|