/* * ILITEK Touch IC driver * * Copyright (C) 2011 ILI Technology Corporation. * * Author: Dicky Chiang * * 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. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "ilitek.h" #define UPDATE_PASS 0 #define UPDATE_FAIL -1 #define TIMEOUT_SECTOR 500 #define TIMEOUT_PAGE 3500 #define TIMEOUT_PROGRAM 10 static struct touch_fw_data { u8 block_number; u32 start_addr; u32 end_addr; u32 new_fw_cb; u32 dl_ges_sa; int delay_after_upgrade; bool isCRC; bool isboot; int hex_tag; } tfd; static struct flash_block_info { char *name; u32 start; u32 end; u32 len; u32 mem_start; u32 fix_mem_start; u8 mode; } fbi[FW_BLOCK_INFO_NUM]; u8 *pfw; u8 *CTPM_FW; static u32 HexToDec(char *phex, s32 len) { u32 ret = 0, temp = 0, i; s32 shift = (len - 1) * 4; for (i = 0; i < len; shift -= 4, i++) { if ((phex[i] >= '0') && (phex[i] <= '9')) temp = phex[i] - '0'; else if ((phex[i] >= 'a') && (phex[i] <= 'f')) temp = (phex[i] - 'a') + 10; else if ((phex[i] >= 'A') && (phex[i] <= 'F')) temp = (phex[i] - 'A') + 10; ret |= (temp << shift); } return ret; } static int CalculateCRC32(u32 start_addr, u32 len, u8 *pfw) { int i = 0, j = 0; int crc_poly = 0x04C11DB7; int tmp_crc = 0xFFFFFFFF; for (i = start_addr; i < start_addr + len; i++) { tmp_crc ^= (pfw[i] << 24); for (j = 0; j < 8; j++) { if ((tmp_crc & 0x80000000) != 0) tmp_crc = tmp_crc << 1 ^ crc_poly; else tmp_crc = tmp_crc << 1; } } return tmp_crc; } static int host_download_dma_check(u32 start_addr, u32 block_size) { int count = 50; u32 busy = 0; u8 dma_int_bit = 0; u32 pid = idev->chip->pid; if (((pid>>8) == ILI9881H) || ((pid>>8) == ILI7807G) || ((pid>>8) == ILI7807R)) dma_int_bit = 1; else dma_int_bit = 2; /* dma1 src1 address */ if (ilitek_ice_mode_write(0x072104, start_addr, 4) < 0) ipio_err("Write dma1 src1 address failed\n"); /* dma1 src1 format */ if (ilitek_ice_mode_write(0x072108, 0x80000001, 4) < 0) ipio_err("Write dma1 src1 format failed\n"); /* dma1 dest address */ if (ilitek_ice_mode_write(0x072114, 0x00030000, 4) < 0) ipio_err("Write dma1 src1 format failed\n"); /* dma1 dest format */ if (ilitek_ice_mode_write(0x072118, 0x80000000, 4) < 0) ipio_err("Write dma1 dest format failed\n"); /* Block size*/ if (ilitek_ice_mode_write(0x07211C, block_size, 4) < 0) ipio_err("Write block size (%d) failed\n", block_size); idev->chip->hd_dma_check_crc_off(); /* Dma1 stop */ if (ilitek_ice_mode_write(0x072100, 0x02000000, 4) < 0) ipio_err("Write dma1 stop failed\n"); /* crc on */ if (ilitek_ice_mode_write(0x041016, 0x01, 1) < 0) ipio_err("Write crc on failed\n"); /* clr int */ if (ilitek_ice_mode_write(0x048006, dma_int_bit, 1) < 0) ipio_err("Write clr int failed\n"); /* Dma1 start */ if (ilitek_ice_mode_write(0x072100, 0x01000000, 4) < 0) ipio_err("Write dma1 start failed\n"); /* Polling BIT0 */ while (count > 0) { mdelay(1); if (ilitek_ice_mode_read(0x048006, &busy, sizeof(u8)) < 0) ipio_err("Read busy error\n"); ipio_debug("busy = %x\n", busy); if ((busy & dma_int_bit) == dma_int_bit) break; count--; } if (count <= 0) { ipio_err("BIT0 is busy\n"); return -1; } if (ilitek_ice_mode_read(0x04101C, &busy, sizeof(u32)) < 0) { ipio_err("Read dma crc error\n"); return -1; } return busy; } static int ilitek_tddi_fw_iram_read(u8 *buf, u32 start, int len) { int limit = SPI_RX_BUF_SIZE; int addr = 0, loop = 0, tmp_len = len, cnt = 0; u8 cmd[4] = {0}; if (!buf) { ipio_err("buf is null\n"); return -ENOMEM; } if (len % limit) loop = (len / limit) + 1; else loop = len / limit; for (cnt = 0, addr = start; cnt < loop; cnt++, addr += limit) { if (tmp_len > limit) tmp_len = limit; cmd[0] = 0x25; cmd[3] = (char)((addr & 0x00FF0000) >> 16); cmd[2] = (char)((addr & 0x0000FF00) >> 8); cmd[1] = (char)((addr & 0x000000FF)); if (idev->write(cmd, 4) < 0) { ipio_err("Failed to write iram data\n"); return -ENODEV; } if (idev->read(buf + cnt * limit, tmp_len) < 0) { ipio_err("Failed to Read iram data\n"); return -ENODEV; } tmp_len = len - cnt * limit; idev->fw_update_stat = ((len - tmp_len) * 100) / len; ipio_info("Reading iram data .... %d%c", idev->fw_update_stat, '%'); } return 0; } int ilitek_fw_dump_iram_data(u32 start, u32 end, bool save, bool mcu) { struct file *f = NULL; mm_segment_t old_fs; loff_t pos = 0; int wdt, i, ret = 0; int len, tmp = ipio_debug_level; bool ice = atomic_read(&idev->ice_stat); if (!ice) { ret = ilitek_ice_mode_ctrl(ENABLE, mcu); if (ret < 0) { ipio_err("Enable ice mode failed\n"); return ret; } } wdt = ilitek_tddi_ic_watch_dog_ctrl(ILI_READ, DISABLE); if (wdt) { ret = ilitek_tddi_ic_watch_dog_ctrl(ILI_WRITE, DISABLE); if (ret < 0) { ipio_err("Disable WDT failed during dumping iram\n"); goto out; } } len = end - start + 1; if (len >= MAX_HEX_FILE_SIZE) { ipio_err("len is larger than buffer, abort\n"); ret = -EINVAL; goto out; } for (i = 0; i < MAX_HEX_FILE_SIZE; i++) idev->update_buf[i] = 0xFF; ret = ilitek_tddi_fw_iram_read(idev->update_buf, start, len); if (ret < 0) { ipio_err("Read IRAM data failed\n"); goto out; } if (save) { f = filp_open(DUMP_IRAM_PATH, O_WRONLY | O_CREAT | O_TRUNC, 644); if (ERR_ALLOC_MEM(f)) { ipio_err("Failed to open the file at %ld.\n", PTR_ERR(f)); ret = -ENOMEM; goto out; } old_fs = get_fs(); set_fs(get_ds()); set_fs(KERNEL_DS); pos = 0; vfs_write(f, idev->update_buf, len, &pos); set_fs(old_fs); filp_close(f, NULL); ipio_info("Save iram data to %s\n", DUMP_IRAM_PATH); } else { ipio_debug_level = DEBUG_ALL; ilitek_dump_data(idev->update_buf, 8, len, 0, "IRAM"); ipio_debug_level = tmp; } out: if (wdt) { if (ilitek_tddi_ic_watch_dog_ctrl(ILI_WRITE, ENABLE) < 0) ipio_err("Enable WDT failed during dumping iram\n"); } if (!ice) { if (ilitek_ice_mode_ctrl(DISABLE, mcu) < 0) ipio_err("Enable ice mode failed after code reset\n"); } ipio_info("Dump IRAM %s\n", (ret < 0) ? "FAIL" : "SUCCESS"); return ret; } static int ilitek_tddi_fw_iram_program(u32 start, u8 *w_buf, u32 w_len, u32 split_len) { int i = 0, j = 0, addr = 0; u32 end = start + w_len; bool fix_4_alignment = false; if (split_len % 4 > 0) ipio_err("Since split_len must be four-aligned, it must be a multiple of four"); if (split_len != 0) { for (addr = start, i = 0; addr < end; addr += split_len, i += split_len) { if ((addr + split_len) > end) { split_len = end - addr; if (split_len % 4 != 0) fix_4_alignment = true; } idev->update_buf[0] = SPI_WRITE; idev->update_buf[1] = 0x25; idev->update_buf[2] = (char)((addr & 0x000000FF)); idev->update_buf[3] = (char)((addr & 0x0000FF00) >> 8); idev->update_buf[4] = (char)((addr & 0x00FF0000) >> 16); for (j = 0; j < split_len; j++) idev->update_buf[5 + j] = w_buf[i + j]; if (fix_4_alignment) { ipio_info("org split_len = 0x%X\n", split_len); ipio_info("idev->update_buf[5 + 0x%X] = 0x%X\n", split_len - 4, idev->update_buf[5 + split_len - 4]); ipio_info("idev->update_buf[5 + 0x%X] = 0x%X\n", split_len - 3, idev->update_buf[5 + split_len - 3]); ipio_info("idev->update_buf[5 + 0x%X] = 0x%X\n", split_len - 2, idev->update_buf[5 + split_len - 2]); ipio_info("idev->update_buf[5 + 0x%X] = 0x%X\n", split_len - 1, idev->update_buf[5 + split_len - 1]); for (j = 0; j < (4 - (split_len % 4)); j++) { idev->update_buf[5 + j + split_len] = 0xFF; ipio_info("idev->update_buf[5 + 0x%X] = 0x%X\n",j + split_len, idev->update_buf[5 + j + split_len]); } ipio_info("split_len %% 4 = %d\n", split_len % 4); split_len = split_len + (4 - (split_len % 4)); ipio_info("fix split_len = 0x%X\n", split_len); } if (idev->spi_write_then_read(idev->spi, idev->update_buf, split_len + 5, NULL, 0)) { ipio_err("Failed to write data via SPI in host download (%x)\n", split_len + 5); return -EIO; } idev->fw_update_stat = (i * 100) / w_len; } } else { for (i = 0; i < MAX_HEX_FILE_SIZE; i++) idev->update_buf[i] = 0xFF; idev->update_buf[0] = SPI_WRITE; idev->update_buf[1] = 0x25; idev->update_buf[2] = (char)((start & 0x000000FF)); idev->update_buf[3] = (char)((start & 0x0000FF00) >> 8); idev->update_buf[4] = (char)((start & 0x00FF0000) >> 16); memcpy(&idev->update_buf[5], w_buf, w_len); if (w_len % 4 != 0) { ipio_info("org w_len = %d\n", w_len); w_len = w_len + (4 - (w_len % 4)); ipio_info("w_len = %d w_len %% 4 = %d\n", w_len, w_len % 4); } /* It must be supported by platforms that have the ability to transfer all data at once. */ if (idev->spi_write_then_read(idev->spi, idev->update_buf, w_len + 5, NULL, 0) < 0) { ipio_err("Failed to write data via SPI in host download (%x)\n", w_len + 5); return -EIO; } } return 0; } static int ilitek_tddi_fw_iram_upgrade(u8 *pfw, bool mcu) { int i, ret = UPDATE_PASS; u32 mode, crc, dma, iram_crc = 0; u8 *fw_ptr = NULL, crc_temp[4], crc_len = 4; bool iram_crc_err = false; if (!idev->ddi_rest_done) { if (idev->actual_tp_mode != P5_X_FW_GESTURE_MODE) ilitek_tddi_reset_ctrl(idev->reset); ret = ilitek_ice_mode_ctrl(ENABLE, mcu); if (ret < 0) return -EFW_ICE_MODE; } else { /* Restore it if the wq of load_fw_ddi has been called. */ idev->ddi_rest_done = false; } ret = ilitek_tddi_ic_watch_dog_ctrl(ILI_WRITE, DISABLE); if (ret < 0) return -EFW_WDT; /* Point to pfw with different addresses for getting its block data. */ fw_ptr = pfw; if (idev->actual_tp_mode == P5_X_FW_TEST_MODE) { mode = MP; } else if (idev->actual_tp_mode == P5_X_FW_GESTURE_MODE) { mode = GESTURE; crc_len = 0; } else { mode = AP; } /* Program data to iram acorrding to each block */ for (i = 0; i < FW_BLOCK_INFO_NUM; i++) { if (fbi[i].mode == mode && fbi[i].len != 0) { ipio_debug("Download %s code from hex 0x%x to IRAM 0x%x, len = 0x%x\n", fbi[i].name, fbi[i].start, fbi[i].mem_start, fbi[i].len); #if SPI_DMA_TRANSFER_SPLIT if (ilitek_tddi_fw_iram_program(fbi[i].mem_start, (fw_ptr + fbi[i].start), fbi[i].len, SPI_UPGRADE_LEN) < 0) ipio_err("IRAM program failed\n"); #else if (ilitek_tddi_fw_iram_program(fbi[i].mem_start, (fw_ptr + fbi[i].start), fbi[i].len, 0) < 0) ipio_err("IRAM program failed\n"); #endif // Check crc crc = CalculateCRC32(fbi[i].start, fbi[i].len - crc_len, fw_ptr); dma = host_download_dma_check(fbi[i].mem_start, fbi[i].len - crc_len); if (mode != GESTURE) { ilitek_tddi_fw_iram_read(crc_temp, (fbi[i].mem_start + fbi[i].len - crc_len), sizeof(crc_temp)); iram_crc = crc_temp[0] << 24 | crc_temp[1] << 16 |crc_temp[2] << 8 | crc_temp[3]; if (iram_crc != dma) iram_crc_err = true; } ipio_info("%s CRC is %s hex(%x) : dma(%x) : iram(%x), calculation len is 0x%x\n", fbi[i].name,((crc != dma)||(iram_crc_err)) ? "Invalid !" : "Correct !", crc, dma, iram_crc, fbi[i].len - crc_len); if ((crc != dma)|| iram_crc_err) { ipio_err("CRC Error! print iram data with first 16 bytes\n"); ilitek_fw_dump_iram_data(0x0, 0xF, false, OFF); return -EFW_CRC; } } } if (idev->actual_tp_mode != P5_X_FW_GESTURE_MODE) { if (ilitek_tddi_reset_ctrl(TP_IC_CODE_RST) < 0) { ipio_err("TP Code reset failed during iram programming\n"); ret = -EFW_REST; return ret; } } if (ilitek_ice_mode_ctrl(DISABLE, mcu) < 0) { ipio_err("Disable ice mode failed after code reset\n"); ret = -EFW_ICE_MODE; } /* Waiting for fw ready sending first cmd */ if (!idev->info_from_hex || (idev->chip->core_ver < CORE_VER_1410)) mdelay(100); return ret; } static int ilitek_fw_calc_file_crc(u8 *pfw) { int i; u32 ex_addr, data_crc, file_crc; for (i = 0; i < ARRAY_SIZE(fbi); i++) { if (fbi[i].end == 0) continue; ex_addr = fbi[i].end; data_crc = CalculateCRC32(fbi[i].start, fbi[i].len - 4, pfw); file_crc = pfw[ex_addr - 3] << 24 | pfw[ex_addr - 2] << 16 | pfw[ex_addr - 1] << 8 | pfw[ex_addr]; ipio_debug("data crc = %x, file crc = %x\n", data_crc, file_crc); if (data_crc != file_crc) { ipio_err("Content of fw file is broken. (%d, %x, %x)\n", i, data_crc, file_crc); return -1; } } ipio_info("Content of fw file is correct\n"); return 0; } static void ilitek_tddi_fw_update_block_info(u8 *pfw) { u32 ges_area_section, ges_info_addr, ges_fw_start, ges_fw_end; u32 ap_end, ap_len = 0; u32 fw_info_addr = 0, fw_mp_ver_addr = 0; ipio_info("Tag = %x\n", tfd.hex_tag); if (tfd.hex_tag == BLOCK_TAG_AF) { fbi[AP].mem_start = (fbi[AP].fix_mem_start != INT_MAX) ? fbi[AP].fix_mem_start : 0; fbi[DATA].mem_start = (fbi[DATA].fix_mem_start != INT_MAX) ? fbi[DATA].fix_mem_start : DLM_START_ADDRESS; fbi[TUNING].mem_start = (fbi[TUNING].fix_mem_start != INT_MAX) ? fbi[TUNING].fix_mem_start : fbi[DATA].mem_start + fbi[DATA].len; fbi[MP].mem_start = (fbi[MP].fix_mem_start != INT_MAX) ? fbi[MP].fix_mem_start : 0; fbi[GESTURE].mem_start = (fbi[GESTURE].fix_mem_start != INT_MAX) ? fbi[GESTURE].fix_mem_start : 0; /* Parsing gesture info form AP code */ ges_info_addr = (fbi[AP].end + 1 - 60); ges_area_section = (pfw[ges_info_addr + 3] << 24) + (pfw[ges_info_addr + 2] << 16) + (pfw[ges_info_addr + 1] << 8) + pfw[ges_info_addr]; fbi[GESTURE].mem_start = (pfw[ges_info_addr + 7] << 24) + (pfw[ges_info_addr + 6] << 16) + (pfw[ges_info_addr + 5] << 8) + pfw[ges_info_addr + 4]; ap_end = (pfw[ges_info_addr + 11] << 24) + (pfw[ges_info_addr + 10] << 16) + (pfw[ges_info_addr + 9] << 8) + pfw[ges_info_addr + 8]; if (ap_end != fbi[GESTURE].mem_start) ap_len = ap_end - fbi[GESTURE].mem_start + 1; ges_fw_start = (pfw[ges_info_addr + 15] << 24) + (pfw[ges_info_addr + 14] << 16) + (pfw[ges_info_addr + 13] << 8) + pfw[ges_info_addr + 12]; ges_fw_end = (pfw[ges_info_addr + 19] << 24) + (pfw[ges_info_addr + 18] << 16) + (pfw[ges_info_addr + 17] << 8) + pfw[ges_info_addr + 16]; if (ges_fw_end != ges_fw_start) fbi[GESTURE].len = ges_fw_end - ges_fw_start; //address was automatically added one when it was generated /* update gesture address */ fbi[GESTURE].start = ges_fw_start; } else { memset(fbi, 0x0, sizeof(fbi)); fbi[AP].start = 0; fbi[AP].mem_start = 0; fbi[AP].len = MAX_AP_FIRMWARE_SIZE; fbi[DATA].start = DLM_HEX_ADDRESS; fbi[DATA].mem_start = DLM_START_ADDRESS; fbi[DATA].len = MAX_DLM_FIRMWARE_SIZE; fbi[MP].start = MP_HEX_ADDRESS; fbi[MP].mem_start = 0; fbi[MP].len = MAX_MP_FIRMWARE_SIZE; /* Parsing gesture info form AP code */ ges_info_addr = (MAX_AP_FIRMWARE_SIZE - 60); ges_area_section = (pfw[ges_info_addr + 3] << 24) + (pfw[ges_info_addr + 2] << 16) + (pfw[ges_info_addr + 1] << 8) + pfw[ges_info_addr]; fbi[GESTURE].mem_start = (pfw[ges_info_addr + 7] << 24) + (pfw[ges_info_addr + 6] << 16) + (pfw[ges_info_addr + 5] << 8) + pfw[ges_info_addr + 4]; ap_end = (pfw[ges_info_addr + 11] << 24) + (pfw[ges_info_addr + 10] << 16) + (pfw[ges_info_addr + 9] << 8) + pfw[ges_info_addr + 8]; if (ap_end != fbi[GESTURE].mem_start) ap_len = ap_end - fbi[GESTURE].mem_start + 1; ges_fw_start = (pfw[ges_info_addr + 15] << 24) + (pfw[ges_info_addr + 14] << 16) + (pfw[ges_info_addr + 13] << 8) + pfw[ges_info_addr + 12]; ges_fw_end = (pfw[ges_info_addr + 19] << 24) + (pfw[ges_info_addr + 18] << 16) + (pfw[ges_info_addr + 17] << 8) + pfw[ges_info_addr + 16]; if (ges_fw_end != ges_fw_start) fbi[GESTURE].len = ges_fw_end - ges_fw_start; //address was automatically added one when it was generated /* update gesture address */ fbi[GESTURE].start = ges_fw_start; } ipio_info("==== Gesture loader info ====\n"); ipio_info("gesture move to ap addr => start = 0x%x, ap_end = 0x%x, ap_len = 0x%x\n", fbi[GESTURE].mem_start, ap_end, ap_len); ipio_info("gesture hex addr => start = 0x%x, gesture_end = 0x%x, gesture_len = 0x%x\n", ges_fw_start, ges_fw_end, fbi[GESTURE].len); ipio_info("=============================\n"); fbi[AP].name = "AP"; fbi[DATA].name = "DATA"; fbi[TUNING].name = "TUNING"; fbi[MP].name = "MP"; fbi[GESTURE].name = "GESTURE"; /* upgrade mode define */ fbi[DATA].mode = fbi[AP].mode = fbi[TUNING].mode = AP; fbi[MP].mode = MP; fbi[GESTURE].mode = GESTURE; /* copy fw info */ fw_info_addr = fbi[AP].end - INFO_HEX_ST_ADDR; ipio_info("Parsing hex info start addr = 0x%x\n", fw_info_addr); ipio_memcpy(idev->fw_info, pfw + fw_info_addr, sizeof(idev->fw_info), sizeof(idev->fw_info)); /* copy fw mp ver */ fw_mp_ver_addr = fbi[MP].end - INFO_MP_HEX_ADDR; ipio_info("Parsing hex mp ver addr = 0x%x\n", fw_mp_ver_addr); ipio_memcpy(idev->fw_mp_ver, pfw + fw_mp_ver_addr, sizeof(idev->fw_mp_ver), sizeof(idev->fw_mp_ver)); /* copy fw core ver */ idev->chip->core_ver = (idev->fw_info[68] << 24) | (idev->fw_info[69] << 16) | (idev->fw_info[70] << 8) | idev->fw_info[71]; ipio_info("New FW Core version = %x\n", idev->chip->core_ver); /* Get hex fw vers */ tfd.new_fw_cb = (idev->fw_info[48] << 24) | (idev->fw_info[49] << 16) | (idev->fw_info[50] << 8) | idev->fw_info[51]; /* Get hex report info block*/ ipio_memcpy(&idev->rib, idev->fw_info, sizeof(idev->rib), sizeof(idev->rib)); ipio_info("report_info_block : nReportByPixel = %d, nIsHostDownload = %d, nIsSPIICE = %d, nIsSPISLAVE = %d\n", idev->rib.nReportByPixel, idev->rib.nIsHostDownload, idev->rib.nIsSPIICE, idev->rib.nIsSPISLAVE); ipio_info("report_info_block : nIsI2C = %d, nReserved00 = %d, nReserved01 = %x, nReserved02 = %x, nReserved03 = %x\n", idev->rib.nIsI2C, idev->rib.nReserved00, idev->rib.nReserved01, idev->rib.nReserved02, idev->rib.nReserved03); /* Calculate update address */ ipio_info("New FW ver = 0x%x\n", tfd.new_fw_cb); ipio_info("star_addr = 0x%06X, end_addr = 0x%06X, Block Num = %d\n", tfd.start_addr, tfd.end_addr, tfd.block_number); } static int ilitek_tddi_fw_ili_convert(u8 *pfw) { int i = 0, block_enable = 0, num = 0, size; u8 block; u32 Addr; if (ERR_ALLOC_MEM(idev->md_fw_ili)) return -ENOMEM; CTPM_FW = idev->md_fw_ili; size = idev->md_fw_ili_size; if (size < ILI_FILE_HEADER || size > MAX_HEX_FILE_SIZE) { ipio_err("size of ILI file is invalid\n"); return -EINVAL; } if (CTPM_FW[22] != 0xFF && CTPM_FW[23] != 0xFF && CTPM_FW[24] != 0xFF && CTPM_FW[25] != 0xFF) { ipio_err("Invaild ILI format, abort!\n"); return -EINVAL; } ipio_info("Start to parse ILI file, type = %d, block_count = %d\n", CTPM_FW[32], CTPM_FW[33]); memset(fbi, 0x0, sizeof(fbi)); tfd.start_addr = 0; tfd.end_addr = 0; tfd.hex_tag = 0; block_enable = CTPM_FW[32]; if (block_enable == 0) { tfd.hex_tag = BLOCK_TAG_AE; goto out; } tfd.hex_tag = BLOCK_TAG_AF; for (i = 0; i < (FW_BLOCK_INFO_NUM - 3); i++) { if (((block_enable >> i) & 0x01) == 0x01) { num = i + 1; if (num > 5) { fbi[num].start = (CTPM_FW[0 + (i - 5) * 6] << 16) + (CTPM_FW[1 + (i - 5) * 6] << 8) + (CTPM_FW[2 + (i - 5) * 6]); fbi[num].end = (CTPM_FW[3 + (i - 5) * 6] << 16) + (CTPM_FW[4 + (i - 5) * 6] << 8) + (CTPM_FW[5 + (i - 5) * 6]); fbi[num].fix_mem_start = INT_MAX; } else { fbi[num].start = (CTPM_FW[34 + i * 6] << 16) + (CTPM_FW[35 + i * 6] << 8) + (CTPM_FW[36 + i * 6]); fbi[num].end = (CTPM_FW[37 + i * 6] << 16) + (CTPM_FW[38 + i * 6] << 8) + (CTPM_FW[39 + i * 6]); fbi[num].fix_mem_start = INT_MAX; } if (fbi[num].start == fbi[num].end) continue; fbi[num].len = fbi[num].end - fbi[num].start + 1; ipio_debug("Block[%d]: start_addr = %x, end = %x\n", num, fbi[num].start, fbi[num].end); if (num == GESTURE) idev->gesture_load_code = true; } } if ((block_enable & 0x80) == 0x80) { for (i = 0; i < 3; i++) { Addr = (CTPM_FW[6 + i * 4] << 16) + (CTPM_FW[7 + i * 4] << 8) + (CTPM_FW[8 + i * 4]); block = CTPM_FW[9 + i * 4]; if ((block != 0) && (Addr != 0x000000)) { fbi[block].fix_mem_start = Addr; ipio_debug("Tag 0xB0: change Block[%d] to addr = 0x%x\n", block, fbi[block].fix_mem_start); } } } out: memcpy(pfw, CTPM_FW + ILI_FILE_HEADER, size - ILI_FILE_HEADER); if (ilitek_fw_calc_file_crc(pfw) < 0) return -1; tfd.block_number = CTPM_FW[33]; tfd.end_addr = size - ILI_FILE_HEADER; return 0; } static int ilitek_tddi_fw_hex_convert(u8 *phex, int size, u8 *pfw) { int block = 0; u32 i = 0, j = 0, k = 0, num = 0; u32 len = 0, addr = 0, type = 0; u32 start_addr = 0x0, end_addr = 0x0, ex_addr = 0; u32 offset; memset(fbi, 0x0, sizeof(fbi)); /* Parsing HEX file */ for (; i < size;) { len = HexToDec(&phex[i + 1], 2); addr = HexToDec(&phex[i + 3], 4); type = HexToDec(&phex[i + 7], 2); if (type == 0x04) { ex_addr = HexToDec(&phex[i + 9], 4); } else if (type == 0x02) { ex_addr = HexToDec(&phex[i + 9], 4); ex_addr = ex_addr >> 12; } else if (type == BLOCK_TAG_AE || type == BLOCK_TAG_AF) { /* insert block info extracted from hex */ tfd.hex_tag = type; if (tfd.hex_tag == BLOCK_TAG_AF) num = HexToDec(&phex[i + 9 + 6 + 6], 2); else num = block; if (num > FW_BLOCK_INFO_NUM) { ipio_err("ERROR! block num is larger than its define (%d, %d)\n", num, FW_BLOCK_INFO_NUM); return -EINVAL; } fbi[num].start = HexToDec(&phex[i + 9], 6); fbi[num].end = HexToDec(&phex[i + 9 + 6], 6); fbi[num].fix_mem_start = INT_MAX; fbi[num].len = fbi[num].end - fbi[num].start + 1; ipio_info("Block[%d]: start_addr = %x, end = %x", num, fbi[num].start, fbi[num].end); if (num == GESTURE) idev->gesture_load_code = true; block++; } else if (type == BLOCK_TAG_B0 && tfd.hex_tag == BLOCK_TAG_AF) { num = HexToDec(&phex[i + 9 + 6], 2); if (num > FW_BLOCK_INFO_NUM) { ipio_err("ERROR! block num is larger than its define (%d, %d)\n", num, FW_BLOCK_INFO_NUM); return -EINVAL; } fbi[num].fix_mem_start = HexToDec(&phex[i + 9], 6); ipio_info("Tag 0xB0: change Block[%d] to addr = 0x%x\n", num, fbi[num].fix_mem_start); } addr = addr + (ex_addr << 16); if (phex[i + 1 + 2 + 4 + 2 + (len * 2) + 2] == 0x0D) offset = 2; else offset = 1; if (addr > MAX_HEX_FILE_SIZE) { ipio_err("Invalid hex format %d\n", addr); return -1; } if (type == 0x00) { end_addr = addr + len; if (addr < start_addr) start_addr = addr; /* fill data */ for (j = 0, k = 0; j < (len * 2); j += 2, k++) pfw[addr + k] = HexToDec(&phex[i + 9 + j], 2); } i += 1 + 2 + 4 + 2 + (len * 2) + 2 + offset; } if (ilitek_fw_calc_file_crc(pfw) < 0) return -1; tfd.start_addr = start_addr; tfd.end_addr = end_addr; tfd.block_number = block; return 0; } static int ilitek_tdd_fw_hex_open(u8 op, u8 *pfw) { int ret = 0, fsize = 0; const struct firmware *fw = NULL; struct file *f = NULL; mm_segment_t old_fs; loff_t pos = 0; ipio_info("Open file method = %s, path = %s\n", op ? "FILP_OPEN" : "REQUEST_FIRMWARE", op ? idev->md_fw_filp_path : idev->md_fw_rq_path); switch (op) { case REQUEST_FIRMWARE: if (request_firmware(&fw, idev->md_fw_rq_path, idev->dev) < 0) { ipio_err("Request firmware failed, try again\n"); if (request_firmware(&fw, idev->md_fw_rq_path, idev->dev) < 0) { ipio_err("Request firmware failed after retry\n"); ret = -1; goto out; } } fsize = fw->size; ipio_info("fsize = %d\n", fsize); if (fsize <= 0) { ipio_err("The size of file is invaild\n"); release_firmware(fw); ret = -1; goto out; } idev->tp_fw.size = 0; idev->tp_fw.data = vmalloc(fsize); if (ERR_ALLOC_MEM(idev->tp_fw.data)) { ipio_err("Failed to allocate tp_fw by vmalloc, try again\n"); idev->tp_fw.data = vmalloc(fsize); if (ERR_ALLOC_MEM(idev->tp_fw.data)) { ipio_err("Failed to allocate tp_fw after retry\n"); release_firmware(fw); ret = -ENOMEM; goto out; } } /* Copy fw data got from request_firmware to global */ ipio_memcpy((u8 *)idev->tp_fw.data, fw->data, fsize * sizeof(*fw->data), fsize); idev->tp_fw.size = fsize; release_firmware(fw); break; case FILP_OPEN: f = filp_open(idev->md_fw_filp_path, O_RDONLY, 0644); if (ERR_ALLOC_MEM(f)) { ipio_err("Failed to open the file, %ld\n", PTR_ERR(f)); ret = -1; goto out; } fsize = f->f_inode->i_size; ipio_info("fsize = %d\n", fsize); if (fsize <= 0) { ipio_err("The size of file is invaild\n"); filp_close(f, NULL); ret = -1; goto out; } idev->tp_fw.size = 0; idev->tp_fw.data = vmalloc(fsize); if (ERR_ALLOC_MEM(idev->tp_fw.data)) { ipio_err("Failed to allocate tp_fw by vmalloc, try again\n"); idev->tp_fw.data = vmalloc(fsize); if (ERR_ALLOC_MEM(idev->tp_fw.data)) { ipio_err("Failed to allocate tp_fw after retry\n"); filp_close(f, NULL); ret = -ENOMEM; goto out; } } /* ready to map user's memory to obtain data by reading files */ old_fs = get_fs(); set_fs(get_ds()); set_fs(KERNEL_DS); pos = 0; vfs_read(f, (u8 *)idev->tp_fw.data, fsize, &pos); set_fs(old_fs); filp_close(f, NULL); idev->tp_fw.size = fsize; break; default: ipio_err("Unknown open file method, %d\n", op); break; } if (ERR_ALLOC_MEM(idev->tp_fw.data) || idev->tp_fw.size <= 0) { ipio_err("fw data/size is invaild\n"); ret = -1; goto out; } /* Convert hex and copy data from tp_fw.data to pfw */ if (ilitek_tddi_fw_hex_convert((u8 *)idev->tp_fw.data, idev->tp_fw.size, pfw) < 0) { ipio_err("Convert hex file failed\n"); ret = -1; } out: ipio_vfree((void **)&(idev->tp_fw.data)); return ret; } int ilitek_tddi_fw_upgrade(int op) { int i, ret = 0, retry = 3; if (!idev->boot || idev->force_fw_update || ERR_ALLOC_MEM(pfw)) { idev->gesture_load_code = false; if (ERR_ALLOC_MEM(pfw)) { ipio_vfree((void **)&pfw); pfw = vmalloc(MAX_HEX_FILE_SIZE * sizeof(u8)); if (ERR_ALLOC_MEM(pfw)) { ipio_err("Failed to allocate pfw memory, %ld\n", PTR_ERR(pfw)); ipio_vfree((void **)&pfw); ret = -ENOMEM; goto out; } } for (i = 0; i < MAX_HEX_FILE_SIZE; i++) pfw[i] = 0xFF; if (ilitek_tdd_fw_hex_open(op, pfw) < 0) { ipio_err("Open hex file fail, try upgrade from ILI file\n"); /* * They might not be aware of a broken hex file if we recover * fw from ILI file. We should force them to check * hex files they attempt to update via device node. */ if (idev->node_update) { ipio_err("Ignore update from ILI file\n"); ipio_vfree((void **)&pfw); return -EFW_CONVERT_FILE; } if (ilitek_tddi_fw_ili_convert(pfw) < 0) { ipio_err("Convert ILI file error\n"); ret = -EFW_CONVERT_FILE; goto out; } } ilitek_tddi_fw_update_block_info(pfw); if (idev->chip->core_ver >= CORE_VER_1470 && idev->rib.nIsHostDownload == 0) { ipio_err("hex file interface no match error\n"); return -EFW_INTERFACE; } } do { ret = ilitek_tddi_fw_iram_upgrade(pfw, OFF); if (ret == UPDATE_PASS) break; ipio_err("Upgrade failed, do retry %d times\n", (3 - retry)); } while (--retry > 0); if (ret != UPDATE_PASS) { ipio_err("Failed to upgrade fw"); if (ilitek_tddi_reset_ctrl(idev->reset) < 0) ipio_err("TP reset failed while erasing data\n"); idev->xch_num = 0; idev->ych_num = 0; return ret; } out: ilitek_tddi_ic_get_core_ver(); ilitek_tddi_ic_get_protocl_ver(); ilitek_tddi_ic_get_fw_ver(); ilitek_tddi_ic_get_tp_info(); ilitek_tddi_ic_get_panel_info(); ilitek_tddi_ic_func_ctrl_reset(); return ret; } void ilitek_tddi_fw_read_flash_info(bool mcu) { return; } void ilitek_tddi_flash_clear_dma(void) { return; } void ilitek_tddi_flash_dma_write(u32 start, u32 end, u32 len) { return; } int ilitek_tddi_fw_dump_flash_data(u32 start, u32 end, bool user, bool mcu) { return 0; }