blob: b2fb9742820fde7f78ef0216d45351da64d6a12a [file] [log] [blame]
Kuogee Hsiehb06e0d72013-12-18 14:12:09 -08001/* Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
Arpita Banerjee841fa062013-05-24 14:59:51 -07002 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions
5 * are 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 copyright
9 * notice, this list of conditions and the following disclaimer in
10 * the documentation and/or other materials provided with the
11 * distribution.
12 * * Neither the name of The Linux Foundation nor the names of its
13 * 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 BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
19 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
22 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
23 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#ifndef _GCDB_DISPLAY_H_
31#define _GCDB_DISPLAY_H_
32
33/*---------------------------------------------------------------------------*/
34/* HEADER files */
35/*---------------------------------------------------------------------------*/
36#include <debug.h>
37#include "include/display_resource.h"
38
39#define TIMING_SIZE 48
40#define REGULATOR_SIZE 28
41#define PHYSICAL_SIZE 16
42#define STRENGTH_SIZE 8
43#define BIST_SIZE 6
44#define LANE_SIZE 45
45
Dhaval Patelbb645c32014-01-03 13:31:09 -080046#define LK_OVERRIDE_PANEL "1:"
47#define LK_OVERRIDE_PANEL_LEN 2
48#define DSI_1_STRING ":1:"
49#define DSI_1_STRING_LEN 3
Dhaval Patel9f61f132013-07-18 14:45:11 -070050
Arpita Banerjee841fa062013-05-24 14:59:51 -070051/*---------------------------------------------------------------------------*/
52/* API */
53/*---------------------------------------------------------------------------*/
54
Kuogee Hsiehb06e0d72013-12-18 14:12:09 -080055int target_backlight_ctrl(struct backlight *bl, uint8_t enable);
Arpita Banerjee0906ffd2013-05-24 16:25:38 -070056int target_panel_clock(uint8_t enable, struct msm_panel_info *pinfo);
Dhaval Patel29f24492013-08-08 20:45:42 -070057int target_panel_reset(uint8_t enable, struct panel_reset_sequence *resetseq,
58 struct msm_panel_info *pinfo);
59int target_ldo_ctrl(uint8_t enable);
Arpita Banerjee841fa062013-05-24 14:59:51 -070060
Aravind Venkateswaran927e9102014-02-25 17:16:49 -080061int gcdb_display_init(const char *panel_name, uint32_t rev, void *base);
Arpita Banerjee841fa062013-05-24 14:59:51 -070062void gcdb_display_shutdown();
63
64#endif /*_GCDB_DISPLAY_H_ */