mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 08:46:49 +07:00
9338203c4f
<drm/drm_crtc.h> used to define most of the in-kernel KMS API. It has now been split into separate files for each object type, but still includes most other KMS headers to avoid breaking driver compilation. As a step towards fixing that problem, remove the inclusion of <drm/drm_encoder.h> from <drm/drm_crtc.h> and include it instead where appropriate. Also remove the forward declarations of the drm_encoder and drm_encoder_helper_funcs structures from <drm/drm_crtc.h> as they're not needed in the header. <drm/drm_encoder.h> now has to include <drm/drm_mode.h> and contain a forward declaration of struct drm_encoder in order to allow including it as the first header in a compilation unit. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Reviewed-by: Sinclair Yeh <syeh@vmware.com> # For vmwgfx Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Archit Taneja <architt@codeaurora.org> Link: http://patchwork.freedesktop.org/patch/msgid/1481709550-29226-2-git-send-email-laurent.pinchart+renesas@ideasonboard.com
59 lines
1.4 KiB
C
59 lines
1.4 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.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 base;
|
|
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, base)
|
|
|
|
#define rcar_encoder_to_drm_encoder(e) (&(e)->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__ */
|