blob: 8db51fb131dbc1f258f69c0bdaf934e523acb445 [file] [log] [blame]
Boris Brezillon1a396782015-01-06 11:13:28 +01001/*
2 * Copyright (C) 2014 Traphandler
3 * Copyright (C) 2014 Free Electrons
4 * Copyright (C) 2014 Atmel
5 *
6 * Author: Jean-Jacques Hiblot <jjhiblot@traphandler.com>
7 * Author: Boris BREZILLON <boris.brezillon@free-electrons.com>
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published by
11 * the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include <linux/of_graph.h>
23
24#include <drm/drmP.h>
Rob Herringebc94462017-03-29 13:55:46 -050025#include <drm/drm_of.h>
Eric Anholt96160a82017-05-11 11:31:28 -070026#include <drm/drm_bridge.h>
Boris Brezillon1a396782015-01-06 11:13:28 +010027
28#include "atmel_hlcdc_dc.h"
29
Boris Brezillon1a396782015-01-06 11:13:28 +010030static const struct drm_encoder_funcs atmel_hlcdc_panel_encoder_funcs = {
Eric Anholt510fc3c2017-05-11 11:31:27 -070031 .destroy = drm_encoder_cleanup,
Boris Brezillon1a396782015-01-06 11:13:28 +010032};
33
Boris Brezillon6bee9b72017-05-18 14:35:21 +020034static int atmel_hlcdc_attach_endpoint(struct drm_device *dev, int endpoint)
Boris Brezillon17a8e032016-01-06 10:16:32 +010035{
Eric Anholt96160a82017-05-11 11:31:28 -070036 struct drm_encoder *encoder;
Boris Brezillon17a8e032016-01-06 10:16:32 +010037 struct drm_panel *panel;
38 struct drm_bridge *bridge;
39 int ret;
40
Boris Brezillon6bee9b72017-05-18 14:35:21 +020041 ret = drm_of_find_panel_or_bridge(dev->dev->of_node, 0, endpoint,
42 &panel, &bridge);
43 if (ret)
44 return ret;
45
Eric Anholt96160a82017-05-11 11:31:28 -070046 encoder = devm_kzalloc(dev->dev, sizeof(*encoder), GFP_KERNEL);
47 if (!encoder)
Boris Brezillon1a396782015-01-06 11:13:28 +010048 return -EINVAL;
49
Eric Anholt96160a82017-05-11 11:31:28 -070050 ret = drm_encoder_init(dev, encoder,
Boris Brezillon1a396782015-01-06 11:13:28 +010051 &atmel_hlcdc_panel_encoder_funcs,
Boris Brezillonabfc9362015-12-31 18:24:09 +010052 DRM_MODE_ENCODER_NONE, NULL);
Boris Brezillon1a396782015-01-06 11:13:28 +010053 if (ret)
54 return ret;
55
Eric Anholt96160a82017-05-11 11:31:28 -070056 encoder->possible_crtcs = 0x1;
Boris Brezillon1a396782015-01-06 11:13:28 +010057
Boris Brezillon17a8e032016-01-06 10:16:32 +010058 if (panel) {
Eric Anholt96160a82017-05-11 11:31:28 -070059 bridge = drm_panel_bridge_add(panel, DRM_MODE_CONNECTOR_Unknown);
60 if (IS_ERR(bridge))
61 return PTR_ERR(bridge);
Boris Brezillon17a8e032016-01-06 10:16:32 +010062 }
63
Boris Brezillon17a8e032016-01-06 10:16:32 +010064 if (bridge) {
Eric Anholt96160a82017-05-11 11:31:28 -070065 ret = drm_bridge_attach(encoder, bridge, NULL);
Boris Brezillon17a8e032016-01-06 10:16:32 +010066 if (!ret)
67 return 0;
Eric Anholt96160a82017-05-11 11:31:28 -070068
69 if (panel)
70 drm_panel_bridge_remove(bridge);
Boris Brezillon17a8e032016-01-06 10:16:32 +010071 }
Boris Brezillon1a396782015-01-06 11:13:28 +010072
Eric Anholt96160a82017-05-11 11:31:28 -070073 drm_encoder_cleanup(encoder);
Boris Brezillon1a396782015-01-06 11:13:28 +010074
75 return ret;
76}
77
78int atmel_hlcdc_create_outputs(struct drm_device *dev)
79{
Boris Brezillon6bee9b72017-05-18 14:35:21 +020080 int endpoint, ret = 0;
Boris Brezillon1a396782015-01-06 11:13:28 +010081
Boris Brezillon6bee9b72017-05-18 14:35:21 +020082 for (endpoint = 0; !ret; endpoint++)
83 ret = atmel_hlcdc_attach_endpoint(dev, endpoint);
Boris Brezillon1a396782015-01-06 11:13:28 +010084
Boris Brezillon6bee9b72017-05-18 14:35:21 +020085 /* At least one device was successfully attached.*/
86 if (ret == -ENODEV && endpoint)
87 return 0;
Boris Brezillon1a396782015-01-06 11:13:28 +010088
Rob Herringebc94462017-03-29 13:55:46 -050089 return ret;
Boris Brezillon1a396782015-01-06 11:13:28 +010090}