mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Now as the msm_dp_catalog module became nearly empty, drop it, accessing registers directly from the corresponding submodules. Reviewed-by: Stephen Boyd <swboyd@chromium.org> Tested-by: Stephen Boyd <swboyd@chromium.org> # sc7180-trogdor Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Patchwork: https://patchwork.freedesktop.org/patch/654332/ Link: https://lore.kernel.org/r/20250518-fd-dp-audio-fixup-v6-11-2f0ec3ec000d@oss.qualcomm.com
33 lines
1.2 KiB
C
33 lines
1.2 KiB
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 <drm/display/drm_dp_helper.h>
|
|
|
|
int msm_dp_aux_register(struct drm_dp_aux *msm_dp_aux);
|
|
void msm_dp_aux_unregister(struct drm_dp_aux *msm_dp_aux);
|
|
irqreturn_t msm_dp_aux_isr(struct drm_dp_aux *msm_dp_aux, u32 isr);
|
|
void msm_dp_aux_enable_xfers(struct drm_dp_aux *msm_dp_aux, bool enabled);
|
|
void msm_dp_aux_init(struct drm_dp_aux *msm_dp_aux);
|
|
void msm_dp_aux_deinit(struct drm_dp_aux *msm_dp_aux);
|
|
void msm_dp_aux_reconfig(struct drm_dp_aux *msm_dp_aux);
|
|
|
|
void msm_dp_aux_hpd_enable(struct drm_dp_aux *msm_dp_aux);
|
|
void msm_dp_aux_hpd_disable(struct drm_dp_aux *msm_dp_aux);
|
|
void msm_dp_aux_hpd_intr_enable(struct drm_dp_aux *msm_dp_aux);
|
|
void msm_dp_aux_hpd_intr_disable(struct drm_dp_aux *msm_dp_aux);
|
|
u32 msm_dp_aux_get_hpd_intr_status(struct drm_dp_aux *msm_dp_aux);
|
|
u32 msm_dp_aux_is_link_connected(struct drm_dp_aux *msm_dp_aux);
|
|
|
|
struct phy;
|
|
struct drm_dp_aux *msm_dp_aux_get(struct device *dev,
|
|
struct phy *phy,
|
|
bool is_edp,
|
|
void __iomem *aux_base);
|
|
void msm_dp_aux_put(struct drm_dp_aux *aux);
|
|
|
|
#endif /*__DP_AUX_H_*/
|