Release 4.11 drivers/gpu/drm/exynos/exynos_dp.c
/*
* Samsung SoC DP (Display Port) interface driver.
*
* Copyright (C) 2012 Samsung Electronics Co., Ltd.
* Author: Jingoo Han <jg1.han@samsung.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*/
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/err.h>
#include <linux/clk.h>
#include <linux/of_graph.h>
#include <linux/component.h>
#include <video/of_display_timing.h>
#include <video/of_videomode.h>
#include <video/videomode.h>
#include <drm/drmP.h>
#include <drm/drm_crtc.h>
#include <drm/drm_crtc_helper.h>
#include <drm/drm_panel.h>
#include <drm/bridge/analogix_dp.h>
#include <drm/exynos_drm.h>
#include "exynos_drm_crtc.h"
#define to_dp(nm) container_of(nm, struct exynos_dp_device, nm)
struct exynos_dp_device {
struct drm_encoder encoder;
struct drm_connector *connector;
struct drm_bridge *ptn_bridge;
struct drm_device *drm_dev;
struct device *dev;
struct videomode vm;
struct analogix_dp_plat_data plat_data;
};
static int exynos_dp_crtc_clock_enable(struct analogix_dp_plat_data *plat_data,
bool enable)
{
struct exynos_dp_device *dp = to_dp(plat_data);
struct drm_encoder *encoder = &dp->encoder;
if (!encoder->crtc)
return -EPERM;
exynos_drm_pipe_clk_enable(to_exynos_crtc(encoder->crtc), enable);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yakir Yang | 34 | 56.67% | 1 | 25.00% |
Jingoo Han | 20 | 33.33% | 1 | 25.00% |
Andrzej Hajda | 5 | 8.33% | 1 | 25.00% |
Baoyou Xie | 1 | 1.67% | 1 | 25.00% |
Total | 60 | 100.00% | 4 | 100.00% |
static int exynos_dp_poweron(struct analogix_dp_plat_data *plat_data)
{
return exynos_dp_crtc_clock_enable(plat_data, true);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yakir Yang | 14 | 73.68% | 1 | 33.33% |
Jingoo Han | 5 | 26.32% | 2 | 66.67% |
Total | 19 | 100.00% | 3 | 100.00% |
static int exynos_dp_poweroff(struct analogix_dp_plat_data *plat_data)
{
return exynos_dp_crtc_clock_enable(plat_data, false);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yakir Yang | 11 | 57.89% | 1 | 50.00% |
Jingoo Han | 8 | 42.11% | 1 | 50.00% |
Total | 19 | 100.00% | 2 | 100.00% |
static int exynos_dp_get_modes(struct analogix_dp_plat_data *plat_data,
struct drm_connector *connector)
{
struct exynos_dp_device *dp = to_dp(plat_data);
struct drm_display_mode *mode;
int num_modes = 0;
if (dp->plat_data.panel)
return num_modes;
mode = drm_mode_create(connector->dev);
if (!mode) {
DRM_ERROR("failed to create a new display mode.\n");
return num_modes;
}
drm_display_mode_from_videomode(&dp->vm, mode);
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);
return num_modes + 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yakir Yang | 77 | 61.11% | 2 | 25.00% |
Ajay Kumar | 16 | 12.70% | 1 | 12.50% |
Sean Paul | 11 | 8.73% | 1 | 12.50% |
Jingoo Han | 10 | 7.94% | 1 | 12.50% |
Krzysztof Kozlowski | 9 | 7.14% | 2 | 25.00% |
Gustavo Fernando Padovan | 3 | 2.38% | 1 | 12.50% |
Total | 126 | 100.00% | 8 | 100.00% |
static int exynos_dp_bridge_attach(struct analogix_dp_plat_data *plat_data,
struct drm_bridge *bridge,
struct drm_connector *connector)
{
struct exynos_dp_device *dp = to_dp(plat_data);
int ret;
drm_connector_register(connector);
dp->connector = connector;
/* Pre-empt DP connector creation if there's a bridge */
if (dp->ptn_bridge) {
ret = drm_bridge_attach(&dp->encoder, dp->ptn_bridge, bridge);
if (ret) {
DRM_ERROR("Failed to attach bridge to drm\n");
bridge->next = NULL;
return ret;
}
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Gustavo Fernando Padovan | 46 | 49.46% | 1 | 25.00% |
Yakir Yang | 42 | 45.16% | 2 | 50.00% |
Laurent Pinchart | 5 | 5.38% | 1 | 25.00% |
Total | 93 | 100.00% | 4 | 100.00% |
static void exynos_dp_mode_set(struct drm_encoder *encoder,
struct drm_display_mode *mode,
struct drm_display_mode *adjusted_mode)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Gustavo Fernando Padovan | 20 | 100.00% | 1 | 100.00% |
Total | 20 | 100.00% | 1 | 100.00% |
static void exynos_dp_nop(struct drm_encoder *encoder)
{
/* do nothing */
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Gustavo Fernando Padovan | 8 | 66.67% | 1 | 50.00% |
Yakir Yang | 4 | 33.33% | 1 | 50.00% |
Total | 12 | 100.00% | 2 | 100.00% |
static const struct drm_encoder_helper_funcs exynos_dp_encoder_helper_funcs = {
.mode_set = exynos_dp_mode_set,
.enable = exynos_dp_nop,
.disable = exynos_dp_nop,
};
static const struct drm_encoder_funcs exynos_dp_encoder_funcs = {
.destroy = drm_encoder_cleanup,
};
static int exynos_dp_dt_parse_panel(struct exynos_dp_device *dp)
{
int ret;
ret = of_get_videomode(dp->dev->of_node, &dp->vm, OF_USE_NATIVE_MODE);
if (ret) {
DRM_ERROR("failed: of_get_videomode() : %d\n", ret);
return ret;
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sean Paul | 51 | 100.00% | 2 | 100.00% |
Total | 51 | 100.00% | 2 | 100.00% |
static int exynos_dp_bind(struct device *dev, struct device *master, void *data)
{
struct exynos_dp_device *dp = dev_get_drvdata(dev);
struct drm_encoder *encoder = &dp->encoder;
struct drm_device *drm_dev = data;
int pipe, ret;
/*
* Just like the probe function said, we don't need the
* device drvrate anymore, we should leave the charge to
* analogix dp driver, set the device drvdata to NULL.
*/
dev_set_drvdata(dev, NULL);
dp->dev = dev;
dp->drm_dev = drm_dev;
dp->plat_data.dev_type = EXYNOS_DP;
dp->plat_data.power_on = 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;
if (!dp->plat_data.panel && !dp->ptn_bridge) {
ret = exynos_dp_dt_parse_panel(dp);
if (ret)
return ret;
}
pipe = exynos_drm_crtc_get_pipe_from_type(drm_dev,
EXYNOS_DISPLAY_TYPE_LCD);
if (pipe < 0)
return pipe;
encoder->possible_crtcs = 1 << pipe;
DRM_DEBUG_KMS("possible_crtcs = 0x%x\n", encoder->possible_crtcs);
drm_encoder_init(drm_dev, encoder, &exynos_dp_encoder_funcs,
DRM_MODE_ENCODER_TMDS, NULL);
drm_encoder_helper_add(encoder, &exynos_dp_encoder_helper_funcs);
dp->plat_data.encoder = encoder;
return analogix_dp_bind(dev, dp->drm_dev, &dp->plat_data);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yakir Yang | 70 | 31.53% | 1 | 7.69% |
Gustavo Fernando Padovan | 67 | 30.18% | 3 | 23.08% |
Ajay Kumar | 31 | 13.96% | 2 | 15.38% |
Andrew Bresticker | 22 | 9.91% | 1 | 7.69% |
Inki Dae | 14 | 6.31% | 1 | 7.69% |
Andrzej Hajda | 10 | 4.50% | 1 | 7.69% |
Sean Paul | 4 | 1.80% | 2 | 15.38% |
Ville Syrjälä | 2 | 0.90% | 1 | 7.69% |
Jingoo Han | 2 | 0.90% | 1 | 7.69% |
Total | 222 | 100.00% | 13 | 100.00% |
static void exynos_dp_unbind(struct device *dev, struct device *master,
void *data)
{
return analogix_dp_unbind(dev, master, data);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Inki Dae | 15 | 50.00% | 1 | 33.33% |
Jingoo Han | 8 | 26.67% | 1 | 33.33% |
Yakir Yang | 7 | 23.33% | 1 | 33.33% |
Total | 30 | 100.00% | 3 | 100.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)
{
struct device *dev = &pdev->dev;
struct device_node *np = NULL, *endpoint = NULL;
struct exynos_dp_device *dp;
dp = devm_kzalloc(&pdev->dev, sizeof(struct exynos_dp_device),
GFP_KERNEL);
if (!dp)
return -ENOMEM;
/*
* 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.
*/
platform_set_drvdata(pdev, dp);
/* This is for the backward compatibility. */
np = of_parse_phandle(dev->of_node, "panel", 0);
if (np) {
dp->plat_data.panel = of_drm_find_panel(np);
of_node_put(np);
if (!dp->plat_data.panel)
return -EPROBE_DEFER;
goto out;
}
endpoint = of_graph_get_next_endpoint(dev->of_node, NULL);
if (endpoint) {
np = of_graph_get_remote_port_parent(endpoint);
if (np) {
/* The remote port can be either a panel or a bridge */
dp->plat_data.panel = of_drm_find_panel(np);
if (!dp->plat_data.panel) {
dp->ptn_bridge = of_drm_find_bridge(np);
if (!dp->ptn_bridge) {
of_node_put(np);
return -EPROBE_DEFER;
}
}
of_node_put(np);
} else {
DRM_ERROR("no remote endpoint device node found.\n");
return -EINVAL;
}
} else {
DRM_ERROR("no port endpoint subnode found.\n");
return -EINVAL;
}
out:
return component_add(&pdev->dev, &exynos_dp_ops);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ajay Kumar | 87 | 35.08% | 2 | 22.22% |
Inki Dae | 86 | 34.68% | 3 | 33.33% |
Javier Martinez Canillas | 45 | 18.15% | 1 | 11.11% |
Andrzej Hajda | 19 | 7.66% | 1 | 11.11% |
Yakir Yang | 10 | 4.03% | 1 | 11.11% |
Gustavo Fernando Padovan | 1 | 0.40% | 1 | 11.11% |
Total | 248 | 100.00% | 9 | 100.00% |
static int exynos_dp_remove(struct platform_device *pdev)
{
component_del(&pdev->dev, &exynos_dp_ops);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Inki Dae | 19 | 76.00% | 2 | 66.67% |
Jingoo Han | 6 | 24.00% | 1 | 33.33% |
Total | 25 | 100.00% | 3 | 100.00% |
#ifdef CONFIG_PM
static int exynos_dp_suspend(struct device *dev)
{
return analogix_dp_suspend(dev);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Gustavo Fernando Padovan | 15 | 88.24% | 1 | 50.00% |
Yakir Yang | 2 | 11.76% | 1 | 50.00% |
Total | 17 | 100.00% | 2 | 100.00% |
static int exynos_dp_resume(struct device *dev)
{
return analogix_dp_resume(dev);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Gustavo Fernando Padovan | 15 | 88.24% | 1 | 50.00% |
Yakir Yang | 2 | 11.76% | 1 | 50.00% |
Total | 17 | 100.00% | 2 | 100.00% |
#endif
static const struct dev_pm_ops exynos_dp_pm_ops = {
SET_RUNTIME_PM_OPS(exynos_dp_suspend, exynos_dp_resume, NULL)
};
static const struct of_device_id exynos_dp_match[] = {
{ .compatible = "samsung,exynos5-dp" },
{},
};
MODULE_DEVICE_TABLE(of, exynos_dp_match);
struct platform_driver dp_driver = {
.probe = exynos_dp_probe,
.remove = exynos_dp_remove,
.driver = {
.name = "exynos-dp",
.owner = THIS_MODULE,
.pm = &exynos_dp_pm_ops,
.of_match_table = exynos_dp_match,
},
};
MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
MODULE_DESCRIPTION("Samsung Specific Analogix-DP Driver Extension");
MODULE_LICENSE("GPL v2");
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yakir Yang | 309 | 25.54% | 3 | 7.89% |
Gustavo Fernando Padovan | 231 | 19.09% | 7 | 18.42% |
Ajay Kumar | 160 | 13.22% | 4 | 10.53% |
Inki Dae | 155 | 12.81% | 3 | 7.89% |
Jingoo Han | 122 | 10.08% | 4 | 10.53% |
Sean Paul | 100 | 8.26% | 5 | 13.16% |
Javier Martinez Canillas | 45 | 3.72% | 1 | 2.63% |
Andrzej Hajda | 37 | 3.06% | 3 | 7.89% |
Andrew Bresticker | 22 | 1.82% | 1 | 2.63% |
Krzysztof Kozlowski | 12 | 0.99% | 2 | 5.26% |
Sjoerd Simons | 7 | 0.58% | 1 | 2.63% |
Laurent Pinchart | 5 | 0.41% | 1 | 2.63% |
Ville Syrjälä | 4 | 0.33% | 2 | 5.26% |
Baoyou Xie | 1 | 0.08% | 1 | 2.63% |
Total | 1210 | 100.00% | 38 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.