mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 09:57:46 +07:00
15b6412bad
All outputs have a 1:1 relationship between connectors and encoders, and the driver is relying on the atomic helpers: we can drop the custom ->best_encoder() implementations and let the core call drm_atomic_helper_best_encoder() for us. Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1465300095-16971-10-git-send-email-boris.brezillon@free-electrons.com
59 lines
1.5 KiB
C
59 lines
1.5 KiB
C
/*
|
|
* rcar_du_encoder.h -- R-Car Display Unit Encoder
|
|
*
|
|
* Copyright (C) 2013-2014 Renesas Electronics Corporation
|
|
*
|
|
* Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.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.
|
|
*/
|
|
|
|
#ifndef __RCAR_DU_ENCODER_H__
|
|
#define __RCAR_DU_ENCODER_H__
|
|
|
|
#include <drm/drm_crtc.h>
|
|
#include <drm/drm_encoder_slave.h>
|
|
|
|
struct rcar_du_device;
|
|
struct rcar_du_hdmienc;
|
|
struct rcar_du_lvdsenc;
|
|
|
|
enum rcar_du_encoder_type {
|
|
RCAR_DU_ENCODER_UNUSED = 0,
|
|
RCAR_DU_ENCODER_NONE,
|
|
RCAR_DU_ENCODER_VGA,
|
|
RCAR_DU_ENCODER_LVDS,
|
|
RCAR_DU_ENCODER_HDMI,
|
|
};
|
|
|
|
struct rcar_du_encoder {
|
|
struct drm_encoder_slave slave;
|
|
enum rcar_du_output output;
|
|
struct rcar_du_hdmienc *hdmi;
|
|
struct rcar_du_lvdsenc *lvds;
|
|
};
|
|
|
|
#define to_rcar_encoder(e) \
|
|
container_of(e, struct rcar_du_encoder, slave.base)
|
|
|
|
#define rcar_encoder_to_drm_encoder(e) (&(e)->slave.base)
|
|
|
|
struct rcar_du_connector {
|
|
struct drm_connector connector;
|
|
struct rcar_du_encoder *encoder;
|
|
};
|
|
|
|
#define to_rcar_connector(c) \
|
|
container_of(c, struct rcar_du_connector, connector)
|
|
|
|
int rcar_du_encoder_init(struct rcar_du_device *rcdu,
|
|
enum rcar_du_encoder_type type,
|
|
enum rcar_du_output output,
|
|
struct device_node *enc_node,
|
|
struct device_node *con_node);
|
|
|
|
#endif /* __RCAR_DU_ENCODER_H__ */
|