blob: 3b112e3f743dd01be64f6dd60a7f6f7b111c3a22 [file] [log] [blame]
Kuogee Hsieh5accef12013-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 Patel7b9d6782014-01-03 13:31:09 -080046#define DSI_1_STRING ":1:"
47#define DSI_1_STRING_LEN 3
Dhaval Patel9f61f132013-07-18 14:45:11 -070048
Arpita Banerjee841fa062013-05-24 14:59:51 -070049/*---------------------------------------------------------------------------*/
50/* API */
51/*---------------------------------------------------------------------------*/
52
Kuogee Hsieh5accef12013-12-18 14:12:09 -080053int target_backlight_ctrl(struct backlight *bl, uint8_t enable);
Arpita Banerjee0906ffd2013-05-24 16:25:38 -070054int target_panel_clock(uint8_t enable, struct msm_panel_info *pinfo);
Dhaval Patel29f24492013-08-08 20:45:42 -070055int target_panel_reset(uint8_t enable, struct panel_reset_sequence *resetseq,
56 struct msm_panel_info *pinfo);
Kuogee Hsieh93bcff62014-08-22 14:02:08 -070057int target_ldo_ctrl(uint8_t enable, struct msm_panel_info *pinfo);
Arpita Banerjee841fa062013-05-24 14:59:51 -070058
Aravind Venkateswarand494f962014-02-25 17:16:49 -080059int gcdb_display_init(const char *panel_name, uint32_t rev, void *base);
Veera Sundaram Sankaranc95d6752014-07-31 11:49:52 -070060bool gcdb_display_cmdline_arg(char *panel_name, char *pbuf, uint16_t buf_size);
Arpita Banerjee841fa062013-05-24 14:59:51 -070061void gcdb_display_shutdown();
62
63#endif /*_GCDB_DISPLAY_H_ */