Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
0004  */
0005 
0006 #ifndef _DP_AUX_H_
0007 #define _DP_AUX_H_
0008 
0009 #include "dp_catalog.h"
0010 #include <drm/display/drm_dp_helper.h>
0011 
0012 int dp_aux_register(struct drm_dp_aux *dp_aux);
0013 void dp_aux_unregister(struct drm_dp_aux *dp_aux);
0014 void dp_aux_isr(struct drm_dp_aux *dp_aux);
0015 void dp_aux_init(struct drm_dp_aux *dp_aux);
0016 void dp_aux_deinit(struct drm_dp_aux *dp_aux);
0017 void dp_aux_reconfig(struct drm_dp_aux *dp_aux);
0018 
0019 struct drm_dp_aux *dp_aux_get(struct device *dev, struct dp_catalog *catalog,
0020                   bool is_edp);
0021 void dp_aux_put(struct drm_dp_aux *aux);
0022 
0023 #endif /*__DP_AUX_H_*/