connector-analog-tv.c 3.08 KB
Newer Older
1 2 3
/*
 * Analog TV Connector driver
 *
4
 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
5 6 7 8 9 10 11 12 13 14
 * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 */

#include <linux/slab.h>
#include <linux/module.h>
#include <linux/platform_device.h>
15
#include <linux/of.h>
16

17 18
#include "../dss/omapdss.h"

19 20 21 22
struct panel_drv_data {
	struct omap_dss_device dssdev;

	struct device *dev;
23 24
};

25 26
#define to_panel_data(x) container_of(x, struct panel_drv_data, dssdev)

27 28
static int tvc_connect(struct omap_dss_device *src,
		       struct omap_dss_device *dst)
29 30 31 32
{
	return 0;
}

33 34
static void tvc_disconnect(struct omap_dss_device *src,
			   struct omap_dss_device *dst)
35 36 37 38 39 40
{
}

static int tvc_enable(struct omap_dss_device *dssdev)
{
	struct panel_drv_data *ddata = to_panel_data(dssdev);
41
	struct omap_dss_device *src = dssdev->src;
42 43 44 45 46 47 48 49 50 51
	int r;

	dev_dbg(ddata->dev, "enable\n");

	if (!omapdss_device_is_connected(dssdev))
		return -ENODEV;

	if (omapdss_device_is_enabled(dssdev))
		return 0;

52
	r = src->ops->enable(src);
53 54 55 56 57 58 59 60 61 62 63
	if (r)
		return r;

	dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;

	return r;
}

static void tvc_disable(struct omap_dss_device *dssdev)
{
	struct panel_drv_data *ddata = to_panel_data(dssdev);
64
	struct omap_dss_device *src = dssdev->src;
65 66 67 68 69 70

	dev_dbg(ddata->dev, "disable\n");

	if (!omapdss_device_is_enabled(dssdev))
		return;

71
	src->ops->disable(src);
72 73 74 75

	dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
}

76
static const struct omap_dss_device_ops tvc_ops = {
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
	.connect		= tvc_connect,
	.disconnect		= tvc_disconnect,

	.enable			= tvc_enable,
	.disable		= tvc_disable,
};

static int tvc_probe(struct platform_device *pdev)
{
	struct panel_drv_data *ddata;
	struct omap_dss_device *dssdev;

	ddata = devm_kzalloc(&pdev->dev, sizeof(*ddata), GFP_KERNEL);
	if (!ddata)
		return -ENOMEM;

	platform_set_drvdata(pdev, ddata);
	ddata->dev = &pdev->dev;

	dssdev = &ddata->dssdev;
97
	dssdev->ops = &tvc_ops;
98 99 100
	dssdev->dev = &pdev->dev;
	dssdev->type = OMAP_DISPLAY_TYPE_VENC;
	dssdev->owner = THIS_MODULE;
101
	dssdev->of_ports = BIT(0);
102

103
	omapdss_display_init(dssdev);
104
	omapdss_device_register(dssdev);
105 106 107 108 109 110 111 112 113

	return 0;
}

static int __exit tvc_remove(struct platform_device *pdev)
{
	struct panel_drv_data *ddata = platform_get_drvdata(pdev);
	struct omap_dss_device *dssdev = &ddata->dssdev;

114
	omapdss_device_unregister(&ddata->dssdev);
115 116 117 118 119 120

	tvc_disable(dssdev);

	return 0;
}

121 122 123 124 125 126
static const struct of_device_id tvc_of_match[] = {
	{ .compatible = "omapdss,svideo-connector", },
	{ .compatible = "omapdss,composite-video-connector", },
	{},
};

127 128
MODULE_DEVICE_TABLE(of, tvc_of_match);

129 130 131 132 133
static struct platform_driver tvc_connector_driver = {
	.probe	= tvc_probe,
	.remove	= __exit_p(tvc_remove),
	.driver	= {
		.name	= "connector-analog-tv",
134
		.of_match_table = tvc_of_match,
135
		.suppress_bind_attrs = true,
136 137 138 139 140 141 142 143
	},
};

module_platform_driver(tvc_connector_driver);

MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@ti.com>");
MODULE_DESCRIPTION("Analog TV Connector driver");
MODULE_LICENSE("GPL");