- Fourcc modifier for tiled but not compressed layouts - Support for userspace allocated IOVA (GPU virtual address) - Devfreq clamp_to_idle fix - DPU: DSC (Display Stream Compression) support - DPU: inline rotation support on SC7280 - DPU: update DP timings to follow vendor recommendations - DP, DPU: add support for wide bus (on newer chipsets) - DP: eDP support - Merge DPU1 and MDP5 MDSS driver, make dpu/mdp device the master component - MDSS: optionally reset the IP block at the bootup to drop bootloader state - Properly register and unregister internal bridges in the DRM framework - Complete DPU IRQ cleanup - DP: conversion to use drm_bridge and drm_bridge_connector - eDP: drop old eDP parts again - DPU: writeback support - Misc small fixes Signed-off-by: Dave Airlie <airlied@redhat.com> From: Rob Clark <robdclark@gmail.com> Link: https://patchwork.freedesktop.org/patch/msgid/CAF6AEGvJCr_1D8d0dgmyQC5HD4gmXeZw=bFV_CNCfceZbpMxRw@mail.gmail.com
23 lines
677 B
C
23 lines
677 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _DP_AUX_H_
|
|
#define _DP_AUX_H_
|
|
|
|
#include "dp_catalog.h"
|
|
#include <drm/display/drm_dp_helper.h>
|
|
|
|
int dp_aux_register(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_unregister(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_isr(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_init(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_deinit(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_reconfig(struct drm_dp_aux *dp_aux);
|
|
|
|
struct drm_dp_aux *dp_aux_get(struct device *dev, struct dp_catalog *catalog,
|
|
bool is_edp);
|
|
void dp_aux_put(struct drm_dp_aux *aux);
|
|
|
|
#endif /*__DP_AUX_H_*/
|