blob: 9ca4abfc5f8558f90cbee9ae23181e0d9099ccdb [file] [log] [blame]
Jayant Shekhar3ecc0f82014-03-27 13:30:41 +05301/* Copyright (c) 2011-2014, The Linux Foundation. All rights reserved.
Aparna Mallavarapuf712f5e2011-08-04 21:11:00 +05302 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
5 * met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above
9 * copyright notice, this list of conditions and the following
10 * disclaimer in the documentation and/or other materials provided
11 * with the distribution.
Duy Truongf3ac7b32013-02-13 01:07:28 -080012 * * Neither the name of The Linux Foundation nor the names of its
Aparna Mallavarapuf712f5e2011-08-04 21:11:00 +053013 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 */
29
30#include <dev/fbcon.h>
Asaf Penso6c58a6b2013-07-14 19:57:29 +030031#include <msm_panel.h>
32
Aparna Mallavarapuf712f5e2011-08-04 21:11:00 +053033//TODO: Make a global PASS / FAIL define
34#define PASS 0
35#define FAIL 1
36
37int mdp_setup_dma_p_video_mode(unsigned short disp_width,
Ajay Dudanib01e5062011-12-03 23:23:42 -080038 unsigned short disp_height,
39 unsigned short img_width,
40 unsigned short img_height,
41 unsigned short hsync_porch0_fp,
42 unsigned short hsync_porch0_bp,
43 unsigned short vsync_porch0_fp,
44 unsigned short vsync_porch0_bp,
45 unsigned short hsync_width,
46 unsigned short vsync_width,
47 unsigned long input_img_addr,
48 unsigned short img_width_full_size,
49 unsigned short pack_pattern,
50 unsigned char ystride);
Aparna Mallavarapuf712f5e2011-08-04 21:11:00 +053051
52void mdp_disable(void);
53void mdp_shutdown(void);
Shashank Mittal4bfb2e32012-04-16 10:56:27 -070054void mdp_set_revision(int rev);
55int mdp_get_revision();
Asaf Penso6c58a6b2013-07-14 19:57:29 +030056
57/* defining no-op functions that are implemented only for mdp5 */
58int mdp_edp_config(struct msm_panel_info *pinfo, struct fbcon_config *fb);
Jayant Shekhar3ecc0f82014-03-27 13:30:41 +053059int mdp_edp_on(struct msm_panel_info *pinfo);
Asaf Penso6c58a6b2013-07-14 19:57:29 +030060int mdp_edp_off(void);