mdfld_dsi_dpi.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright © 2010 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. *
  23. * Authors:
  24. * jim liu <jim.liu@intel.com>
  25. * Jackie Li<yaodong.li@intel.com>
  26. */
  27. #ifndef __MDFLD_DSI_DPI_H__
  28. #define __MDFLD_DSI_DPI_H__
  29. #include "mdfld_dsi_output.h"
  30. #include "mdfld_output.h"
  31. struct mdfld_dsi_dpi_timing {
  32. u16 hsync_count;
  33. u16 hbp_count;
  34. u16 hfp_count;
  35. u16 hactive_count;
  36. u16 vsync_count;
  37. u16 vbp_count;
  38. u16 vfp_count;
  39. };
  40. struct mdfld_dsi_dpi_output {
  41. struct mdfld_dsi_encoder base;
  42. struct drm_device *dev;
  43. int panel_on;
  44. int first_boot;
  45. const struct panel_funcs *p_funcs;
  46. };
  47. #define MDFLD_DSI_DPI_OUTPUT(dsi_encoder)\
  48. container_of(dsi_encoder, struct mdfld_dsi_dpi_output, base)
  49. /* Export functions */
  50. extern int mdfld_dsi_dpi_timing_calculation(struct drm_display_mode *mode,
  51. struct mdfld_dsi_dpi_timing *dpi_timing,
  52. int num_lane, int bpp);
  53. extern struct mdfld_dsi_encoder *mdfld_dsi_dpi_init(struct drm_device *dev,
  54. struct mdfld_dsi_connector *dsi_connector,
  55. const struct panel_funcs *p_funcs);
  56. /* MDFLD DPI helper functions */
  57. extern void mdfld_dsi_dpi_dpms(struct drm_encoder *encoder, int mode);
  58. extern bool mdfld_dsi_dpi_mode_fixup(struct drm_encoder *encoder,
  59. const struct drm_display_mode *mode,
  60. struct drm_display_mode *adjusted_mode);
  61. extern void mdfld_dsi_dpi_prepare(struct drm_encoder *encoder);
  62. extern void mdfld_dsi_dpi_commit(struct drm_encoder *encoder);
  63. extern void mdfld_dsi_dpi_mode_set(struct drm_encoder *encoder,
  64. struct drm_display_mode *mode,
  65. struct drm_display_mode *adjusted_mode);
  66. extern void mdfld_dsi_dpi_turn_on(struct mdfld_dsi_dpi_output *output,
  67. int pipe);
  68. extern void mdfld_dsi_dpi_controller_init(struct mdfld_dsi_config *dsi_config,
  69. int pipe);
  70. #endif /*__MDFLD_DSI_DPI_H__*/