6db4831e98
Android 14
35 lines
922 B
C
35 lines
922 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
* Author: Joey Pan <joey.pan@mediatek.com>
|
|
*/
|
|
|
|
#ifndef __LCM_COMMON_H__
|
|
#define __LCM_COMMON_H__
|
|
|
|
#include "lcm_drv.h"
|
|
|
|
#if defined(MTK_LCM_DEVICE_TREE_SUPPORT)
|
|
enum LCM_STATUS {
|
|
LCM_STATUS_OK = 0,
|
|
LCM_STATUS_ERROR,
|
|
};
|
|
|
|
|
|
void lcm_common_parse_dts(const struct LCM_DTS *DTS,
|
|
unsigned char force_update);
|
|
void lcm_common_set_util_funcs(const struct LCM_UTIL_FUNCS *util);
|
|
void lcm_common_get_params(LCM_PARAMS *params);
|
|
void lcm_common_init(void);
|
|
void lcm_common_suspend(void);
|
|
void lcm_common_resume(void);
|
|
void lcm_common_update(unsigned int x, unsigned int y, unsigned int width,
|
|
unsigned int height);
|
|
void lcm_common_setbacklight(unsigned int level);
|
|
void lcm_common_setbacklight_cmdq(void *handle, unsigned int level);
|
|
unsigned int lcm_common_compare_id(void);
|
|
unsigned int lcm_common_ata_check(unsigned char *buffer);
|
|
#endif
|
|
|
|
#endif
|