Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2021 Intel Corporation
0004  */
0005 
0006 #ifndef __VLV_DSI_H__
0007 #define __VLV_DSI_H__
0008 
0009 #include <linux/types.h>
0010 
0011 enum port;
0012 struct drm_i915_private;
0013 struct intel_dsi;
0014 
0015 void vlv_dsi_wait_for_fifo_empty(struct intel_dsi *intel_dsi, enum port port);
0016 enum mipi_dsi_pixel_format pixel_format_from_register_bits(u32 fmt);
0017 void vlv_dsi_init(struct drm_i915_private *dev_priv);
0018 
0019 #endif /* __VLV_DSI_H__ */