mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
input: touchscreen: Import NT36672C touchpanel driver
Signed-off-by: azrim <mirzaspc@gmail.com>
This commit is contained in:
parent
a536d8159a
commit
3adfcb9ef9
@ -1296,4 +1296,6 @@ config TOUCHSCREEN_RAYDIUM_CHIPSET
|
||||
|
||||
If unsure, say N.
|
||||
|
||||
source "drivers/input/touchscreen/nt36xxx_spi/Kconfig"
|
||||
|
||||
endif
|
||||
|
@ -109,3 +109,4 @@ obj-$(CONFIG_TOUCHSCREEN_ST) += st/
|
||||
obj-$(CONFIG_TOUCHSCREEN_HIMAX_CHIPSET) += hxchipset/
|
||||
obj-$(CONFIG_TOUCHSCREEN_SYNAPTICS_TCM) += synaptics_tcm/
|
||||
obj-$(CONFIG_TOUCHSCREEN_RAYDIUM_CHIPSET) += raydium_wt030/
|
||||
obj-$(CONFIG_TOUCHSCREEN_NT36xxx_HOSTDL_SPI) += nt36xxx_spi/
|
||||
|
12
drivers/input/touchscreen/nt36xxx_spi/Kconfig
Normal file
12
drivers/input/touchscreen/nt36xxx_spi/Kconfig
Normal file
@ -0,0 +1,12 @@
|
||||
#
|
||||
# Novatek NT36xxx touchscreen driver configuration
|
||||
#
|
||||
config TOUCHSCREEN_NT36xxx_HOSTDL_SPI
|
||||
tristate "Novatek NT36xxx host download SPI driver"
|
||||
depends on SPI
|
||||
default y
|
||||
help
|
||||
Say Y here if you have a Novatek NT36xxx no flash touchscreen connected
|
||||
to your system by SPI bus.
|
||||
|
||||
If unsure, say N.
|
7
drivers/input/touchscreen/nt36xxx_spi/Makefile
Normal file
7
drivers/input/touchscreen/nt36xxx_spi/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
#
|
||||
# Makefile for the Novatek NT36xxx touchscreen driver.
|
||||
#
|
||||
|
||||
# Each configuration option enables a list of files.
|
||||
|
||||
obj-$(CONFIG_TOUCHSCREEN_NT36xxx_HOSTDL_SPI) += nt36xxx.o nt36xxx_fw_update.o nt36xxx_ext_proc.o nt36xxx_mp_ctrlram.o
|
3367
drivers/input/touchscreen/nt36xxx_spi/nt36xxx.c
Executable file
3367
drivers/input/touchscreen/nt36xxx_spi/nt36xxx.c
Executable file
File diff suppressed because it is too large
Load Diff
306
drivers/input/touchscreen/nt36xxx_spi/nt36xxx.h
Executable file
306
drivers/input/touchscreen/nt36xxx_spi/nt36xxx.h
Executable file
@ -0,0 +1,306 @@
|
||||
/*
|
||||
* Copyright (C) 2010 - 2018 Novatek, Inc.
|
||||
* Copyright (C) 2020 XiaoMi, Inc.
|
||||
* $Revision: 43560 $
|
||||
* $Date: 2019-04-19 11:34:19 +0800 (週五, 19 四月 2019) $
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
*/
|
||||
#ifndef _LINUX_NVT_TOUCH_H
|
||||
#define _LINUX_NVT_TOUCH_H
|
||||
|
||||
#include <linux/delay.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/spi/spi.h>
|
||||
#include <linux/uaccess.h>
|
||||
#include <linux/regulator/consumer.h>
|
||||
|
||||
#ifdef CONFIG_HAS_EARLYSUSPEND
|
||||
#include <linux/earlysuspend.h>
|
||||
#endif
|
||||
|
||||
#include "nt36xxx_mem_map.h"
|
||||
|
||||
#ifdef CONFIG_MTK_SPI
|
||||
/* Please copy mt_spi.h file under mtk spi driver folder */
|
||||
#include "mt_spi.h"
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SPI_MT65XX
|
||||
#include <linux/platform_data/spi-mt65xx.h>
|
||||
#endif
|
||||
|
||||
// include longcheer header
|
||||
#include "../lct_tp_info.h"
|
||||
#include "../lct_tp_selftest.h"
|
||||
#include "../lct_tp_gesture.h"
|
||||
#include "../lct_tp_grip_area.h"
|
||||
#include "../lct_tp_work.h"
|
||||
#include "../lct_tp_palm.h"
|
||||
#ifdef CONFIG_TOUCHSCREEN_XIAOMI_TOUCHFEATURE
|
||||
#include "../xiaomi/xiaomi_touch.h"
|
||||
#endif
|
||||
#define NVT_DEBUG 1
|
||||
|
||||
//---GPIO number---
|
||||
#define NVTTOUCH_RST_PIN 87
|
||||
#define NVTTOUCH_INT_PIN 88
|
||||
|
||||
|
||||
//---INT trigger mode---
|
||||
//#define IRQ_TYPE_EDGE_RISING 1
|
||||
//#define IRQ_TYPE_EDGE_FALLING 2
|
||||
#define INT_TRIGGER_TYPE IRQ_TYPE_EDGE_RISING
|
||||
|
||||
|
||||
//---SPI driver info.---
|
||||
#define NVT_SPI_NAME "NVT-ts"
|
||||
|
||||
#if NVT_DEBUG
|
||||
#define NVT_LOG(fmt, args...) pr_err("[%s] %s %d: " fmt, NVT_SPI_NAME, __func__, __LINE__, ##args)
|
||||
#else
|
||||
#define NVT_LOG(fmt, args...) pr_info("[%s] %s %d: " fmt, NVT_SPI_NAME, __func__, __LINE__, ##args)
|
||||
#endif
|
||||
#define NVT_ERR(fmt, args...) pr_err("[%s] %s %d: " fmt, NVT_SPI_NAME, __func__, __LINE__, ##args)
|
||||
|
||||
//---Input device info.---
|
||||
#define NVT_TS_NAME "NVTCapacitiveTouchScreen"
|
||||
|
||||
|
||||
//---Touch info.---
|
||||
#define TOUCH_DEFAULT_MAX_WIDTH 1080
|
||||
#define TOUCH_DEFAULT_MAX_HEIGHT 2400
|
||||
#define TOUCH_MAX_FINGER_NUM 10
|
||||
#define TOUCH_KEY_NUM 0
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
extern const uint16_t touch_key_array[TOUCH_KEY_NUM];
|
||||
#endif
|
||||
#define TOUCH_FORCE_NUM 1000
|
||||
|
||||
/* Enable only when module have tp reset pin and connected to host */
|
||||
#define NVT_TOUCH_SUPPORT_HW_RST 1
|
||||
|
||||
//---Customerized func.---
|
||||
#define NVT_TOUCH_PROC 1
|
||||
#define NVT_TOUCH_EXT_PROC 1
|
||||
#define NVT_TOUCH_MP 1
|
||||
#define MT_PROTOCOL_B 1
|
||||
#define WAKEUP_GESTURE 1
|
||||
#if WAKEUP_GESTURE
|
||||
extern const uint16_t gesture_key_array[];
|
||||
#endif
|
||||
#define LCT_TP_PALM_EN 1
|
||||
#define BOOT_UPDATE_FIRMWARE 1
|
||||
#define FIRMWARE_NAME_LEN 256
|
||||
#define BOOT_UPDATE_FIRMWARE_NAME "novatek_ts_fw.bin"
|
||||
#define BOOT_UPDATE_TIANMA_FIRMWARE_NAME "novatek_ts_tianma_fw.bin"
|
||||
#define BOOT_UPDATE_HUAXING_FIRMWARE_NAME "novatek_ts_huaxing_fw.bin"
|
||||
#define MP_UPDATE_FIRMWARE_NAME "novatek_ts_mp.bin"
|
||||
#define MP_UPDATE_TIANMA_FIRMWARE_NAME "novatek_ts_tianma_mp.bin"
|
||||
#define MP_UPDATE_HUAXING_FIRMWARE_NAME "novatek_ts_huaxing_mp.bin"
|
||||
|
||||
//---ESD Protect.---
|
||||
#define NVT_TOUCH_ESD_PROTECT 0
|
||||
#define NVT_TOUCH_ESD_CHECK_PERIOD 1500 /* ms */
|
||||
#define NVT_TOUCH_WDT_RECOVERY 1
|
||||
#define NVT_TOUCH_ESD_DISP_RECOVERY 1
|
||||
|
||||
//enable 'check touch vendor' feature
|
||||
#define CHECK_TOUCH_VENDOR
|
||||
|
||||
//enable tp work feature
|
||||
#define LCT_TP_WORK_EN 1
|
||||
|
||||
//enable tp grip area feature
|
||||
#define LCT_TP_GRIP_AREA_EN 1
|
||||
|
||||
/*2019.12.06 longcheer taocheng add for charger mode begin*/
|
||||
/*functions description*/
|
||||
//enable tp usb plugin feature
|
||||
#define NVT_USB_PLUGIN 1
|
||||
|
||||
#if NVT_USB_PLUGIN
|
||||
typedef struct touchscreen_usb_plugin_data {
|
||||
bool valid;
|
||||
bool usb_plugged_in;
|
||||
void (*event_callback)(void);
|
||||
} touchscreen_usb_plugin_data_t;
|
||||
#endif
|
||||
/*2019.12.06 longcheer taocheng add charger mode end*/
|
||||
|
||||
//---Touch Vendor ID---
|
||||
#define TP_VENDOR_UNKNOWN 0x00
|
||||
#define TP_VENDOR_HUAXING 0x01
|
||||
#define TP_VENDOR_TIANMA 0x02
|
||||
|
||||
/* 2019.12.16 longcheer taocheng add (xiaomi game mode) start */
|
||||
#define NVT_REG_MONITOR_MODE 0x7000
|
||||
#define NVT_REG_THDIFF 0x7100
|
||||
#define NVT_REG_SENSIVITY 0x7200
|
||||
#define NVT_REG_EDGE_FILTER_LEVEL 0xBA00
|
||||
#define NVT_REG_EDGE_FILTER_ORIENTATION 0xBC00
|
||||
/* 2019.12.16 longcheer taocheng add (xiaomi game mode) end */
|
||||
|
||||
//new qcom platform use
|
||||
#define _MSM_DRM_NOTIFY_H_
|
||||
|
||||
struct nvt_ts_data {
|
||||
struct spi_device *client;
|
||||
struct input_dev *input_dev;
|
||||
struct delayed_work nvt_fwu_work;
|
||||
uint16_t addr;
|
||||
int8_t phys[32];
|
||||
#if defined(CONFIG_FB)
|
||||
struct workqueue_struct *workqueue;
|
||||
struct work_struct resume_work;
|
||||
#ifdef _MSM_DRM_NOTIFY_H_
|
||||
struct notifier_block drm_notif;
|
||||
#else
|
||||
struct notifier_block fb_notif;
|
||||
#endif
|
||||
#elif defined(CONFIG_HAS_EARLYSUSPEND)
|
||||
struct early_suspend early_suspend;
|
||||
#endif
|
||||
#ifdef CHECK_TOUCH_VENDOR
|
||||
uint8_t touch_vendor_id;
|
||||
#endif
|
||||
uint8_t boot_update_firmware_name[FIRMWARE_NAME_LEN];
|
||||
uint8_t mp_update_firmware_name[FIRMWARE_NAME_LEN];
|
||||
uint8_t fw_ver;
|
||||
uint8_t x_num;
|
||||
uint8_t y_num;
|
||||
uint16_t abs_x_max;
|
||||
uint16_t abs_y_max;
|
||||
uint8_t max_touch_num;
|
||||
uint8_t max_button_num;
|
||||
uint32_t int_trigger_type;
|
||||
int32_t irq_gpio;
|
||||
uint32_t irq_flags;
|
||||
int32_t reset_gpio;
|
||||
uint32_t reset_flags;
|
||||
struct mutex lock;
|
||||
const struct nvt_ts_mem_map *mmap;
|
||||
uint8_t carrier_system;
|
||||
uint8_t hw_crc;
|
||||
uint16_t nvt_pid;
|
||||
uint8_t rbuf[1025];
|
||||
uint8_t *xbuf;
|
||||
struct mutex xbuf_lock;
|
||||
bool irq_enabled;
|
||||
#if WAKEUP_GESTURE
|
||||
bool delay_gesture;
|
||||
bool is_gesture_mode;
|
||||
#ifdef CONFIG_PM
|
||||
bool dev_pm_suspend;
|
||||
struct completion dev_pm_suspend_completion;
|
||||
#endif
|
||||
struct regulator *pwr_vdd; /* IOVCC 1.8V */
|
||||
struct regulator *pwr_lab; /* VSP +5V */
|
||||
struct regulator *pwr_ibb; /* VSN -5V */
|
||||
#endif
|
||||
#ifdef CONFIG_MTK_SPI
|
||||
struct mt_chip_conf spi_ctrl;
|
||||
#endif
|
||||
#ifdef CONFIG_SPI_MT65XX
|
||||
struct mtk_chip_config spi_ctrl;
|
||||
#endif
|
||||
|
||||
/*2019.12.16 longcheer taocheng add (xiaomi game mode) start*/
|
||||
#ifdef CONFIG_TOUCHSCREEN_XIAOMI_TOUCHFEATURE
|
||||
u8 palm_sensor_switch;
|
||||
bool palm_sensor_changed;
|
||||
bool gamemode_enabled;
|
||||
#endif
|
||||
struct mutex reg_lock;
|
||||
struct device *nvt_touch_dev;
|
||||
struct class *nvt_tp_class;
|
||||
/*2019.12.16 longcheer taocheng add (xiaomi game mode) end*/
|
||||
};
|
||||
|
||||
#if NVT_TOUCH_PROC
|
||||
struct nvt_flash_data{
|
||||
rwlock_t lock;
|
||||
};
|
||||
#endif
|
||||
|
||||
typedef enum {
|
||||
RESET_STATE_INIT = 0xA0,// IC reset
|
||||
RESET_STATE_REK, // ReK baseline
|
||||
RESET_STATE_REK_FINISH, // baseline is ready
|
||||
RESET_STATE_NORMAL_RUN, // normal run
|
||||
RESET_STATE_MAX = 0xAF
|
||||
} RST_COMPLETE_STATE;
|
||||
|
||||
typedef enum {
|
||||
EVENT_MAP_HOST_CMD = 0x50,
|
||||
EVENT_MAP_HANDSHAKING_or_SUB_CMD_BYTE = 0x51,
|
||||
EVENT_MAP_RESET_COMPLETE = 0x60,
|
||||
EVENT_MAP_FWINFO = 0x78,
|
||||
EVENT_MAP_PROJECTID = 0x9A,
|
||||
} SPI_EVENT_MAP;
|
||||
|
||||
//---SPI READ/WRITE---
|
||||
#define SPI_WRITE_MASK(a) (a | 0x80)
|
||||
#define SPI_READ_MASK(a) (a & 0x7F)
|
||||
|
||||
#define DUMMY_BYTES (1)
|
||||
#define NVT_TRANSFER_LEN (63*1024)
|
||||
|
||||
typedef enum {
|
||||
NVTWRITE = 0,
|
||||
NVTREAD = 1
|
||||
} NVT_SPI_RW;
|
||||
|
||||
#if NVT_TOUCH_ESD_DISP_RECOVERY
|
||||
#define ILM_CRC_FLAG 0x01
|
||||
#define CRC_DONE 0x04
|
||||
#define F2C_RW_READ 0x00
|
||||
#define F2C_RW_WRITE 0x01
|
||||
#define BIT_F2C_EN 0
|
||||
#define BIT_F2C_RW 1
|
||||
#define BIT_CPU_IF_ADDR_INC 2
|
||||
#define BIT_CPU_POLLING_EN 5
|
||||
#define FFM2CPU_CTL 0x3F280
|
||||
#define F2C_LENGTH 0x3F283
|
||||
#define CPU_IF_ADDR 0x3F284
|
||||
#define FFM_ADDR 0x3F286
|
||||
#define CP_TP_CPU_REQ 0x3F291
|
||||
#define TOUCH_DATA_ADDR 0x20000
|
||||
#define DISP_OFF_ADDR 0x2800
|
||||
#endif /* NVT_TOUCH_ESD_DISP_RECOVERY */
|
||||
|
||||
//---extern structures---
|
||||
extern struct nvt_ts_data *ts;
|
||||
|
||||
//---extern functions---
|
||||
int32_t CTP_SPI_READ(struct spi_device *client, uint8_t *buf, uint16_t len);
|
||||
int32_t CTP_SPI_WRITE(struct spi_device *client, uint8_t *buf, uint16_t len);
|
||||
void nvt_bootloader_reset(void);
|
||||
void nvt_eng_reset(void);
|
||||
void nvt_sw_reset(void);
|
||||
void nvt_sw_reset_idle(void);
|
||||
void nvt_boot_ready(void);
|
||||
void nvt_bld_crc_enable(void);
|
||||
void nvt_fw_crc_enable(void);
|
||||
int32_t nvt_update_firmware(char *firmware_name);
|
||||
int32_t nvt_check_fw_reset_state(RST_COMPLETE_STATE check_reset_state);
|
||||
int32_t nvt_get_fw_info(void);
|
||||
int32_t nvt_clear_fw_status(void);
|
||||
int32_t nvt_check_fw_status(void);
|
||||
int32_t nvt_set_page(uint32_t addr);
|
||||
int32_t nvt_write_addr(uint32_t addr, uint8_t data);
|
||||
#if NVT_TOUCH_ESD_PROTECT
|
||||
extern void nvt_esd_check_enable(uint8_t enable);
|
||||
#endif /* #if NVT_TOUCH_ESD_PROTECT */
|
||||
|
||||
#endif /* _LINUX_NVT_TOUCH_H */
|
2293
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_ext_proc.c
Normal file
2293
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_ext_proc.c
Normal file
File diff suppressed because it is too large
Load Diff
1177
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_fw_update.c
Executable file
1177
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_fw_update.c
Executable file
File diff suppressed because it is too large
Load Diff
300
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_mem_map.h
Normal file
300
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_mem_map.h
Normal file
@ -0,0 +1,300 @@
|
||||
/*
|
||||
* Copyright (C) 2010 - 2018 Novatek, Inc.
|
||||
* Copyright (C) 2020 XiaoMi, Inc.
|
||||
* $Revision: 43560 $
|
||||
* $Date: 2019-04-19 11:34:19 +0800 (週五, 19 四月 2019) $
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
*/
|
||||
|
||||
struct nvt_ts_mem_map {
|
||||
uint32_t EVENT_BUF_ADDR;
|
||||
uint32_t RAW_PIPE0_ADDR;
|
||||
uint32_t RAW_PIPE1_ADDR;
|
||||
uint32_t BASELINE_ADDR;
|
||||
uint32_t BASELINE_BTN_ADDR;
|
||||
uint32_t DIFF_PIPE0_ADDR;
|
||||
uint32_t DIFF_PIPE1_ADDR;
|
||||
uint32_t RAW_BTN_PIPE0_ADDR;
|
||||
uint32_t RAW_BTN_PIPE1_ADDR;
|
||||
uint32_t DIFF_BTN_PIPE0_ADDR;
|
||||
uint32_t DIFF_BTN_PIPE1_ADDR;
|
||||
uint32_t READ_FLASH_CHECKSUM_ADDR;
|
||||
uint32_t RW_FLASH_DATA_ADDR;
|
||||
/* Phase 2 Host Download */
|
||||
uint32_t BOOT_RDY_ADDR;
|
||||
uint32_t POR_CD_ADDR;
|
||||
/* BLD CRC */
|
||||
uint32_t BLD_LENGTH_ADDR;
|
||||
uint32_t ILM_LENGTH_ADDR;
|
||||
uint32_t DLM_LENGTH_ADDR;
|
||||
uint32_t BLD_DES_ADDR;
|
||||
uint32_t ILM_DES_ADDR;
|
||||
uint32_t DLM_DES_ADDR;
|
||||
uint32_t G_ILM_CHECKSUM_ADDR;
|
||||
uint32_t G_DLM_CHECKSUM_ADDR;
|
||||
uint32_t R_ILM_CHECKSUM_ADDR;
|
||||
uint32_t R_DLM_CHECKSUM_ADDR;
|
||||
uint32_t BLD_CRC_EN_ADDR;
|
||||
uint32_t DMA_CRC_EN_ADDR;
|
||||
uint32_t BLD_ILM_DLM_CRC_ADDR;
|
||||
uint32_t DMA_CRC_FLAG_ADDR;
|
||||
};
|
||||
|
||||
struct nvt_ts_hw_info {
|
||||
uint8_t carrier_system;
|
||||
uint8_t hw_crc;
|
||||
};
|
||||
|
||||
static const struct nvt_ts_mem_map NT36526_memory_map = {
|
||||
.EVENT_BUF_ADDR = 0x22D00,
|
||||
.RAW_PIPE0_ADDR = 0x24000,
|
||||
.RAW_PIPE1_ADDR = 0x24000,
|
||||
.BASELINE_ADDR = 0x21758,
|
||||
.BASELINE_BTN_ADDR = 0,
|
||||
.DIFF_PIPE0_ADDR = 0x20AB0,
|
||||
.DIFF_PIPE1_ADDR = 0x24AB0,
|
||||
.RAW_BTN_PIPE0_ADDR = 0,
|
||||
.RAW_BTN_PIPE1_ADDR = 0,
|
||||
.DIFF_BTN_PIPE0_ADDR = 0,
|
||||
.DIFF_BTN_PIPE1_ADDR = 0,
|
||||
.READ_FLASH_CHECKSUM_ADDR = 0x24000,
|
||||
.RW_FLASH_DATA_ADDR = 0x24002,
|
||||
/* Phase 2 Host Download */
|
||||
.BOOT_RDY_ADDR = 0x3F10D,
|
||||
/* BLD CRC */
|
||||
.BLD_LENGTH_ADDR = 0x3F138, //0x3F138 ~ 0x3F13A (3 bytes)
|
||||
.ILM_LENGTH_ADDR = 0x3F118, //0x3F118 ~ 0x3F11A (3 bytes)
|
||||
.DLM_LENGTH_ADDR = 0x3F130, //0x3F130 ~ 0x3F132 (3 bytes)
|
||||
.BLD_DES_ADDR = 0x3F114, //0x3F114 ~ 0x3F116 (3 bytes)
|
||||
.ILM_DES_ADDR = 0x3F128, //0x3F128 ~ 0x3F12A (3 bytes)
|
||||
.DLM_DES_ADDR = 0x3F12C, //0x3F12C ~ 0x3F12E (3 bytes)
|
||||
.G_ILM_CHECKSUM_ADDR = 0x3F100, //0x3F100 ~ 0x3F103 (4 bytes)
|
||||
.G_DLM_CHECKSUM_ADDR = 0x3F104, //0x3F104 ~ 0x3F107 (4 bytes)
|
||||
.R_ILM_CHECKSUM_ADDR = 0x3F120, //0x3F120 ~ 0x3F123 (4 bytes)
|
||||
.R_DLM_CHECKSUM_ADDR = 0x3F124, //0x3F124 ~ 0x3F127 (4 bytes)
|
||||
.BLD_CRC_EN_ADDR = 0x3F30E,
|
||||
.DMA_CRC_EN_ADDR = 0x3F136,
|
||||
.BLD_ILM_DLM_CRC_ADDR = 0x3F133,
|
||||
.DMA_CRC_FLAG_ADDR = 0x3F134,
|
||||
};
|
||||
|
||||
|
||||
static const struct nvt_ts_mem_map NT36675_memory_map = {
|
||||
.EVENT_BUF_ADDR = 0x22D00,
|
||||
.RAW_PIPE0_ADDR = 0x24000,
|
||||
.RAW_PIPE1_ADDR = 0x24000,
|
||||
.BASELINE_ADDR = 0x21B90,
|
||||
.BASELINE_BTN_ADDR = 0,
|
||||
.DIFF_PIPE0_ADDR = 0x20C60,
|
||||
.DIFF_PIPE1_ADDR = 0x24C60,
|
||||
.RAW_BTN_PIPE0_ADDR = 0,
|
||||
.RAW_BTN_PIPE1_ADDR = 0,
|
||||
.DIFF_BTN_PIPE0_ADDR = 0,
|
||||
.DIFF_BTN_PIPE1_ADDR = 0,
|
||||
.READ_FLASH_CHECKSUM_ADDR = 0x24000,
|
||||
.RW_FLASH_DATA_ADDR = 0x24002,
|
||||
/* Phase 2 Host Download */
|
||||
.BOOT_RDY_ADDR = 0x3F10D,
|
||||
/* BLD CRC */
|
||||
.BLD_LENGTH_ADDR = 0x3F138, //0x3F138 ~ 0x3F13A (3 bytes)
|
||||
.ILM_LENGTH_ADDR = 0x3F118, //0x3F118 ~ 0x3F11A (3 bytes)
|
||||
.DLM_LENGTH_ADDR = 0x3F130, //0x3F130 ~ 0x3F132 (3 bytes)
|
||||
.BLD_DES_ADDR = 0x3F114, //0x3F114 ~ 0x3F116 (3 bytes)
|
||||
.ILM_DES_ADDR = 0x3F128, //0x3F128 ~ 0x3F12A (3 bytes)
|
||||
.DLM_DES_ADDR = 0x3F12C, //0x3F12C ~ 0x3F12E (3 bytes)
|
||||
.G_ILM_CHECKSUM_ADDR = 0x3F100, //0x3F100 ~ 0x3F103 (4 bytes)
|
||||
.G_DLM_CHECKSUM_ADDR = 0x3F104, //0x3F104 ~ 0x3F107 (4 bytes)
|
||||
.R_ILM_CHECKSUM_ADDR = 0x3F120, //0x3F120 ~ 0x3F123 (4 bytes)
|
||||
.R_DLM_CHECKSUM_ADDR = 0x3F124, //0x3F124 ~ 0x3F127 (4 bytes)
|
||||
.BLD_CRC_EN_ADDR = 0x3F30E,
|
||||
.DMA_CRC_EN_ADDR = 0x3F136,
|
||||
.BLD_ILM_DLM_CRC_ADDR = 0x3F133,
|
||||
.DMA_CRC_FLAG_ADDR = 0x3F134,
|
||||
};
|
||||
|
||||
|
||||
static const struct nvt_ts_mem_map NT36672A_memory_map = {
|
||||
.EVENT_BUF_ADDR = 0x21C00,
|
||||
.RAW_PIPE0_ADDR = 0x20000,
|
||||
.RAW_PIPE1_ADDR = 0x23000,
|
||||
.BASELINE_ADDR = 0x20BFC,
|
||||
.BASELINE_BTN_ADDR = 0x23BFC,
|
||||
.DIFF_PIPE0_ADDR = 0x206DC,
|
||||
.DIFF_PIPE1_ADDR = 0x236DC,
|
||||
.RAW_BTN_PIPE0_ADDR = 0x20510,
|
||||
.RAW_BTN_PIPE1_ADDR = 0x23510,
|
||||
.DIFF_BTN_PIPE0_ADDR = 0x20BF0,
|
||||
.DIFF_BTN_PIPE1_ADDR = 0x23BF0,
|
||||
.READ_FLASH_CHECKSUM_ADDR = 0x24000,
|
||||
.RW_FLASH_DATA_ADDR = 0x24002,
|
||||
/* Phase 2 Host Download */
|
||||
.BOOT_RDY_ADDR = 0x3F10D,
|
||||
/* BLD CRC */
|
||||
.BLD_LENGTH_ADDR = 0x3F10E, //0x3F10E ~ 0x3F10F (2 bytes)
|
||||
.ILM_LENGTH_ADDR = 0x3F118, //0x3F118 ~ 0x3F119 (2 bytes)
|
||||
.DLM_LENGTH_ADDR = 0x3F130, //0x3F130 ~ 0x3F131 (2 bytes)
|
||||
.BLD_DES_ADDR = 0x3F114, //0x3F114 ~ 0x3F116 (3 bytes)
|
||||
.ILM_DES_ADDR = 0x3F128, //0x3F128 ~ 0x3F12A (3 bytes)
|
||||
.DLM_DES_ADDR = 0x3F12C, //0x3F12C ~ 0x3F12E (3 bytes)
|
||||
.G_ILM_CHECKSUM_ADDR = 0x3F100, //0x3F100 ~ 0x3F103 (4 bytes)
|
||||
.G_DLM_CHECKSUM_ADDR = 0x3F104, //0x3F104 ~ 0x3F107 (4 bytes)
|
||||
.R_ILM_CHECKSUM_ADDR = 0x3F120, //0x3F120 ~ 0x3F123 (4 bytes)
|
||||
.R_DLM_CHECKSUM_ADDR = 0x3F124, //0x3F124 ~ 0x3F127 (4 bytes)
|
||||
.BLD_CRC_EN_ADDR = 0x3F30E,
|
||||
.DMA_CRC_EN_ADDR = 0x3F132,
|
||||
.BLD_ILM_DLM_CRC_ADDR = 0x3F133,
|
||||
.DMA_CRC_FLAG_ADDR = 0x3F134,
|
||||
};
|
||||
|
||||
static const struct nvt_ts_mem_map NT36772_memory_map = {
|
||||
.EVENT_BUF_ADDR = 0x11E00,
|
||||
.RAW_PIPE0_ADDR = 0x10000,
|
||||
.RAW_PIPE1_ADDR = 0x12000,
|
||||
.BASELINE_ADDR = 0x10E70,
|
||||
.BASELINE_BTN_ADDR = 0x12E70,
|
||||
.DIFF_PIPE0_ADDR = 0x10830,
|
||||
.DIFF_PIPE1_ADDR = 0x12830,
|
||||
.RAW_BTN_PIPE0_ADDR = 0x10E60,
|
||||
.RAW_BTN_PIPE1_ADDR = 0x12E60,
|
||||
.DIFF_BTN_PIPE0_ADDR = 0x10E68,
|
||||
.DIFF_BTN_PIPE1_ADDR = 0x12E68,
|
||||
.READ_FLASH_CHECKSUM_ADDR = 0x14000,
|
||||
.RW_FLASH_DATA_ADDR = 0x14002,
|
||||
/* Phase 2 Host Download */
|
||||
.BOOT_RDY_ADDR = 0x1F141,
|
||||
.POR_CD_ADDR = 0x1F61C,
|
||||
/* BLD CRC */
|
||||
.R_ILM_CHECKSUM_ADDR = 0x1BF00,
|
||||
};
|
||||
|
||||
static const struct nvt_ts_mem_map NT36525_memory_map = {
|
||||
.EVENT_BUF_ADDR = 0x11A00,
|
||||
.RAW_PIPE0_ADDR = 0x10000,
|
||||
.RAW_PIPE1_ADDR = 0x12000,
|
||||
.BASELINE_ADDR = 0x10B08,
|
||||
.BASELINE_BTN_ADDR = 0x12B08,
|
||||
.DIFF_PIPE0_ADDR = 0x1064C,
|
||||
.DIFF_PIPE1_ADDR = 0x1264C,
|
||||
.RAW_BTN_PIPE0_ADDR = 0x10634,
|
||||
.RAW_BTN_PIPE1_ADDR = 0x12634,
|
||||
.DIFF_BTN_PIPE0_ADDR = 0x10AFC,
|
||||
.DIFF_BTN_PIPE1_ADDR = 0x12AFC,
|
||||
.READ_FLASH_CHECKSUM_ADDR = 0x14000,
|
||||
.RW_FLASH_DATA_ADDR = 0x14002,
|
||||
/* Phase 2 Host Download */
|
||||
.BOOT_RDY_ADDR = 0x1F141,
|
||||
.POR_CD_ADDR = 0x1F61C,
|
||||
/* BLD CRC */
|
||||
.R_ILM_CHECKSUM_ADDR = 0x1BF00,
|
||||
};
|
||||
|
||||
static const struct nvt_ts_mem_map NT36676F_memory_map = {
|
||||
.EVENT_BUF_ADDR = 0x11A00,
|
||||
.RAW_PIPE0_ADDR = 0x10000,
|
||||
.RAW_PIPE1_ADDR = 0x12000,
|
||||
.BASELINE_ADDR = 0x10B08,
|
||||
.BASELINE_BTN_ADDR = 0x12B08,
|
||||
.DIFF_PIPE0_ADDR = 0x1064C,
|
||||
.DIFF_PIPE1_ADDR = 0x1264C,
|
||||
.RAW_BTN_PIPE0_ADDR = 0x10634,
|
||||
.RAW_BTN_PIPE1_ADDR = 0x12634,
|
||||
.DIFF_BTN_PIPE0_ADDR = 0x10AFC,
|
||||
.DIFF_BTN_PIPE1_ADDR = 0x12AFC,
|
||||
.READ_FLASH_CHECKSUM_ADDR = 0x14000,
|
||||
.RW_FLASH_DATA_ADDR = 0x14002,
|
||||
};
|
||||
|
||||
static struct nvt_ts_hw_info NT36526_hw_info = {
|
||||
.carrier_system = 2,
|
||||
.hw_crc = 2,
|
||||
};
|
||||
|
||||
static struct nvt_ts_hw_info NT36675_hw_info = {
|
||||
.carrier_system = 2,
|
||||
.hw_crc = 2,
|
||||
};
|
||||
|
||||
static struct nvt_ts_hw_info NT36672A_hw_info = {
|
||||
.carrier_system = 0,
|
||||
.hw_crc = 1,
|
||||
};
|
||||
|
||||
static struct nvt_ts_hw_info NT36772_hw_info = {
|
||||
.carrier_system = 0,
|
||||
.hw_crc = 0,
|
||||
};
|
||||
|
||||
static struct nvt_ts_hw_info NT36525_hw_info = {
|
||||
.carrier_system = 0,
|
||||
.hw_crc = 0,
|
||||
};
|
||||
|
||||
static struct nvt_ts_hw_info NT36676F_hw_info = {
|
||||
.carrier_system = 0,
|
||||
.hw_crc = 0,
|
||||
};
|
||||
|
||||
#define NVT_ID_BYTE_MAX 6
|
||||
struct nvt_ts_trim_id_table {
|
||||
uint8_t id[NVT_ID_BYTE_MAX];
|
||||
uint8_t mask[NVT_ID_BYTE_MAX];
|
||||
const struct nvt_ts_mem_map *mmap;
|
||||
const struct nvt_ts_hw_info *hwinfo;
|
||||
};
|
||||
|
||||
static const struct nvt_ts_trim_id_table trim_id_table[] = {
|
||||
{.id = {0x0C, 0xFF, 0xFF, 0x72, 0x66, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36675_memory_map, .hwinfo = &NT36675_hw_info},
|
||||
{.id = {0xFF, 0xFF, 0xFF, 0x26, 0x65, 0x03}, .mask = {0, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36526_memory_map, .hwinfo = &NT36526_hw_info},
|
||||
{.id = {0xFF, 0xFF, 0xFF, 0x75, 0x66, 0x03}, .mask = {0, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36675_memory_map, .hwinfo = &NT36675_hw_info},
|
||||
{.id = {0x0B, 0xFF, 0xFF, 0x72, 0x66, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36672A_memory_map, .hwinfo = &NT36672A_hw_info},
|
||||
{.id = {0x0B, 0xFF, 0xFF, 0x82, 0x66, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36672A_memory_map, .hwinfo = &NT36672A_hw_info},
|
||||
{.id = {0x0B, 0xFF, 0xFF, 0x25, 0x65, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36672A_memory_map, .hwinfo = &NT36672A_hw_info},
|
||||
{.id = {0x0A, 0xFF, 0xFF, 0x72, 0x65, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36672A_memory_map, .hwinfo = &NT36672A_hw_info},
|
||||
{.id = {0x0A, 0xFF, 0xFF, 0x72, 0x66, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36672A_memory_map, .hwinfo = &NT36672A_hw_info},
|
||||
{.id = {0x0A, 0xFF, 0xFF, 0x82, 0x66, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36672A_memory_map, .hwinfo = &NT36672A_hw_info},
|
||||
{.id = {0x0A, 0xFF, 0xFF, 0x70, 0x66, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36672A_memory_map, .hwinfo = &NT36672A_hw_info},
|
||||
{.id = {0x0B, 0xFF, 0xFF, 0x70, 0x66, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36672A_memory_map, .hwinfo = &NT36672A_hw_info},
|
||||
{.id = {0x0A, 0xFF, 0xFF, 0x72, 0x67, 0x03}, .mask = {1, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36672A_memory_map, .hwinfo = &NT36672A_hw_info},
|
||||
{.id = {0x55, 0x00, 0xFF, 0x00, 0x00, 0x00}, .mask = {1, 1, 0, 1, 1, 1},
|
||||
.mmap = &NT36772_memory_map, .hwinfo = &NT36772_hw_info},
|
||||
{.id = {0x55, 0x72, 0xFF, 0x00, 0x00, 0x00}, .mask = {1, 1, 0, 1, 1, 1},
|
||||
.mmap = &NT36772_memory_map, .hwinfo = &NT36772_hw_info},
|
||||
{.id = {0xAA, 0x00, 0xFF, 0x00, 0x00, 0x00}, .mask = {1, 1, 0, 1, 1, 1},
|
||||
.mmap = &NT36772_memory_map, .hwinfo = &NT36772_hw_info},
|
||||
{.id = {0xAA, 0x72, 0xFF, 0x00, 0x00, 0x00}, .mask = {1, 1, 0, 1, 1, 1},
|
||||
.mmap = &NT36772_memory_map, .hwinfo = &NT36772_hw_info},
|
||||
{.id = {0xFF, 0xFF, 0xFF, 0x72, 0x67, 0x03}, .mask = {0, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36772_memory_map, .hwinfo = &NT36772_hw_info},
|
||||
{.id = {0xFF, 0xFF, 0xFF, 0x70, 0x66, 0x03}, .mask = {0, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36772_memory_map, .hwinfo = &NT36772_hw_info},
|
||||
{.id = {0xFF, 0xFF, 0xFF, 0x70, 0x67, 0x03}, .mask = {0, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36772_memory_map, .hwinfo = &NT36772_hw_info},
|
||||
{.id = {0xFF, 0xFF, 0xFF, 0x72, 0x66, 0x03}, .mask = {0, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36772_memory_map, .hwinfo = &NT36772_hw_info},
|
||||
{.id = {0xFF, 0xFF, 0xFF, 0x25, 0x65, 0x03}, .mask = {0, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36525_memory_map, .hwinfo = &NT36525_hw_info},
|
||||
{.id = {0xFF, 0xFF, 0xFF, 0x76, 0x66, 0x03}, .mask = {0, 0, 0, 1, 1, 1},
|
||||
.mmap = &NT36676F_memory_map, .hwinfo = &NT36676F_hw_info}
|
||||
};
|
1927
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_mp_ctrlram.c
Normal file
1927
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_mp_ctrlram.c
Normal file
File diff suppressed because it is too large
Load Diff
710
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_mp_ctrlram.h
Normal file
710
drivers/input/touchscreen/nt36xxx_spi/nt36xxx_mp_ctrlram.h
Normal file
@ -0,0 +1,710 @@
|
||||
/*
|
||||
* Copyright (C) 2010 - 2018 Novatek, Inc.
|
||||
* Copyright (C) 2020 XiaoMi, Inc.
|
||||
* $Revision: 43145 $
|
||||
* $Date: 2019-04-10 17:46:18 +0800 (週三, 10 四月 2019) $
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
*/
|
||||
|
||||
#if NVT_TOUCH_MP
|
||||
|
||||
static uint32_t IC_X_CFG_SIZE = 16;
|
||||
static uint32_t IC_Y_CFG_SIZE = 36;
|
||||
static uint32_t IC_KEY_CFG_SIZE = 4;
|
||||
static uint32_t X_Channel = 16;
|
||||
static uint32_t Y_Channel = 36;
|
||||
static uint32_t Key_Channel = TOUCH_KEY_NUM;
|
||||
static uint8_t AIN_X[40] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
|
||||
static uint8_t AIN_Y[40] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
|
||||
18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35
|
||||
};
|
||||
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
static uint8_t AIN_KEY[8] = { 0, 1, 2, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
|
||||
static int32_t PS_Config_Lmt_Short_Rawdata_P[40 * 40] = {
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008, 14008,
|
||||
14008, 14008, 14008, 14008, 14008, 14008,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
14008, 14008, 14008,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Lmt_Short_Rawdata_N[40 * 40] = {
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000,
|
||||
10000, 10000, 10000, 10000, 10000, 10000,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
10000, 10000, 10000,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Lmt_Open_Rawdata_P[40 * 40] = {
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,
|
||||
4096, 4096, 4096, 4096,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
4096, 4096, 4096,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Lmt_Open_Rawdata_N[40 * 40] = {
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
50, 50, 50,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Lmt_FW_Rawdata_P[40 * 40] = {
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
|
||||
1920, 1920, 1920, 1920,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
1920, 1920, 1920,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Lmt_FW_Rawdata_N[40 * 40] = {
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240,
|
||||
240, 240,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
240, 240, 240,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Lmt_FW_CC_P[40 * 40] = {
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314,
|
||||
314, 314,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
314, 314, 314,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Lmt_FW_CC_N[40 * 40] = {
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
30, 30, 30,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Lmt_FW_Diff_P[40 * 40] = {
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
75, 75, 75,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Lmt_FW_Diff_N[40 * 40] = {
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
-75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75, -75,
|
||||
-75, -75,
|
||||
#if TOUCH_KEY_NUM > 0
|
||||
-75, -75, -75,
|
||||
#endif /* #if TOUCH_KEY_NUM > 0 */
|
||||
};
|
||||
|
||||
static int32_t PS_Config_Diff_Test_Frame = 50;
|
||||
|
||||
#endif /* #if NVT_TOUCH_MP */
|
Loading…
x
Reference in New Issue
Block a user