arcpgu_hdmi.c 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * ARC PGU DRM driver.
 *
 * Copyright (C) 2016 Synopsys, Inc. (www.synopsys.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.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

17
#include <drm/drm_crtc.h>
18 19 20 21 22 23 24 25 26 27
#include <drm/drm_encoder_slave.h>

#include "arcpgu.h"

static struct drm_encoder_funcs arcpgu_drm_encoder_funcs = {
	.destroy = drm_encoder_cleanup,
};

int arcpgu_drm_hdmi_init(struct drm_device *drm, struct device_node *np)
{
28 29 30 31
	struct drm_encoder *encoder;
	struct drm_bridge *bridge;

	int ret = 0;
32 33 34 35 36

	encoder = devm_kzalloc(drm->dev, sizeof(*encoder), GFP_KERNEL);
	if (encoder == NULL)
		return -ENOMEM;

37 38 39
	/* Locate drm bridge from the hdmi encoder DT node */
	bridge = of_drm_find_bridge(np);
	if (!bridge)
40 41
		return -EPROBE_DEFER;

42 43 44
	encoder->possible_crtcs = 1;
	encoder->possible_clones = 0;
	ret = drm_encoder_init(drm, encoder, &arcpgu_drm_encoder_funcs,
45 46 47 48
			       DRM_MODE_ENCODER_TMDS, NULL);
	if (ret)
		return ret;

49 50 51
	/* Link drm_bridge to encoder */
	bridge->encoder = encoder;
	encoder->bridge = bridge;
52

53 54 55
	ret = drm_bridge_attach(drm, bridge);
	if (ret)
		drm_encoder_cleanup(encoder);
56 57 58

	return ret;
}