1*4882a593Smuzhiyun /* 2*4882a593Smuzhiyun * Copyright (c) 2010 Intel Corporation 3*4882a593Smuzhiyun * 4*4882a593Smuzhiyun * Permission is hereby granted, free of charge, to any person obtaining a 5*4882a593Smuzhiyun * copy of this software and associated documentation files (the "Software"), 6*4882a593Smuzhiyun * to deal in the Software without restriction, including without limitation 7*4882a593Smuzhiyun * the rights to use, copy, modify, merge, publish, distribute, sublicensen 8*4882a593Smuzhiyun * and/or sell copies of the Software, and to permit persons to whom the 9*4882a593Smuzhiyun * Software is furnished to do so, subject to the following conditions: 10*4882a593Smuzhiyun * 11*4882a593Smuzhiyun * The above copyright notice and this permission notice (including the next 12*4882a593Smuzhiyun * paragraph) shall be included in all copies or substantial portions of the 13*4882a593Smuzhiyun * Software. 14*4882a593Smuzhiyun * 15*4882a593Smuzhiyun * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16*4882a593Smuzhiyun * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17*4882a593Smuzhiyun * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18*4882a593Smuzhiyun * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19*4882a593Smuzhiyun * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20*4882a593Smuzhiyun * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 21*4882a593Smuzhiyun * DEALINGS IN THE SOFTWARE. 22*4882a593Smuzhiyun * 23*4882a593Smuzhiyun * Authors: 24*4882a593Smuzhiyun * Thomas Eaton <thomas.g.eaton@intel.com> 25*4882a593Smuzhiyun * Scott Rowe <scott.m.rowe@intel.com> 26*4882a593Smuzhiyun */ 27*4882a593Smuzhiyun 28*4882a593Smuzhiyun #ifndef MDFLD_OUTPUT_H 29*4882a593Smuzhiyun #define MDFLD_OUTPUT_H 30*4882a593Smuzhiyun 31*4882a593Smuzhiyun #include "psb_drv.h" 32*4882a593Smuzhiyun 33*4882a593Smuzhiyun #define TPO_PANEL_WIDTH 84 34*4882a593Smuzhiyun #define TPO_PANEL_HEIGHT 46 35*4882a593Smuzhiyun #define TMD_PANEL_WIDTH 39 36*4882a593Smuzhiyun #define TMD_PANEL_HEIGHT 71 37*4882a593Smuzhiyun 38*4882a593Smuzhiyun struct mdfld_dsi_config; 39*4882a593Smuzhiyun 40*4882a593Smuzhiyun enum panel_type { 41*4882a593Smuzhiyun TPO_VID, 42*4882a593Smuzhiyun TMD_VID, 43*4882a593Smuzhiyun HDMI, 44*4882a593Smuzhiyun TC35876X, 45*4882a593Smuzhiyun }; 46*4882a593Smuzhiyun 47*4882a593Smuzhiyun struct panel_info { 48*4882a593Smuzhiyun u32 width_mm; 49*4882a593Smuzhiyun u32 height_mm; 50*4882a593Smuzhiyun /* Other info */ 51*4882a593Smuzhiyun }; 52*4882a593Smuzhiyun 53*4882a593Smuzhiyun struct panel_funcs { 54*4882a593Smuzhiyun const struct drm_encoder_helper_funcs *encoder_helper_funcs; 55*4882a593Smuzhiyun struct drm_display_mode * (*get_config_mode)(struct drm_device *); 56*4882a593Smuzhiyun int (*get_panel_info)(struct drm_device *, int, struct panel_info *); 57*4882a593Smuzhiyun int (*reset)(struct drm_device *, int); 58*4882a593Smuzhiyun void (*drv_ic_init)(struct mdfld_dsi_config *dsi_config, int pipe); 59*4882a593Smuzhiyun }; 60*4882a593Smuzhiyun 61*4882a593Smuzhiyun int mdfld_output_init(struct drm_device *dev); 62*4882a593Smuzhiyun 63*4882a593Smuzhiyun struct backlight_device *mdfld_get_backlight_device(void); 64*4882a593Smuzhiyun int mdfld_set_brightness(struct backlight_device *bd); 65*4882a593Smuzhiyun 66*4882a593Smuzhiyun int mdfld_get_panel_type(struct drm_device *dev, int pipe); 67*4882a593Smuzhiyun 68*4882a593Smuzhiyun extern const struct drm_crtc_helper_funcs mdfld_helper_funcs; 69*4882a593Smuzhiyun 70*4882a593Smuzhiyun extern const struct panel_funcs mdfld_tmd_vid_funcs; 71*4882a593Smuzhiyun extern const struct panel_funcs mdfld_tpo_vid_funcs; 72*4882a593Smuzhiyun 73*4882a593Smuzhiyun extern void mdfld_disable_crtc(struct drm_device *dev, int pipe); 74*4882a593Smuzhiyun extern void mdfldWaitForPipeEnable(struct drm_device *dev, int pipe); 75*4882a593Smuzhiyun extern void mdfldWaitForPipeDisable(struct drm_device *dev, int pipe); 76*4882a593Smuzhiyun #endif 77