dpu_encoder_phys_wb is the only user of encoder's atomic_check callback. Move corresponding checks to drm_writeback_connector's implementation and drop the dpu_encoder_phys_wb_atomic_check() function. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com> Tested-by: Paloma Arellano <quic_parellan@quicinc.com> Patchwork: https://patchwork.freedesktop.org/patch/577524/ Link: https://lore.kernel.org/r/20240208-fd_remove_phys_ops_atomic_mode_set-v4-4-caf5dcd125c0@linaro.org
32 lines
806 B
C
32 lines
806 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _DPU_WRITEBACK_H
|
|
#define _DPU_WRITEBACK_H
|
|
|
|
#include <drm/drm_crtc.h>
|
|
#include <drm/drm_file.h>
|
|
#include <drm/drm_probe_helper.h>
|
|
#include <drm/drm_writeback.h>
|
|
|
|
#include "msm_drv.h"
|
|
#include "dpu_kms.h"
|
|
#include "dpu_encoder_phys.h"
|
|
|
|
struct dpu_wb_connector {
|
|
struct drm_writeback_connector base;
|
|
struct drm_encoder *wb_enc;
|
|
u32 maxlinewidth;
|
|
};
|
|
|
|
static inline struct dpu_wb_connector *to_dpu_wb_conn(struct drm_writeback_connector *conn)
|
|
{
|
|
return container_of(conn, struct dpu_wb_connector, base);
|
|
}
|
|
|
|
int dpu_writeback_init(struct drm_device *dev, struct drm_encoder *enc,
|
|
const u32 *format_list, u32 num_formats, u32 maxlinewidth);
|
|
|
|
#endif /*_DPU_WRITEBACK_H */
|