2019-06-30 01:03:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 naehrwert
|
2021-02-06 01:19:42 +00:00
|
|
|
* Copyright (c) 2018-2021 CTCaer
|
2019-06-30 01:03:00 +00:00
|
|
|
* Copyright (c) 2018 balika011
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gui.h"
|
2020-12-28 03:19:23 +00:00
|
|
|
#include <display/di.h>
|
2020-06-15 12:03:14 +00:00
|
|
|
#include "../config.h"
|
2019-06-30 01:03:00 +00:00
|
|
|
#include "../hos/hos.h"
|
|
|
|
#include "../hos/pkg1.h"
|
2020-06-15 12:03:14 +00:00
|
|
|
#include "../hos/sept.h"
|
2020-06-14 13:45:45 +00:00
|
|
|
#include <libs/fatfs/ff.h>
|
|
|
|
#include <input/touch.h>
|
|
|
|
#include <mem/emc.h>
|
|
|
|
#include <mem/heap.h>
|
|
|
|
#include <mem/sdram.h>
|
|
|
|
#include <mem/smmu.h>
|
2020-10-20 07:42:57 +00:00
|
|
|
#include <power/bm92t36.h>
|
2020-06-14 13:45:45 +00:00
|
|
|
#include <power/bq24193.h>
|
|
|
|
#include <power/max17050.h>
|
2021-01-05 15:12:03 +00:00
|
|
|
#include <power/max77620.h>
|
|
|
|
#include <power/max7762x.h>
|
|
|
|
#include <power/max77812.h>
|
2020-06-15 12:03:14 +00:00
|
|
|
#include <sec/se.h>
|
2020-06-14 13:45:45 +00:00
|
|
|
#include <sec/tsec.h>
|
|
|
|
#include <soc/fuse.h>
|
|
|
|
#include <soc/kfuse.h>
|
|
|
|
#include <soc/i2c.h>
|
|
|
|
#include <soc/t210.h>
|
|
|
|
#include <storage/mmc.h>
|
|
|
|
#include "../storage/nx_emmc_bis.h"
|
|
|
|
#include <storage/nx_sd.h>
|
|
|
|
#include <storage/sdmmc.h>
|
|
|
|
#include <utils/btn.h>
|
|
|
|
#include <utils/sprintf.h>
|
|
|
|
#include <utils/util.h>
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
#define SECTORS_TO_MIB_COEFF 11
|
|
|
|
|
2020-06-15 12:03:14 +00:00
|
|
|
extern hekate_config h_cfg;
|
|
|
|
extern volatile boot_cfg_t *b_cfg;
|
2020-04-30 10:54:11 +00:00
|
|
|
extern volatile nyx_storage_t *nyx_str;
|
|
|
|
|
2021-01-03 12:45:06 +00:00
|
|
|
extern char *emmcsn_path_impl(char *path, char *sub_dir, char *filename, sdmmc_storage_t *storage);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-06-15 12:03:14 +00:00
|
|
|
static u8 *cal0_buf = NULL;
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
static lv_res_t _create_window_dump_done(int error, char *dump_filenames)
|
|
|
|
{
|
|
|
|
lv_obj_t *dark_bg = lv_obj_create(lv_scr_act(), NULL);
|
2020-05-05 16:11:39 +00:00
|
|
|
lv_obj_set_style(dark_bg, &mbox_darken);
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_size(dark_bg, LV_HOR_RES, LV_VER_RES);
|
|
|
|
|
|
|
|
static const char * mbox_btn_map[] = { "\211", "\222OK", "\211", "" };
|
|
|
|
lv_obj_t * mbox = lv_mbox_create(dark_bg, NULL);
|
|
|
|
lv_mbox_set_recolor_text(mbox, true);
|
|
|
|
lv_obj_set_width(mbox, LV_HOR_RES / 9 * 5);
|
|
|
|
|
|
|
|
char *txt_buf = (char *)malloc(0x1000);
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
s_printf(txt_buf, "#FFDD00 Failed to dump to# %s#FFDD00 !#\nError: %d", dump_filenames, error);
|
|
|
|
else
|
2021-01-03 12:45:06 +00:00
|
|
|
{
|
|
|
|
char *sn = emmcsn_path_impl(NULL, NULL, NULL, NULL);
|
|
|
|
s_printf(txt_buf, "Dumping to SD card finished!\nFiles: #C7EA46 backup/%s/dumps/#\n%s", sn, dump_filenames);
|
|
|
|
}
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_mbox_set_text(mbox, txt_buf);
|
|
|
|
|
|
|
|
lv_mbox_add_btns(mbox, mbox_btn_map, mbox_action); // Important. After set_text.
|
|
|
|
|
|
|
|
lv_obj_align(mbox, NULL, LV_ALIGN_CENTER, 0, 0);
|
|
|
|
lv_obj_set_top(mbox, true);
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
2020-07-14 18:16:52 +00:00
|
|
|
static lv_res_t _cal0_dump_window_action(lv_obj_t *btns, const char * txt)
|
|
|
|
{
|
|
|
|
int btn_idx = lv_btnm_get_pressed(btns);
|
|
|
|
|
|
|
|
mbox_action(btns, txt);
|
|
|
|
|
|
|
|
if (btn_idx == 1)
|
|
|
|
{
|
|
|
|
int error = !sd_mount();
|
|
|
|
|
|
|
|
if (!error)
|
|
|
|
{
|
|
|
|
char path[64];
|
|
|
|
emmcsn_path_impl(path, "/dumps", "cal0.bin", NULL);
|
|
|
|
error = sd_save_to_file((u8 *)cal0_buf, 0x8000, path);
|
|
|
|
|
|
|
|
sd_unmount();
|
|
|
|
}
|
|
|
|
|
|
|
|
_create_window_dump_done(error, "cal0.bin");
|
|
|
|
}
|
|
|
|
|
|
|
|
return LV_RES_INV;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
static lv_res_t _battery_dump_window_action(lv_obj_t * btn)
|
|
|
|
{
|
|
|
|
int error = !sd_mount();
|
|
|
|
|
|
|
|
if (!error)
|
|
|
|
{
|
|
|
|
char path[64];
|
|
|
|
u8 *buf = (u8 *)malloc(0x100 * 2);
|
|
|
|
|
2020-03-03 02:22:59 +00:00
|
|
|
// Unlock model table.
|
|
|
|
u16 unlock = 0x59;
|
|
|
|
i2c_send_buf_small(I2C_1, MAXIM17050_I2C_ADDR, MAX17050_MODELEnable1, (u8 *)&unlock, 2);
|
|
|
|
unlock = 0xC4;
|
|
|
|
i2c_send_buf_small(I2C_1, MAXIM17050_I2C_ADDR, MAX17050_MODELEnable2, (u8 *)&unlock, 2);
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
// Dump all battery fuel gauge registers.
|
|
|
|
for (int i = 0; i < 0x200; i += 2)
|
|
|
|
{
|
|
|
|
i2c_recv_buf_small(buf + i, 2, I2C_1, MAXIM17050_I2C_ADDR, i >> 1);
|
|
|
|
msleep(1);
|
|
|
|
}
|
|
|
|
|
2020-03-03 02:22:59 +00:00
|
|
|
// Lock model table.
|
|
|
|
unlock = 0;
|
|
|
|
i2c_send_buf_small(I2C_1, MAXIM17050_I2C_ADDR, MAX17050_MODELEnable1, (u8 *)&unlock, 2);
|
|
|
|
i2c_send_buf_small(I2C_1, MAXIM17050_I2C_ADDR, MAX17050_MODELEnable2, (u8 *)&unlock, 2);
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
emmcsn_path_impl(path, "/dumps", "fuel_gauge.bin", NULL);
|
|
|
|
error = sd_save_to_file((u8 *)buf, 0x200, path);
|
|
|
|
|
2020-06-13 15:32:40 +00:00
|
|
|
sd_unmount();
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_create_window_dump_done(error, "fuel_gauge.bin");
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static lv_res_t _bootrom_dump_window_action(lv_obj_t * btn)
|
|
|
|
{
|
|
|
|
static const u32 BOOTROM_SIZE = 0x18000;
|
|
|
|
|
|
|
|
int error = !sd_mount();
|
|
|
|
if (!error)
|
|
|
|
{
|
|
|
|
char path[64];
|
|
|
|
u32 iram_evp_thunks[0x200];
|
|
|
|
u32 iram_evp_thunks_len = sizeof(iram_evp_thunks);
|
|
|
|
error = fuse_read_evp_thunk(iram_evp_thunks, &iram_evp_thunks_len);
|
|
|
|
if (!error)
|
|
|
|
{
|
|
|
|
emmcsn_path_impl(path, "/dumps", "evp_thunks.bin", NULL);
|
|
|
|
error = sd_save_to_file((u8 *)iram_evp_thunks, iram_evp_thunks_len, path);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
error = 255;
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
emmcsn_path_impl(path, "/dumps", "bootrom_patched.bin", NULL);
|
|
|
|
int res = sd_save_to_file((u8 *)BOOTROM_BASE, BOOTROM_SIZE, path);
|
|
|
|
if (!error)
|
|
|
|
error = res;
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
u32 ipatch_backup[14];
|
|
|
|
memcpy(ipatch_backup, (void *)IPATCH_BASE, sizeof(ipatch_backup));
|
|
|
|
memset((void*)IPATCH_BASE, 0, sizeof(ipatch_backup));
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
emmcsn_path_impl(path, "/dumps", "bootrom_unpatched.bin", NULL);
|
|
|
|
res = sd_save_to_file((u8 *)BOOTROM_BASE, BOOTROM_SIZE, path);
|
|
|
|
if (!error)
|
|
|
|
error = res;
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
memcpy((void*)IPATCH_BASE, ipatch_backup, sizeof(ipatch_backup));
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2020-06-13 15:32:40 +00:00
|
|
|
sd_unmount();
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
|
|
|
_create_window_dump_done(error, "evp_thunks.bin, bootrom_patched.bin, bootrom_unpatched.bin");
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static lv_res_t _fuse_dump_window_action(lv_obj_t * btn)
|
|
|
|
{
|
2020-07-04 18:04:20 +00:00
|
|
|
const u32 fuse_array_size_t210 = 192 * sizeof(u32);
|
|
|
|
const u32 fuse_array_size_t210b01 = 256 * sizeof(u32);
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
int error = !sd_mount();
|
|
|
|
if (!error)
|
|
|
|
{
|
2020-07-04 18:04:20 +00:00
|
|
|
char path[128];
|
|
|
|
if (!h_cfg.t210b01)
|
|
|
|
{
|
|
|
|
emmcsn_path_impl(path, "/dumps", "fuse_cached_t210.bin", NULL);
|
|
|
|
error = sd_save_to_file((u8 *)0x7000F900, 0x300, path);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-01-05 13:52:34 +00:00
|
|
|
emmcsn_path_impl(path, "/dumps", "fuse_cached_t210b01_x898.bin", NULL);
|
2020-12-28 03:30:34 +00:00
|
|
|
error = sd_save_to_file((u8 *)0x7000F898, 0x68, path);
|
2021-01-05 13:52:34 +00:00
|
|
|
emmcsn_path_impl(path, "/dumps", "fuse_cached_t210b01_x900.bin", NULL);
|
2020-12-28 03:30:34 +00:00
|
|
|
if (!error)
|
|
|
|
error = sd_save_to_file((u8 *)0x7000F900, 0x300, path);
|
2020-07-04 18:04:20 +00:00
|
|
|
}
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-07-04 18:04:20 +00:00
|
|
|
u32 words[fuse_array_size_t210b01 / sizeof(u32)];
|
2019-06-30 01:03:00 +00:00
|
|
|
fuse_read_array(words);
|
2020-07-04 18:04:20 +00:00
|
|
|
if (!h_cfg.t210b01)
|
|
|
|
emmcsn_path_impl(path, "/dumps", "fuse_array_raw_t210.bin", NULL);
|
|
|
|
else
|
|
|
|
emmcsn_path_impl(path, "/dumps", "fuse_array_raw_t210b01.bin", NULL);
|
|
|
|
int res = sd_save_to_file((u8 *)words, h_cfg.t210b01 ? fuse_array_size_t210b01 : fuse_array_size_t210, path);
|
2019-06-30 01:03:00 +00:00
|
|
|
if (!error)
|
|
|
|
error = res;
|
|
|
|
|
2020-06-13 15:32:40 +00:00
|
|
|
sd_unmount();
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
2021-01-03 12:45:06 +00:00
|
|
|
|
|
|
|
if (!h_cfg.t210b01)
|
|
|
|
_create_window_dump_done(error, "fuse_cached_t210.bin, fuse_array_raw_t210.bin");
|
|
|
|
else
|
|
|
|
_create_window_dump_done(error, "fuse_cached_t210b01_partX.bin, fuse_array_raw_t210b01.bin");
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static lv_res_t _kfuse_dump_window_action(lv_obj_t * btn)
|
|
|
|
{
|
|
|
|
u32 buf[KFUSE_NUM_WORDS];
|
|
|
|
int error = !kfuse_read(buf);
|
|
|
|
|
|
|
|
if (!error)
|
|
|
|
error = !sd_mount();
|
|
|
|
|
|
|
|
if (!error)
|
|
|
|
{
|
|
|
|
char path[64];
|
|
|
|
emmcsn_path_impl(path, "/dumps", "kfuses.bin", NULL);
|
|
|
|
error = sd_save_to_file((u8 *)buf, KFUSE_NUM_WORDS * 4, path);
|
|
|
|
|
2020-06-13 15:32:40 +00:00
|
|
|
sd_unmount();
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_create_window_dump_done(error, "kfuses.bin");
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32 tsec_keys[8];
|
|
|
|
|
|
|
|
static lv_res_t _tsec_keys_dump_window_action(lv_obj_t * btn)
|
|
|
|
{
|
|
|
|
int error = !sd_mount();
|
|
|
|
if (!error)
|
|
|
|
{
|
|
|
|
char path[64];
|
|
|
|
emmcsn_path_impl(path, "/dumps", "tsec_keys.bin", NULL);
|
2021-02-06 01:19:42 +00:00
|
|
|
error = sd_save_to_file(tsec_keys, SE_KEY_128_SIZE * 2, path);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-06-13 15:32:40 +00:00
|
|
|
sd_unmount();
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
|
|
|
_create_window_dump_done(error, "tsec_keys.bin");
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
2020-06-15 12:03:14 +00:00
|
|
|
static lv_res_t _create_mbox_cal0(lv_obj_t *btn)
|
|
|
|
{
|
|
|
|
lv_obj_t *dark_bg = lv_obj_create(lv_scr_act(), NULL);
|
|
|
|
lv_obj_set_style(dark_bg, &mbox_darken);
|
|
|
|
lv_obj_set_size(dark_bg, LV_HOR_RES, LV_VER_RES);
|
|
|
|
|
2020-07-14 18:16:52 +00:00
|
|
|
static const char * mbox_btn_map[] = { "\211", "\222Dump", "\222Close", "\211", "" };
|
2020-06-15 12:03:14 +00:00
|
|
|
lv_obj_t * mbox = lv_mbox_create(dark_bg, NULL);
|
|
|
|
lv_mbox_set_recolor_text(mbox, true);
|
|
|
|
lv_obj_set_width(mbox, LV_HOR_RES / 9 * 5);
|
|
|
|
|
|
|
|
lv_mbox_set_text(mbox, "#C7EA46 CAL0 Info#");
|
|
|
|
|
|
|
|
char *txt_buf = (char *)malloc(0x4000);
|
2020-08-15 09:30:18 +00:00
|
|
|
txt_buf[0] = 0;
|
2020-06-15 12:03:14 +00:00
|
|
|
|
|
|
|
lv_obj_t * lb_desc = lv_label_create(mbox, NULL);
|
|
|
|
lv_label_set_long_mode(lb_desc, LV_LABEL_LONG_BREAK);
|
|
|
|
lv_label_set_recolor(lb_desc, true);
|
|
|
|
lv_label_set_style(lb_desc, &monospace_text);
|
|
|
|
lv_obj_set_width(lb_desc, LV_HOR_RES / 9 * 3);
|
|
|
|
|
2020-08-15 09:30:18 +00:00
|
|
|
sd_mount();
|
|
|
|
|
2020-06-15 12:03:14 +00:00
|
|
|
// Read package1.
|
2020-08-15 09:30:18 +00:00
|
|
|
static const u32 BOOTLOADER_SIZE = 0x40000;
|
|
|
|
static const u32 BOOTLOADER_MAIN_OFFSET = 0x100000;
|
|
|
|
static const u32 BOOTLOADER_BACKUP_OFFSET = 0x140000;
|
|
|
|
static const u32 HOS_KEYBLOBS_OFFSET = 0x180000;
|
|
|
|
|
2020-07-17 15:00:32 +00:00
|
|
|
u8 kb = 0;
|
2020-08-15 09:30:18 +00:00
|
|
|
u32 bootloader_offset = BOOTLOADER_MAIN_OFFSET;
|
2020-07-04 18:32:36 +00:00
|
|
|
u32 pk1_offset = h_cfg.t210b01 ? sizeof(bl_hdr_t210b01_t) : 0; // Skip T210B01 OEM header.
|
2020-08-15 09:30:18 +00:00
|
|
|
u8 *pkg1 = (u8 *)malloc(BOOTLOADER_SIZE);
|
2021-02-06 01:24:58 +00:00
|
|
|
|
|
|
|
if (!sdmmc_storage_init_mmc(&emmc_storage, &emmc_sdmmc, SDMMC_BUS_WIDTH_8, SDHCI_TIMING_MMC_HS400))
|
|
|
|
{
|
|
|
|
lv_label_set_text(lb_desc, "#FFDD00 Failed to init eMMC!#");
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
}
|
2020-06-15 12:03:14 +00:00
|
|
|
sdmmc_storage_set_mmc_partition(&emmc_storage, EMMC_BOOT0);
|
|
|
|
|
2020-08-15 09:30:18 +00:00
|
|
|
try_load:
|
|
|
|
sdmmc_storage_read(&emmc_storage, bootloader_offset / NX_EMMC_BLOCKSIZE, BOOTLOADER_SIZE / NX_EMMC_BLOCKSIZE, pkg1);
|
|
|
|
|
|
|
|
char *build_date = malloc(32);
|
2020-07-04 18:32:36 +00:00
|
|
|
const pkg1_id_t *pkg1_id = pkg1_identify(pkg1 + pk1_offset, build_date);
|
2020-06-15 12:03:14 +00:00
|
|
|
|
2020-08-15 09:30:18 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "#00DDFF Found pkg1 ('%s')#\n", build_date);
|
2020-06-15 12:03:14 +00:00
|
|
|
free(build_date);
|
|
|
|
|
|
|
|
if (!pkg1_id)
|
|
|
|
{
|
2021-02-06 01:24:58 +00:00
|
|
|
strcat(txt_buf, "#FFDD00 Unknown pkg1 version!#\n");
|
2020-08-15 09:30:18 +00:00
|
|
|
// Try backup bootloader.
|
|
|
|
if (bootloader_offset != BOOTLOADER_BACKUP_OFFSET)
|
|
|
|
{
|
|
|
|
strcat(txt_buf, "Trying backup bootloader...\n");
|
|
|
|
bootloader_offset = BOOTLOADER_BACKUP_OFFSET;
|
|
|
|
goto try_load;
|
|
|
|
}
|
2020-06-15 12:03:14 +00:00
|
|
|
lv_label_set_text(lb_desc, txt_buf);
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2020-07-17 15:00:32 +00:00
|
|
|
kb = pkg1_id->kb;
|
|
|
|
|
2020-07-04 18:36:04 +00:00
|
|
|
// Skip if Mariko.
|
|
|
|
if (h_cfg.t210b01)
|
|
|
|
goto t210b01;
|
|
|
|
|
2020-06-15 12:03:14 +00:00
|
|
|
tsec_ctxt_t tsec_ctxt;
|
|
|
|
tsec_ctxt.fw = (u8 *)pkg1 + pkg1_id->tsec_off;
|
|
|
|
tsec_ctxt.pkg1 = pkg1;
|
|
|
|
tsec_ctxt.pkg11_off = pkg1_id->pkg11_off;
|
|
|
|
tsec_ctxt.secmon_base = pkg1_id->secmon_base;
|
|
|
|
|
|
|
|
// Get keys.
|
|
|
|
hos_eks_get();
|
2020-07-17 15:00:32 +00:00
|
|
|
if (kb >= KB_FIRMWARE_VERSION_700 && !h_cfg.sept_run)
|
2020-06-15 12:03:14 +00:00
|
|
|
{
|
|
|
|
u32 key_idx = 0;
|
2020-07-17 15:00:32 +00:00
|
|
|
if (kb >= KB_FIRMWARE_VERSION_810)
|
2020-06-15 12:03:14 +00:00
|
|
|
key_idx = 1;
|
|
|
|
|
2020-07-17 15:00:32 +00:00
|
|
|
if (h_cfg.eks && h_cfg.eks->enabled[key_idx] >= kb)
|
2020-06-15 12:03:14 +00:00
|
|
|
h_cfg.sept_run = true;
|
|
|
|
else
|
|
|
|
{
|
2021-02-06 01:24:58 +00:00
|
|
|
// Check that BCT is proper so sept can run.
|
|
|
|
u8 *bct_bldr = (u8 *)calloc(1, 512);
|
|
|
|
sdmmc_storage_read(&emmc_storage, 0x2200 / NX_EMMC_BLOCKSIZE, 1, &bct_bldr);
|
|
|
|
u32 bootloader_entrypoint = *(u32 *)&bct_bldr[0x144];
|
|
|
|
free(bct_bldr);
|
|
|
|
if (bootloader_entrypoint > SEPT_PRI_ENTRY)
|
|
|
|
{
|
|
|
|
lv_label_set_text(lb_desc, "#FFDD00 Failed to run sept because main BCT is improper!#\n"
|
|
|
|
"#FFDD00 Run sept with proper BCT at least once to cache keys.#\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set boot cfg.
|
2020-06-15 12:03:14 +00:00
|
|
|
b_cfg->autoboot = 0;
|
|
|
|
b_cfg->autoboot_list = 0;
|
2021-02-06 01:55:01 +00:00
|
|
|
b_cfg->extra_cfg = EXTRA_CFG_NYX_SEPT;
|
|
|
|
b_cfg->sept = NYX_SEPT_CAL0;
|
2020-06-15 12:03:14 +00:00
|
|
|
|
2020-07-17 15:00:32 +00:00
|
|
|
if (!reboot_to_sept((u8 *)tsec_ctxt.fw, kb))
|
2020-06-15 12:03:14 +00:00
|
|
|
{
|
|
|
|
lv_label_set_text(lb_desc, "#FFDD00 Failed to run sept#\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-04 18:36:04 +00:00
|
|
|
t210b01:;
|
2020-06-15 12:03:14 +00:00
|
|
|
// Read the correct keyblob.
|
|
|
|
u8 *keyblob = (u8 *)calloc(NX_EMMC_BLOCKSIZE, 1);
|
2020-08-15 09:30:18 +00:00
|
|
|
sdmmc_storage_read(&emmc_storage, HOS_KEYBLOBS_OFFSET / NX_EMMC_BLOCKSIZE + kb, 1, keyblob);
|
2020-06-15 12:03:14 +00:00
|
|
|
|
|
|
|
// Generate BIS keys
|
2020-07-17 15:00:32 +00:00
|
|
|
hos_bis_keygen(keyblob, kb, &tsec_ctxt);
|
2020-06-15 12:03:14 +00:00
|
|
|
|
|
|
|
free(keyblob);
|
|
|
|
|
|
|
|
if (!cal0_buf)
|
|
|
|
cal0_buf = malloc(0x10000);
|
|
|
|
|
|
|
|
// Read and decrypt CAL0.
|
|
|
|
sdmmc_storage_set_mmc_partition(&emmc_storage, EMMC_GPP);
|
|
|
|
LIST_INIT(gpt);
|
|
|
|
nx_emmc_gpt_parse(&gpt, &emmc_storage);
|
|
|
|
emmc_part_t *cal0_part = nx_emmc_part_find(&gpt, "PRODINFO"); // check if null
|
2021-02-06 02:05:31 +00:00
|
|
|
nx_emmc_bis_init(cal0_part, false, 0);
|
2020-06-15 12:03:14 +00:00
|
|
|
nx_emmc_bis_read(0, 0x40, cal0_buf);
|
2021-02-06 02:05:31 +00:00
|
|
|
nx_emmc_bis_end();
|
|
|
|
nx_emmc_gpt_free(&gpt);
|
2020-06-15 12:03:14 +00:00
|
|
|
|
2021-02-06 01:55:01 +00:00
|
|
|
// Clear BIS keys slots and reinstate SBK.
|
2020-06-15 12:03:14 +00:00
|
|
|
hos_bis_keys_clear();
|
|
|
|
|
|
|
|
nx_emmc_cal0_t *cal0 = (nx_emmc_cal0_t *)cal0_buf;
|
|
|
|
|
|
|
|
// If successful, save BIS keys.
|
|
|
|
if (memcmp(&cal0->magic, "CAL0", 4))
|
|
|
|
{
|
|
|
|
free(cal0_buf);
|
|
|
|
cal0_buf = NULL;
|
|
|
|
|
|
|
|
hos_eks_bis_clear();
|
|
|
|
|
|
|
|
lv_label_set_text(lb_desc, "#FFDD00 CAL0 is corrupt or wrong keys!#\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
hos_eks_bis_save();
|
|
|
|
|
|
|
|
u32 hash[8];
|
|
|
|
se_calc_sha256_oneshot(hash, (u8 *)cal0 + 0x40, cal0->body_size);
|
|
|
|
|
|
|
|
s_printf(txt_buf,
|
|
|
|
"#FF8000 CAL0 Version:# %d\n"
|
|
|
|
"#FF8000 Update Count:# %d\n"
|
|
|
|
"#FF8000 Serial Number:# %s\n"
|
|
|
|
"#FF8000 WLAN MAC:# %02X:%02X:%02X:%02X:%02X:%02X\n"
|
|
|
|
"#FF8000 Bluetooth MAC:# %02X:%02X:%02X:%02X:%02X:%02X\n"
|
|
|
|
"#FF8000 Battery LOT:# %s\n"
|
|
|
|
"#FF8000 LCD Vendor:# ",
|
|
|
|
cal0->version, cal0->update_cnt, cal0->serial_number,
|
|
|
|
cal0->wlan_mac[0], cal0->wlan_mac[1], cal0->wlan_mac[2], cal0->wlan_mac[3], cal0->wlan_mac[4], cal0->wlan_mac[5],
|
|
|
|
cal0->bd_mac[0], cal0->bd_mac[1], cal0->bd_mac[2], cal0->bd_mac[3], cal0->bd_mac[4], cal0->bd_mac[5],
|
|
|
|
cal0->battery_lot);
|
|
|
|
|
2020-07-17 13:57:45 +00:00
|
|
|
u8 display_rev = (nyx_str->info.disp_id >> 8) & 0xFF;
|
2020-06-15 12:03:14 +00:00
|
|
|
u32 display_id = (cal0->lcd_vendor & 0xFF) << 8 | (cal0->lcd_vendor & 0xFF0000) >> 16;
|
|
|
|
switch (display_id)
|
|
|
|
{
|
|
|
|
case PANEL_JDI_LAM062M109A:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "JDI LAM062M109A");
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
|
|
|
case PANEL_JDI_LPM062M326A:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "JDI LPM062M326A");
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
|
|
|
case PANEL_INL_P062CCA_AZ1:
|
2020-07-17 13:57:45 +00:00
|
|
|
strcat(txt_buf, "InnoLux P062CCA-AZ");
|
|
|
|
switch (display_rev)
|
|
|
|
{
|
|
|
|
case 0x93:
|
|
|
|
strcat(txt_buf, "1");
|
|
|
|
break;
|
|
|
|
case 0x95:
|
|
|
|
strcat(txt_buf, "2");
|
|
|
|
break;
|
2020-12-28 03:24:42 +00:00
|
|
|
case 0x96:
|
|
|
|
strcat(txt_buf, "3");
|
|
|
|
break;
|
2020-07-17 13:57:45 +00:00
|
|
|
default:
|
|
|
|
strcat(txt_buf, "X");
|
|
|
|
break;
|
|
|
|
}
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
|
|
|
case PANEL_AUO_A062TAN01:
|
2020-07-17 13:57:45 +00:00
|
|
|
strcat(txt_buf, "AUO A062TAN0");
|
|
|
|
switch (display_rev)
|
|
|
|
{
|
|
|
|
case 0x94:
|
|
|
|
strcat(txt_buf, "1");
|
|
|
|
break;
|
2020-08-28 02:26:18 +00:00
|
|
|
case 0x95:
|
|
|
|
strcat(txt_buf, "2");
|
|
|
|
break;
|
2020-07-17 13:57:45 +00:00
|
|
|
default:
|
|
|
|
strcat(txt_buf, "X");
|
|
|
|
break;
|
|
|
|
}
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
2020-07-17 13:57:45 +00:00
|
|
|
case PANEL_INL_2J055IA_27A:
|
|
|
|
strcat(txt_buf, "InnoLux 2J055IA-27A");
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
2020-07-17 13:57:45 +00:00
|
|
|
case PANEL_AUO_A055TAN01:
|
|
|
|
strcat(txt_buf, "AUO A055TAN01");
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
switch (cal0->lcd_vendor & 0xFF)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
case PANEL_JDI_XXX062M:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "JDI ");
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
|
|
|
case (PANEL_INL_P062CCA_AZ1 & 0xFF):
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "InnoLux ");
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
|
|
|
case (PANEL_AUO_A062TAN01 & 0xFF):
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "AUO ");
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Unknown");
|
2020-06-15 12:03:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool valid_cal0 = !memcmp(hash, cal0->body_sha256, 0x20);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), " (%06X)\n#FF8000 SHA256 Hash Match:# %s", cal0->lcd_vendor, valid_cal0 ? "Pass" : "Failed");
|
|
|
|
|
|
|
|
lv_label_set_text(lb_desc, txt_buf);
|
|
|
|
|
|
|
|
out:
|
|
|
|
free(pkg1);
|
|
|
|
free(txt_buf);
|
|
|
|
sd_unmount();
|
|
|
|
sdmmc_storage_end(&emmc_storage);
|
|
|
|
|
2020-07-14 18:16:52 +00:00
|
|
|
lv_mbox_add_btns(mbox, mbox_btn_map, _cal0_dump_window_action);
|
2020-06-15 12:03:14 +00:00
|
|
|
|
|
|
|
lv_obj_align(mbox, NULL, LV_ALIGN_CENTER, 0, 0);
|
|
|
|
lv_obj_set_top(mbox, true);
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
static lv_res_t _create_window_fuses_info_status(lv_obj_t *btn)
|
|
|
|
{
|
2020-04-30 10:54:11 +00:00
|
|
|
lv_obj_t *win = nyx_create_standard_window(SYMBOL_CHIP" HW & Cached Fuses Info");
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_win_add_btn(win, NULL, SYMBOL_DOWNLOAD" Dump fuses", _fuse_dump_window_action);
|
2020-06-15 12:03:14 +00:00
|
|
|
lv_win_add_btn(win, NULL, SYMBOL_INFO" CAL0 Info", _create_mbox_cal0);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_t *desc = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc, LV_HOR_RES / 2 / 5 * 2, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc = lv_label_create(desc, NULL);
|
|
|
|
lv_label_set_long_mode(lb_desc, LV_LABEL_LONG_BREAK);
|
|
|
|
lv_label_set_recolor(lb_desc, true);
|
2020-04-29 22:33:14 +00:00
|
|
|
lv_label_set_style(lb_desc, &monospace_text);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_label_set_static_text(lb_desc,
|
|
|
|
"SKU:\n"
|
|
|
|
"DRAM ID:\n"
|
|
|
|
"#FF8000 Burnt Fuses (ODM 7/6):#\n"
|
2021-01-04 00:47:08 +00:00
|
|
|
"ODM Fields (4, 6, 7):\n"
|
2019-06-30 01:03:00 +00:00
|
|
|
"Secure Boot key (SBK):\n"
|
|
|
|
"Device key (DK):\n"
|
|
|
|
"USB Stack:\n"
|
|
|
|
"Final Test Revision:\n"
|
|
|
|
"Chip Probing Revision:\n"
|
|
|
|
"Bootrom ipatches size:\n"
|
|
|
|
"CPU Speedo 0 (CPU Val):\n"
|
|
|
|
"CPU Speedo 1:\n"
|
|
|
|
"CPU Speedo 2 (GPU Val):\n"
|
|
|
|
"SoC Speedo 0 (SoC Val):\n"
|
|
|
|
"SoC Speedo 1 (BROM rev):\n"
|
|
|
|
"SoC Speedo 2:\n"
|
|
|
|
"CPU IDDQ Val:\n"
|
|
|
|
"SoC IDDQ Val:\n"
|
|
|
|
"Gpu IDDQ Val:\n"
|
|
|
|
"Vendor Code:\n"
|
|
|
|
"FAB Code:\n"
|
|
|
|
"LOT Code 0:\n"
|
|
|
|
"LOT Code 1:\n"
|
|
|
|
"Wafer ID:\n"
|
|
|
|
"X Coordinate:\n"
|
2020-04-30 10:54:11 +00:00
|
|
|
"Y Coordinate:\n"
|
2021-01-04 00:47:08 +00:00
|
|
|
"#FF8000 Chip ID Revision:#"
|
2019-06-30 01:03:00 +00:00
|
|
|
);
|
|
|
|
lv_obj_set_width(lb_desc, lv_obj_get_width(desc));
|
|
|
|
|
|
|
|
lv_obj_t *val = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(val, LV_HOR_RES / 11 * 3, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_val = lv_label_create(val, lb_desc);
|
|
|
|
|
2020-04-29 23:05:24 +00:00
|
|
|
char *txt_buf = (char *)malloc(0x4000);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
// Decode fuses.
|
2020-06-26 19:41:34 +00:00
|
|
|
char *sku;
|
|
|
|
char dram_man[32];
|
2020-12-28 03:32:23 +00:00
|
|
|
char fuses_hos_version[64];
|
2020-12-26 14:34:12 +00:00
|
|
|
u8 dram_id = fuse_read_dramid(true);
|
2020-06-26 19:41:34 +00:00
|
|
|
|
2020-12-26 14:34:12 +00:00
|
|
|
switch (fuse_read_hw_type())
|
2019-06-30 01:03:00 +00:00
|
|
|
{
|
2020-12-26 14:34:12 +00:00
|
|
|
case FUSE_NX_HW_TYPE_ICOSA:
|
2020-06-26 19:41:34 +00:00
|
|
|
sku = "Icosa (Erista)";
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
2020-12-26 14:34:12 +00:00
|
|
|
case FUSE_NX_HW_TYPE_IOWA:
|
2020-06-26 19:41:34 +00:00
|
|
|
sku = "Iowa (Mariko)";
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
2020-12-26 14:34:12 +00:00
|
|
|
case FUSE_NX_HW_TYPE_HOAG:
|
2020-06-26 19:41:34 +00:00
|
|
|
sku = "Hoag (Mariko)";
|
|
|
|
break;
|
|
|
|
default:
|
2021-01-04 00:47:08 +00:00
|
|
|
sku = "#FF8000 Unknown#";
|
2020-06-26 19:41:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (dram_id)
|
|
|
|
{
|
|
|
|
// LPDDR4 3200Mbps.
|
|
|
|
case LPDDR4_ICOSA_4GB_SAMSUNG_K4F6E304HB_MGCH:
|
|
|
|
case LPDDR4_COPPER_4GB_SAMSUNG_K4F6E304HB_MGCH:
|
|
|
|
strcpy(dram_man, "Samsung K4F6E304HB-MGCH 4GB");
|
|
|
|
break;
|
|
|
|
case LPDDR4_ICOSA_4GB_HYNIX_H9HCNNNBPUMLHR_NLE:
|
|
|
|
case LPDDR4_COPPER_4GB_HYNIX_H9HCNNNBPUMLHR_NLE:
|
|
|
|
strcpy(dram_man, "Hynix H9HCNNNBPUMLHR-NLE 4GB");
|
|
|
|
break;
|
|
|
|
case LPDDR4_ICOSA_4GB_MICRON_MT53B512M32D2NP_062_WT:
|
|
|
|
case LPDDR4_COPPER_4GB_MICRON_MT53B512M32D2NP_062_WT:
|
|
|
|
strcpy(dram_man, "Micron MT53B512M32D2NP-062");
|
|
|
|
break;
|
|
|
|
case LPDDR4_ICOSA_6GB_SAMSUNG_K4FHE3D4HM_MGCH:
|
|
|
|
strcpy(dram_man, "Samsung K4FHE3D4HM-MGCH 6GB");
|
|
|
|
break;
|
|
|
|
|
|
|
|
// LPDDR4X 3733Mbps.
|
|
|
|
case LPDDR4X_IOWA_4GB_SAMSUNG_X1X2:
|
|
|
|
strcpy(dram_man, "Samsung X1X2 4GB");
|
|
|
|
break;
|
|
|
|
case LPDDR4X_IOWA_4GB_SAMSUNG_K4U6E3S4AM_MGCJ:
|
|
|
|
case LPDDR4X_HOAG_4GB_SAMSUNG_K4U6E3S4AM_MGCJ:
|
|
|
|
strcpy(dram_man, "Samsung K4U6E3S4AM-MGCJ 4GB");
|
|
|
|
break;
|
|
|
|
case LPDDR4X_IOWA_8GB_SAMSUNG_K4UBE3D4AM_MGCJ:
|
|
|
|
case LPDDR4X_HOAG_8GB_SAMSUNG_K4UBE3D4AM_MGCJ:
|
|
|
|
strcpy(dram_man, "Samsung K4UBE3D4AM-MGCJ 8GB");
|
|
|
|
break;
|
|
|
|
case LPDDR4X_IOWA_4GB_HYNIX_H9HCNNNBKMMLHR_NME:
|
|
|
|
case LPDDR4X_HOAG_4GB_HYNIX_H9HCNNNBKMMLHR_NME:
|
|
|
|
strcpy(dram_man, "Hynix H9HCNNNBKMMLHR-NME 4GB");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LPDDR4X_IOWA_4GB_MICRON_MT53E512M32D2NP_046_WT: // 4266Mbps.
|
|
|
|
case LPDDR4X_HOAG_4GB_MICRON_MT53E512M32D2NP_046_WT: // 4266Mbps.
|
|
|
|
strcpy(dram_man, "Micron MT53E512M32D2NP-046 4GB");
|
|
|
|
break;
|
|
|
|
// LPDDR4X 4266Mbps?
|
|
|
|
case LPDDR4X_IOWA_4GB_SAMSUNG_Y:
|
|
|
|
strcpy(dram_man, "Samsung Y 4GB");
|
|
|
|
break;
|
|
|
|
case LPDDR4X_IOWA_4GB_SAMSUNG_1Y_X:
|
|
|
|
case LPDDR4X_HOAG_4GB_SAMSUNG_1Y_X:
|
2021-01-04 00:45:32 +00:00
|
|
|
case LPDDR4X_AULA_4GB_SAMSUNG_1Y_X:
|
2020-06-26 19:41:34 +00:00
|
|
|
strcpy(dram_man, "Samsung 1y X 4GB");
|
|
|
|
break;
|
|
|
|
case LPDDR4X_IOWA_8GB_SAMSUNG_1Y_X:
|
2021-01-04 00:45:32 +00:00
|
|
|
case LPDDR4X_AULA_8GB_SAMSUNG_1Y_X:
|
2020-06-26 19:41:34 +00:00
|
|
|
strcpy(dram_man, "Samsung 1y X 8GB");
|
|
|
|
break;
|
|
|
|
case LPDDR4X_IOWA_4GB_SAMSUNG_1Y_Y:
|
|
|
|
strcpy(dram_man, "Samsung 1y Y 4GB");
|
|
|
|
break;
|
|
|
|
case LPDDR4X_IOWA_8GB_SAMSUNG_1Y_Y:
|
|
|
|
strcpy(dram_man, "Samsung 1y Y 8GB");
|
|
|
|
break;
|
2021-01-04 00:45:32 +00:00
|
|
|
case LPDDR4X_AULA_4GB_SAMSUNG_1Y_A:
|
2020-06-26 19:41:34 +00:00
|
|
|
strcpy(dram_man, "Samsung 1y A 4GB");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
2020-12-02 20:26:06 +00:00
|
|
|
case LPDDR4X_IOWA_4GB_MICRON_1Y_A:
|
|
|
|
case LPDDR4X_HOAG_4GB_MICRON_1Y_A:
|
2021-01-04 00:45:32 +00:00
|
|
|
case LPDDR4X_AULA_4GB_MICRON_1Y_A:
|
2020-12-02 20:26:06 +00:00
|
|
|
strcpy(dram_man, "Micron 1y A 4GB");
|
|
|
|
break;
|
2019-06-30 01:03:00 +00:00
|
|
|
default:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcpy(dram_man, "#FF8000 Unknown#");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:15:28 +00:00
|
|
|
// Count burnt fuses.
|
|
|
|
u8 burnt_fuses_7 = fuse_count_burnt(fuse_read_odm(7));
|
|
|
|
u8 burnt_fuses_6 = fuse_count_burnt(fuse_read_odm(6));
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-12-28 03:32:23 +00:00
|
|
|
switch (burnt_fuses_7)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
strcpy(fuses_hos_version, "1.0.0");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
strcpy(fuses_hos_version, "2.0.0 - 2.3.0");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
strcpy(fuses_hos_version, "3.0.0");
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
strcpy(fuses_hos_version, "3.0.1 - 3.0.2");
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
strcpy(fuses_hos_version, "4.0.0 - 4.1.0");
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
strcpy(fuses_hos_version, "5.0.0 - 5.1.0");
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
strcpy(fuses_hos_version, "6.0.0 - 6.1.0");
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
strcpy(fuses_hos_version, "6.2.0");
|
|
|
|
break;
|
|
|
|
case 9:
|
|
|
|
strcpy(fuses_hos_version, "7.0.0 - 8.0.1");
|
|
|
|
break;
|
|
|
|
case 10:
|
|
|
|
strcpy(fuses_hos_version, "8.1.0 - 8.1.1");
|
|
|
|
break;
|
|
|
|
case 11:
|
|
|
|
strcpy(fuses_hos_version, "9.0.0 - 9.0.1");
|
|
|
|
break;
|
|
|
|
case 12:
|
|
|
|
strcpy(fuses_hos_version, "9.1.0 - 9.2.0");
|
|
|
|
break;
|
|
|
|
case 13:
|
|
|
|
strcpy(fuses_hos_version, "10.0.0 - 10.2.0");
|
|
|
|
break;
|
|
|
|
case 14:
|
|
|
|
strcpy(fuses_hos_version, "11.0.0+");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
strcpy(fuses_hos_version, "#FF8000 Unknown#");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:15:28 +00:00
|
|
|
// Calculate LOT.
|
2019-06-30 01:03:00 +00:00
|
|
|
u32 lot_code0 = (FUSE(FUSE_OPT_LOT_CODE_0) & 0xFFFFFFF) << 2;
|
|
|
|
u32 lot_bin = 0;
|
|
|
|
for (int i = 0; i < 5; ++i)
|
|
|
|
{
|
|
|
|
u32 digit = (lot_code0 & 0xFC000000) >> 26;
|
|
|
|
lot_bin *= 36;
|
|
|
|
lot_bin += digit;
|
|
|
|
lot_code0 <<= 6;
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:54:11 +00:00
|
|
|
u32 chip_id = APB_MISC(APB_MISC_GP_HIDREV);
|
2019-06-30 01:03:00 +00:00
|
|
|
// Parse fuses and display them.
|
|
|
|
s_printf(txt_buf,
|
2021-01-04 00:47:08 +00:00
|
|
|
"%X - %s - %s\n%02d: %s\n%d - %d (HOS: %s)\n%08X %08X %08X\n%08X%08X%08X%08X\n%08X\n"
|
2019-06-30 01:03:00 +00:00
|
|
|
"%s\n%d.%02d (0x%X)\n%d.%02d (0x%X)\n%d\n%d\n%d\n%d\n%d\n0x%X\n%d\n%d\n%d\n%d\n"
|
2020-04-30 10:54:11 +00:00
|
|
|
"%d\n%d\n%d (0x%X)\n%d\n%d\n%d\n%d\n"
|
2021-01-04 00:47:08 +00:00
|
|
|
"ID: %02X, Major: A0%d, Minor: %d",
|
2020-12-26 14:34:12 +00:00
|
|
|
FUSE(FUSE_SKU_INFO), sku, fuse_read_hw_state() ? "Dev" : "Retail",
|
2020-12-28 03:32:23 +00:00
|
|
|
dram_id, dram_man, burnt_fuses_7, burnt_fuses_6, fuses_hos_version,
|
2021-01-04 00:47:08 +00:00
|
|
|
fuse_read_odm(4), fuse_read_odm(6), fuse_read_odm(7),
|
2019-06-30 01:03:00 +00:00
|
|
|
byte_swap_32(FUSE(FUSE_PRIVATE_KEY0)), byte_swap_32(FUSE(FUSE_PRIVATE_KEY1)),
|
|
|
|
byte_swap_32(FUSE(FUSE_PRIVATE_KEY2)), byte_swap_32(FUSE(FUSE_PRIVATE_KEY3)),
|
|
|
|
byte_swap_32(FUSE(FUSE_PRIVATE_KEY4)),
|
2020-12-28 03:32:23 +00:00
|
|
|
((FUSE(FUSE_RESERVED_SW) & 0x80) || h_cfg.t210b01) ? "XUSB" : "USB2",
|
2019-06-30 01:03:00 +00:00
|
|
|
(FUSE(FUSE_OPT_FT_REV) >> 5) & 0x3F, FUSE(FUSE_OPT_FT_REV) & 0x1F, FUSE(FUSE_OPT_FT_REV),
|
|
|
|
(FUSE(FUSE_OPT_CP_REV) >> 5) & 0x3F, FUSE(FUSE_OPT_CP_REV) & 0x1F, FUSE(FUSE_OPT_CP_REV),
|
|
|
|
FUSE(FUSE_FIRST_BOOTROM_PATCH_SIZE) & 0x7F,
|
|
|
|
FUSE(FUSE_CPU_SPEEDO_0_CALIB), FUSE(FUSE_CPU_SPEEDO_1_CALIB), FUSE(FUSE_CPU_SPEEDO_2_CALIB),
|
|
|
|
FUSE(FUSE_SOC_SPEEDO_0_CALIB), FUSE(FUSE_SOC_SPEEDO_1_CALIB), FUSE(FUSE_SOC_SPEEDO_2_CALIB),
|
|
|
|
FUSE(FUSE_CPU_IDDQ_CALIB), FUSE(FUSE_SOC_IDDQ_CALIB), FUSE(FUSE_GPU_IDDQ_CALIB),
|
|
|
|
FUSE(FUSE_OPT_VENDOR_CODE), FUSE(FUSE_OPT_FAB_CODE), lot_bin, FUSE(FUSE_OPT_LOT_CODE_0),
|
2020-04-30 10:54:11 +00:00
|
|
|
FUSE(FUSE_OPT_LOT_CODE_1), FUSE(FUSE_OPT_WAFER_ID), FUSE(FUSE_OPT_X_COORDINATE), FUSE(FUSE_OPT_Y_COORDINATE),
|
2021-01-04 00:47:08 +00:00
|
|
|
(chip_id >> 8) & 0xFF, (chip_id >> 4) & 0xF, (chip_id >> 16) & 0xF);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_val, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_set_width(lb_val, lv_obj_get_width(val));
|
|
|
|
lv_obj_align(val, desc, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
|
|
|
|
lv_obj_t *desc2 = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc2, LV_HOR_RES / 2 / 5 * 4, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc2 = lv_label_create(desc2, NULL);
|
|
|
|
lv_label_set_long_mode(lb_desc2, LV_LABEL_LONG_BREAK);
|
|
|
|
lv_label_set_recolor(lb_desc2, true);
|
|
|
|
|
2020-04-30 10:51:46 +00:00
|
|
|
// DRAM info.
|
|
|
|
emc_mr_data_t ram_vendor = sdram_read_mrx(MR5_MAN_ID);
|
|
|
|
emc_mr_data_t ram_rev0 = sdram_read_mrx(MR6_REV_ID1);
|
|
|
|
emc_mr_data_t ram_rev1 = sdram_read_mrx(MR7_REV_ID2);
|
|
|
|
emc_mr_data_t ram_density = sdram_read_mrx(MR8_DENSITY);
|
2020-11-15 11:50:19 +00:00
|
|
|
u32 ranks = EMC(EMC_ADR_CFG) + 1;
|
|
|
|
u32 channels = (EMC(EMC_FBIO_CFG7) >> 1) & 3;
|
|
|
|
u32 die_channels = ranks * ((channels & 1) + ((channels & 2) >> 1));
|
2020-12-26 14:34:12 +00:00
|
|
|
s_printf(txt_buf, "#00DDFF %s SDRAM ##FF8000 (Ch 0 | Ch 1):#\n#FF8000 Vendor:# ", dram_id > 6 ? "LPDDR4X" : "LPDDR4");
|
2020-11-15 11:23:37 +00:00
|
|
|
switch (ram_vendor.rank0_ch0)
|
2020-04-30 10:51:46 +00:00
|
|
|
{
|
|
|
|
case 1:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Samsung");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
case 6:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Hynix");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
case 255:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Micron");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-01-04 00:47:08 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "#FF8000 Unknown# (%d)", ram_vendor.rank0_ch0);
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, " #FF8000 |# ");
|
2020-11-15 11:50:19 +00:00
|
|
|
switch (ram_vendor.rank0_ch1)
|
2020-04-30 10:51:46 +00:00
|
|
|
{
|
|
|
|
case 1:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Samsung");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
case 6:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Hynix");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
case 255:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Micron");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-01-04 00:47:08 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "#FF8000 Unknown# (%d)", ram_vendor.rank0_ch1);
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-01-04 00:47:08 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "\n#FF8000 Rev ID:# %X.%02X #FF8000 |# %X.%02X\n#FF8000 Density:# %d",
|
|
|
|
ram_rev0.rank0_ch0, ram_rev1.rank0_ch0, ram_rev0.rank0_ch1, ram_rev1.rank0_ch1, die_channels);
|
2020-11-15 11:23:37 +00:00
|
|
|
switch ((ram_density.rank0_ch0 & 0x3C) >> 2)
|
2020-04-30 10:51:46 +00:00
|
|
|
{
|
|
|
|
case 2:
|
2020-10-27 19:27:51 +00:00
|
|
|
strcat(txt_buf, " x 512MB");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2020-10-27 19:27:51 +00:00
|
|
|
strcat(txt_buf, " x 768MB");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2020-10-27 19:27:51 +00:00
|
|
|
strcat(txt_buf, " x 1GB");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-01-04 00:47:08 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), " x Unk (%d)", (ram_density.rank0_ch0 & 0x3C) >> 2);
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-01-04 00:47:08 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), " #FF8000 |# %d", die_channels);
|
2020-11-15 11:50:19 +00:00
|
|
|
switch ((ram_density.rank0_ch1 & 0x3C) >> 2)
|
2020-04-30 10:51:46 +00:00
|
|
|
{
|
|
|
|
case 2:
|
2020-10-27 19:27:51 +00:00
|
|
|
strcat(txt_buf, " x 512MB");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2020-10-27 19:27:51 +00:00
|
|
|
strcat(txt_buf, " x 768MB");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2020-10-27 19:27:51 +00:00
|
|
|
strcat(txt_buf, " x 1GB");
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-01-04 00:47:08 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), " x Unk (%d)", (ram_density.rank0_ch1 & 0x3C) >> 2);
|
2020-04-30 10:51:46 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, "\n\n");
|
2020-04-30 10:50:58 +00:00
|
|
|
|
|
|
|
// Display info.
|
2020-07-17 13:57:45 +00:00
|
|
|
u8 display_rev = (nyx_str->info.disp_id >> 8) & 0xFF;
|
2020-04-30 10:50:58 +00:00
|
|
|
u32 display_id = ((nyx_str->info.disp_id >> 8) & 0xFF00) | (nyx_str->info.disp_id & 0xFF);
|
|
|
|
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "#00DDFF Display Panel:#\n#FF8000 Model:# ");
|
2020-04-30 10:50:58 +00:00
|
|
|
|
|
|
|
switch (display_id)
|
|
|
|
{
|
|
|
|
case PANEL_JDI_LAM062M109A:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "JDI LAM062M109A");
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
|
|
|
case PANEL_JDI_LPM062M326A:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "JDI LPM062M326A");
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
|
|
|
case PANEL_INL_P062CCA_AZ1:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, "InnoLux P062CCA");
|
2020-07-17 13:57:45 +00:00
|
|
|
switch (display_rev)
|
|
|
|
{
|
|
|
|
case 0x93:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, "-AZ1");
|
2020-07-17 13:57:45 +00:00
|
|
|
break;
|
|
|
|
case 0x95:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, "-AZ2");
|
2020-07-17 13:57:45 +00:00
|
|
|
break;
|
2020-12-28 03:24:42 +00:00
|
|
|
case 0x96:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, "-AZ3");
|
2020-12-28 03:24:42 +00:00
|
|
|
break;
|
2020-07-17 13:57:45 +00:00
|
|
|
default:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, " #FFDD00 Contact me!#");
|
2020-07-17 13:57:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
|
|
|
case PANEL_AUO_A062TAN01:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, "AUO A062");
|
2020-07-17 13:57:45 +00:00
|
|
|
switch (display_rev)
|
|
|
|
{
|
|
|
|
case 0x94:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, "TAN01");
|
2020-07-17 13:57:45 +00:00
|
|
|
break;
|
2020-08-28 02:26:18 +00:00
|
|
|
case 0x95:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, "TAN02");
|
2020-08-28 02:26:18 +00:00
|
|
|
break;
|
2020-07-17 13:57:45 +00:00
|
|
|
default:
|
2021-01-04 00:47:08 +00:00
|
|
|
strcat(txt_buf, " #FFDD00 Contact me!#");
|
2020-07-17 13:57:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
2020-07-17 13:57:45 +00:00
|
|
|
case PANEL_INL_2J055IA_27A:
|
|
|
|
strcat(txt_buf, "InnoLux 2J055IA-27A");
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
2020-07-17 13:57:45 +00:00
|
|
|
case PANEL_AUO_A055TAN01:
|
|
|
|
strcat(txt_buf, "AUO A055TAN01");
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
switch (display_id & 0xFF)
|
|
|
|
{
|
2020-06-13 15:16:29 +00:00
|
|
|
case PANEL_JDI_XXX062M:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "JDI ");
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
|
|
|
case (PANEL_INL_P062CCA_AZ1 & 0xFF):
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "InnoLux ");
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
|
|
|
case (PANEL_AUO_A062TAN01 & 0xFF):
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "AUO ");
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-07-17 13:57:45 +00:00
|
|
|
strcat(txt_buf, "Unknown #FFDD00 Contact me!#");
|
2020-04-30 10:50:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "\n#FF8000 ID:# [%02X] %02X [%02X]",
|
|
|
|
nyx_str->info.disp_id & 0xFF, (nyx_str->info.disp_id >> 8) & 0xFF, (nyx_str->info.disp_id >> 16) & 0xFF);
|
|
|
|
|
2020-04-30 10:51:25 +00:00
|
|
|
touch_fw_info_t touch_fw;
|
2021-01-04 00:49:07 +00:00
|
|
|
touch_panel_info_t *touch_panel;
|
|
|
|
bool panel_ic_paired = false;
|
2020-04-30 10:51:25 +00:00
|
|
|
|
|
|
|
if (!touch_get_fw_info(&touch_fw))
|
|
|
|
{
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "\n\n#00DDFF Touch Panel:#\n#FF8000 Model:# ");
|
2021-01-04 00:49:07 +00:00
|
|
|
|
|
|
|
touch_panel = touch_get_panel_vendor();
|
|
|
|
if (touch_panel)
|
|
|
|
strcat(txt_buf, touch_panel->vendor);
|
|
|
|
else
|
|
|
|
strcat(txt_buf, "Unknown #FFDD00 Contact me!#");
|
|
|
|
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "\n#FF8000 ID:# %08X (", touch_fw.fw_id);
|
|
|
|
|
2020-04-30 10:51:25 +00:00
|
|
|
switch (touch_fw.fw_id)
|
|
|
|
{
|
2021-01-04 00:49:07 +00:00
|
|
|
case 0x00100100:
|
|
|
|
strcat(txt_buf, "4CD 1601");
|
|
|
|
if (touch_panel)
|
|
|
|
panel_ic_paired = touch_panel->idx == -1;
|
2020-04-30 10:51:25 +00:00
|
|
|
break;
|
|
|
|
case 0x00120100:
|
|
|
|
case 0x32000001:
|
2021-01-04 00:49:07 +00:00
|
|
|
strcat(txt_buf, "4CD 1801");
|
|
|
|
if (touch_panel)
|
|
|
|
panel_ic_paired = touch_panel->idx == 0;
|
2020-04-30 10:51:25 +00:00
|
|
|
break;
|
|
|
|
case 0x001A0300:
|
|
|
|
case 0x32000102:
|
2021-01-04 00:49:07 +00:00
|
|
|
strcat(txt_buf, "4CD 2602");
|
|
|
|
if (touch_panel)
|
|
|
|
panel_ic_paired = touch_panel->idx == 1;
|
2020-04-30 10:51:25 +00:00
|
|
|
break;
|
|
|
|
case 0x00290100:
|
|
|
|
case 0x32000302:
|
2021-01-04 00:49:07 +00:00
|
|
|
strcat(txt_buf, "4CD 3801");
|
|
|
|
if (touch_panel)
|
|
|
|
panel_ic_paired = touch_panel->idx == 2;
|
2020-04-30 10:51:25 +00:00
|
|
|
break;
|
|
|
|
case 0x31051820:
|
|
|
|
case 0x32000402:
|
2021-01-04 00:49:07 +00:00
|
|
|
strcat(txt_buf, "4CD XXXX");
|
|
|
|
if (touch_panel)
|
|
|
|
panel_ic_paired = touch_panel->idx == 3;
|
|
|
|
break;
|
|
|
|
case 0x32000501:
|
|
|
|
case 0x33000502:
|
|
|
|
strcat(txt_buf, "4CD UNKN");
|
|
|
|
if (touch_panel)
|
|
|
|
panel_ic_paired = touch_panel->idx == 4;
|
2020-04-30 10:51:25 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-01-04 00:49:07 +00:00
|
|
|
strcat(txt_buf, "#FF8000 Unknown#");
|
|
|
|
break;
|
2020-04-30 10:51:25 +00:00
|
|
|
}
|
|
|
|
|
2021-01-04 00:49:07 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), " - %s)\n#FF8000 FTB ver:# %04X\n#FF8000 FW rev:# %04X",
|
|
|
|
panel_ic_paired ? "Paired" : "#FFDD00 Error#", touch_fw.ftb_ver, touch_fw.fw_rev);
|
2020-04-30 10:51:25 +00:00
|
|
|
}
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
// Check if patched unit.
|
|
|
|
if (!fuse_check_patched_rcm())
|
2021-01-11 19:39:44 +00:00
|
|
|
strcat(txt_buf, "\n\n#96FF00 This unit is exploitable#\n#96FF00 to the RCM bug!#");
|
2019-06-30 01:03:00 +00:00
|
|
|
else
|
2021-01-11 19:39:44 +00:00
|
|
|
strcat(txt_buf, "\n\n#FF8000 This unit is patched#\n#FF8000 to the RCM bug!#");
|
2020-04-30 10:50:58 +00:00
|
|
|
|
|
|
|
lv_label_set_text(lb_desc2, txt_buf);
|
|
|
|
|
|
|
|
free(txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_set_width(lb_desc2, lv_obj_get_width(desc2));
|
|
|
|
lv_obj_align(desc2, val, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 2, 0);
|
|
|
|
|
2020-06-15 12:03:14 +00:00
|
|
|
if (!btn)
|
|
|
|
_create_mbox_cal0(NULL);
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
2020-06-15 12:03:14 +00:00
|
|
|
void sept_run_cal0(void *param)
|
|
|
|
{
|
|
|
|
_create_window_fuses_info_status(NULL);
|
|
|
|
}
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
static char *ipatches_txt;
|
|
|
|
static void _ipatch_process(u32 offset, u32 value)
|
|
|
|
{
|
|
|
|
s_printf(ipatches_txt + strlen(ipatches_txt), "%6X %4X ", BOOTROM_BASE + offset, value);
|
|
|
|
u8 lo = value & 0xFF;
|
|
|
|
switch (value >> 8)
|
|
|
|
{
|
|
|
|
case 0x20:
|
|
|
|
s_printf(ipatches_txt + strlen(ipatches_txt), "MOVS R0, ##0x%02X", lo);
|
|
|
|
break;
|
|
|
|
case 0xDF:
|
|
|
|
s_printf(ipatches_txt + strlen(ipatches_txt), "SVC ##0x%02X", lo);
|
|
|
|
break;
|
|
|
|
}
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(ipatches_txt, "\n");
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static lv_res_t _create_window_bootrom_info_status(lv_obj_t *btn)
|
|
|
|
{
|
|
|
|
lv_obj_t *win = nyx_create_standard_window(SYMBOL_CHIP" Bootrom Info");
|
|
|
|
lv_win_add_btn(win, NULL, SYMBOL_DOWNLOAD" Dump Bootrom", _bootrom_dump_window_action);
|
|
|
|
|
|
|
|
lv_obj_t *desc = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc, LV_HOR_RES / 2 / 3 * 2, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc = lv_label_create(desc, NULL);
|
|
|
|
lv_label_set_long_mode(lb_desc, LV_LABEL_LONG_BREAK);
|
|
|
|
lv_label_set_recolor(lb_desc, true);
|
2020-04-29 22:33:14 +00:00
|
|
|
lv_label_set_style(lb_desc, &monospace_text);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
char *txt_buf = (char *)malloc(0x1000);
|
|
|
|
ipatches_txt = txt_buf;
|
2019-09-10 14:05:52 +00:00
|
|
|
s_printf(txt_buf, "#00DDFF Ipatches:#\n#FF8000 Address "SYMBOL_DOT" Val "SYMBOL_DOT" Instruction#\n");
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
u32 res = fuse_read_ipatch(_ipatch_process);
|
|
|
|
if (res != 0)
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "#FFDD00 Failed to read ipatches. Error: %d#", res);
|
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_desc, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
free(txt_buf);
|
|
|
|
|
|
|
|
lv_obj_set_width(lb_desc, lv_obj_get_width(desc));
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static lv_res_t _create_window_tsec_keys_status(lv_obj_t *btn)
|
|
|
|
{
|
|
|
|
u32 retries = 0;
|
|
|
|
|
|
|
|
tsec_ctxt_t tsec_ctxt;
|
|
|
|
|
|
|
|
lv_obj_t *win = nyx_create_standard_window(SYMBOL_CHIP" TSEC Keys");
|
|
|
|
|
|
|
|
//Disable buttons.
|
|
|
|
nyx_window_toggle_buttons(win, true);
|
|
|
|
|
|
|
|
lv_obj_t *desc = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc, LV_HOR_RES / 2 / 2, LV_VER_RES - (LV_DPI * 11 / 6));
|
|
|
|
//lv_obj_align(desc, win, LV_ALIGN_ou_TOP_LEFT, 0, 40);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc = lv_label_create(desc, NULL);
|
|
|
|
lv_label_set_long_mode(lb_desc, LV_LABEL_LONG_BREAK);
|
|
|
|
lv_label_set_recolor(lb_desc, true);
|
2020-04-29 22:33:14 +00:00
|
|
|
lv_label_set_style(lb_desc, &monospace_text);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-08-15 09:30:18 +00:00
|
|
|
char *txt_buf = (char *)malloc(0x1000);
|
|
|
|
char *txt_buf2 = (char *)malloc(0x1000);
|
|
|
|
txt_buf[0] = 0;
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
// Read package1.
|
2020-08-15 09:30:18 +00:00
|
|
|
static const u32 BOOTLOADER_SIZE = 0x40000;
|
|
|
|
static const u32 BOOTLOADER_MAIN_OFFSET = 0x100000;
|
|
|
|
static const u32 BOOTLOADER_BACKUP_OFFSET = 0x140000;
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
u8 *pkg1 = (u8 *)malloc(0x40000);
|
2020-08-15 09:30:18 +00:00
|
|
|
u32 bootloader_offset = BOOTLOADER_MAIN_OFFSET;
|
|
|
|
|
|
|
|
try_load:
|
2020-06-15 11:58:50 +00:00
|
|
|
sdmmc_storage_init_mmc(&emmc_storage, &emmc_sdmmc, SDMMC_BUS_WIDTH_8, SDHCI_TIMING_MMC_HS400);
|
|
|
|
sdmmc_storage_set_mmc_partition(&emmc_storage, EMMC_BOOT0);
|
2020-08-15 09:30:18 +00:00
|
|
|
sdmmc_storage_read(&emmc_storage, bootloader_offset / NX_EMMC_BLOCKSIZE, BOOTLOADER_SIZE / NX_EMMC_BLOCKSIZE, pkg1);
|
2020-06-15 11:58:50 +00:00
|
|
|
sdmmc_storage_end(&emmc_storage);
|
2020-08-15 09:30:18 +00:00
|
|
|
|
|
|
|
char *build_date = malloc(32);
|
2019-06-30 01:03:00 +00:00
|
|
|
const pkg1_id_t *pkg1_id = pkg1_identify(pkg1, build_date);
|
|
|
|
|
2020-08-15 09:30:18 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "#00DDFF Found pkg1 ('%s')#\n", build_date);
|
2019-06-30 01:03:00 +00:00
|
|
|
free(build_date);
|
|
|
|
|
|
|
|
if (!pkg1_id)
|
|
|
|
{
|
2021-02-06 01:55:01 +00:00
|
|
|
strcat(txt_buf, "#FFDD00 Unknown pkg1 version!#\n");
|
2020-08-15 09:30:18 +00:00
|
|
|
// Try backup bootloader.
|
|
|
|
if (bootloader_offset != BOOTLOADER_BACKUP_OFFSET)
|
|
|
|
{
|
|
|
|
strcat(txt_buf, "Trying backup bootloader...\n");
|
|
|
|
bootloader_offset = BOOTLOADER_BACKUP_OFFSET;
|
|
|
|
goto try_load;
|
|
|
|
}
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_desc, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_width(lb_desc, lv_obj_get_width(desc));
|
|
|
|
|
|
|
|
goto out;
|
|
|
|
}
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_desc, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_width(lb_desc, lv_obj_get_width(desc));
|
|
|
|
|
|
|
|
lv_obj_t *val = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(val, LV_HOR_RES / 11 * 3, LV_VER_RES - (LV_DPI * 11 / 6));
|
|
|
|
|
|
|
|
lv_obj_t * lb_val = lv_label_create(val, lb_desc);
|
2020-04-29 22:33:14 +00:00
|
|
|
lv_label_set_style(lb_val, &monospace_text);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-04-27 05:47:00 +00:00
|
|
|
lv_label_set_text(lb_val, "Please wait...");
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_width(lb_val, lv_obj_get_width(val));
|
|
|
|
lv_obj_align(val, desc, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
manual_system_maintenance(true);
|
|
|
|
|
|
|
|
tsec_ctxt.fw = (u8 *)pkg1 + pkg1_id->tsec_off;
|
|
|
|
tsec_ctxt.pkg1 = pkg1;
|
|
|
|
tsec_ctxt.pkg11_off = pkg1_id->pkg11_off;
|
|
|
|
tsec_ctxt.secmon_base = pkg1_id->secmon_base;
|
|
|
|
|
|
|
|
if (pkg1_id->kb <= KB_FIRMWARE_VERSION_600)
|
|
|
|
tsec_ctxt.size = 0xF00;
|
|
|
|
else if (pkg1_id->kb == KB_FIRMWARE_VERSION_620)
|
|
|
|
tsec_ctxt.size = 0x2900;
|
|
|
|
else if (pkg1_id->kb == KB_FIRMWARE_VERSION_700)
|
|
|
|
{
|
|
|
|
tsec_ctxt.size = 0x3000;
|
|
|
|
// Exit after TSEC key generation.
|
|
|
|
*((vu16 *)((u32)tsec_ctxt.fw + 0x2DB5)) = 0x02F8;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
tsec_ctxt.size = 0x3300;
|
|
|
|
|
|
|
|
if (pkg1_id->kb == KB_FIRMWARE_VERSION_620)
|
|
|
|
{
|
|
|
|
u8 *tsec_paged = (u8 *)page_alloc(3);
|
|
|
|
memcpy(tsec_paged, (void *)tsec_ctxt.fw, tsec_ctxt.size);
|
|
|
|
tsec_ctxt.fw = tsec_paged;
|
|
|
|
}
|
|
|
|
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
while (tsec_query((u8 *)tsec_keys, pkg1_id->kb, &tsec_ctxt) < 0)
|
|
|
|
{
|
|
|
|
memset(tsec_keys, 0x00, 0x20);
|
|
|
|
|
|
|
|
retries++;
|
|
|
|
|
|
|
|
if (retries > 3)
|
|
|
|
{
|
|
|
|
res = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "#C7EA46 TSEC Key:#\n");
|
2019-06-30 01:03:00 +00:00
|
|
|
if (res >= 0)
|
|
|
|
{
|
2019-10-18 15:02:06 +00:00
|
|
|
s_printf(txt_buf2, "\n%08X%08X%08X%08X\n",
|
|
|
|
byte_swap_32(tsec_keys[0]), byte_swap_32(tsec_keys[1]), byte_swap_32(tsec_keys[2]), byte_swap_32(tsec_keys[3]));
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
if (pkg1_id->kb == KB_FIRMWARE_VERSION_620)
|
|
|
|
{
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "#C7EA46 TSEC root:#\n");
|
2019-10-18 15:02:06 +00:00
|
|
|
s_printf(txt_buf2 + strlen(txt_buf2), "%08X%08X%08X%08X\n",
|
2019-06-30 01:03:00 +00:00
|
|
|
byte_swap_32(tsec_keys[4]), byte_swap_32(tsec_keys[5]), byte_swap_32(tsec_keys[6]), byte_swap_32(tsec_keys[7]));
|
|
|
|
}
|
|
|
|
lv_win_add_btn(win, NULL, SYMBOL_DOWNLOAD" Dump Keys", _tsec_keys_dump_window_action);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s_printf(txt_buf2, "Error: %x", res);
|
|
|
|
}
|
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_desc, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_val, txt_buf2);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
free(pkg1);
|
|
|
|
free(txt_buf);
|
|
|
|
free(txt_buf2);
|
|
|
|
|
|
|
|
nyx_window_toggle_buttons(win, false);
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
2020-04-30 12:05:41 +00:00
|
|
|
static lv_res_t _create_mbox_benchmark(bool sd_bench)
|
|
|
|
{
|
|
|
|
sdmmc_t emmc_sdmmc;
|
|
|
|
sdmmc_storage_t emmc_storage;
|
|
|
|
sdmmc_storage_t *storage;
|
|
|
|
|
|
|
|
lv_obj_t *dark_bg = lv_obj_create(lv_scr_act(), NULL);
|
2020-05-05 16:11:39 +00:00
|
|
|
lv_obj_set_style(dark_bg, &mbox_darken);
|
2020-04-30 12:05:41 +00:00
|
|
|
lv_obj_set_size(dark_bg, LV_HOR_RES, LV_VER_RES);
|
|
|
|
|
|
|
|
static const char * mbox_btn_map[] = { "\211", "\222OK", "\211", "" };
|
|
|
|
lv_obj_t * mbox = lv_mbox_create(dark_bg, NULL);
|
|
|
|
lv_mbox_set_recolor_text(mbox, true);
|
2021-02-06 01:51:26 +00:00
|
|
|
lv_obj_set_width(mbox, LV_HOR_RES / 7 * 4);
|
2020-04-30 12:05:41 +00:00
|
|
|
|
2021-02-06 01:51:26 +00:00
|
|
|
char *txt_buf = (char *)malloc(0x4000);
|
2020-04-30 12:05:41 +00:00
|
|
|
|
2021-02-06 01:51:26 +00:00
|
|
|
s_printf(txt_buf, "#FF8000 %s Benchmark#\n[Raw Reads] Abort: VOL- & VOL+",
|
|
|
|
sd_bench ? "SD Card" : "eMMC");
|
2020-04-30 12:05:41 +00:00
|
|
|
|
|
|
|
lv_mbox_set_text(mbox, txt_buf);
|
2021-02-06 01:51:26 +00:00
|
|
|
txt_buf[0] = 0;
|
|
|
|
|
|
|
|
lv_obj_t *h1 = lv_cont_create(mbox, NULL);
|
|
|
|
lv_cont_set_fit(h1, false, true);
|
|
|
|
lv_cont_set_style(h1, &lv_style_transp_tight);
|
|
|
|
lv_obj_set_width(h1, lv_obj_get_width(mbox) - LV_DPI / 10);
|
|
|
|
|
|
|
|
lv_obj_t *lbl_status = lv_label_create(h1, NULL);
|
|
|
|
lv_label_set_style(lbl_status, &monospace_text);
|
|
|
|
lv_label_set_recolor(lbl_status, true);
|
|
|
|
lv_label_set_text(lbl_status, " ");
|
|
|
|
lv_obj_align(lbl_status, h1, LV_ALIGN_IN_TOP_MID, 0, 0);
|
2020-04-30 12:05:41 +00:00
|
|
|
|
2021-02-06 01:51:26 +00:00
|
|
|
lv_obj_t *bar = lv_bar_create(mbox, NULL);
|
2020-04-30 12:05:41 +00:00
|
|
|
lv_obj_set_size(bar, LV_DPI * 2, LV_DPI / 5);
|
|
|
|
lv_bar_set_range(bar, 0, 100);
|
|
|
|
lv_bar_set_value(bar, 0);
|
|
|
|
|
|
|
|
lv_obj_align(mbox, NULL, LV_ALIGN_CENTER, 0, 0);
|
|
|
|
lv_obj_set_top(mbox, true);
|
|
|
|
manual_system_maintenance(true);
|
|
|
|
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
if (sd_bench)
|
|
|
|
{
|
|
|
|
storage = &sd_storage;
|
|
|
|
res = !sd_mount();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
storage = &emmc_storage;
|
|
|
|
res = !sdmmc_storage_init_mmc(&emmc_storage, &emmc_sdmmc, SDMMC_BUS_WIDTH_8, SDHCI_TIMING_MMC_HS400);
|
|
|
|
if (!res)
|
|
|
|
sdmmc_storage_set_mmc_partition(&emmc_storage, EMMC_GPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res)
|
|
|
|
lv_mbox_set_text(mbox, "#FFDD00 Failed to init Storage!#");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
u32 iters = 3;
|
2021-02-06 01:51:26 +00:00
|
|
|
u32 offset_chunk_start = ALIGN_DOWN(storage->sec_cnt / 3, 0x8000); // Align to 16MB.
|
2020-04-30 12:05:41 +00:00
|
|
|
if (storage->sec_cnt < 0xC00000)
|
|
|
|
iters -= 2; // 4GB card.
|
|
|
|
|
|
|
|
for (u32 iter_curr = 0; iter_curr < iters; iter_curr++)
|
|
|
|
{
|
|
|
|
u32 pct = 0;
|
|
|
|
u32 prevPct = 200;
|
2021-02-06 01:51:26 +00:00
|
|
|
u32 timer = 0;
|
2020-04-30 12:05:41 +00:00
|
|
|
u32 lba_curr = 0;
|
|
|
|
u32 sector = offset_chunk_start * iter_curr;
|
2021-02-06 01:51:26 +00:00
|
|
|
u32 sector_num = 0x8000; // 16MB chunks.
|
|
|
|
u32 data_remaining = 0x200000; // 1GB.
|
2020-04-30 12:05:41 +00:00
|
|
|
|
2021-02-06 01:51:26 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "#C7EA46 %d/3# - Sector Offset #C7EA46 %08X#:\n", iter_curr + 1, sector);
|
|
|
|
|
|
|
|
while (data_remaining)
|
|
|
|
{
|
|
|
|
u32 time_taken = get_tmr_us();
|
|
|
|
sdmmc_storage_read(storage, sector + lba_curr, sector_num, (u8 *)MIXD_BUF_ALIGNED);
|
|
|
|
time_taken = get_tmr_us() - time_taken;
|
|
|
|
timer += time_taken;
|
2020-04-30 12:05:41 +00:00
|
|
|
|
2021-02-06 01:51:26 +00:00
|
|
|
manual_system_maintenance(false);
|
|
|
|
data_remaining -= sector_num;
|
|
|
|
lba_curr += sector_num;
|
|
|
|
|
|
|
|
pct = (lba_curr * 100) / 0x200000;
|
|
|
|
if (pct != prevPct)
|
|
|
|
{
|
|
|
|
lv_bar_set_value(bar, pct);
|
|
|
|
manual_system_maintenance(true);
|
|
|
|
|
|
|
|
prevPct = pct;
|
|
|
|
|
|
|
|
if (btn_read_vol() == (BTN_VOL_UP | BTN_VOL_DOWN))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lv_bar_set_value(bar, 100);
|
|
|
|
|
|
|
|
u32 rate_1k = ((u64)1024 * 1000 * 1000 * 1000) / timer;
|
|
|
|
s_printf(txt_buf + strlen(txt_buf),
|
|
|
|
" Sequential 16MiB - Rate: #C7EA46 %3d.%02d MiB/s#\n",
|
|
|
|
rate_1k / 1000, (rate_1k % 1000) / 10);
|
|
|
|
lv_label_set_text(lbl_status, txt_buf);
|
|
|
|
lv_obj_align(lbl_status, NULL, LV_ALIGN_CENTER, 0, 0);
|
|
|
|
lv_obj_align(mbox, NULL, LV_ALIGN_CENTER, 0, 0);
|
|
|
|
manual_system_maintenance(true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pct = 0;
|
|
|
|
prevPct = 200;
|
|
|
|
timer = 0;
|
|
|
|
lba_curr = 0;
|
|
|
|
sector_num = 8; // 4KB chunks.
|
|
|
|
data_remaining = 0x100000; // 512MB.
|
2020-04-30 12:05:41 +00:00
|
|
|
|
|
|
|
while (data_remaining)
|
|
|
|
{
|
2021-02-06 01:51:26 +00:00
|
|
|
u32 time_taken = get_tmr_us();
|
2020-04-30 12:05:41 +00:00
|
|
|
sdmmc_storage_read(storage, sector + lba_curr, sector_num, (u8 *)MIXD_BUF_ALIGNED);
|
2021-02-06 01:51:26 +00:00
|
|
|
time_taken = get_tmr_us() - time_taken;
|
|
|
|
timer += time_taken;
|
|
|
|
|
2020-04-30 12:05:41 +00:00
|
|
|
manual_system_maintenance(false);
|
|
|
|
data_remaining -= sector_num;
|
|
|
|
lba_curr += sector_num;
|
|
|
|
|
2021-02-06 01:51:26 +00:00
|
|
|
pct = (lba_curr * 100) / 0x100000;
|
2020-04-30 12:05:41 +00:00
|
|
|
if (pct != prevPct)
|
|
|
|
{
|
|
|
|
lv_bar_set_value(bar, pct);
|
|
|
|
manual_system_maintenance(true);
|
|
|
|
|
|
|
|
prevPct = pct;
|
|
|
|
|
|
|
|
if (btn_read_vol() == (BTN_VOL_UP | BTN_VOL_DOWN))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-02-06 01:51:26 +00:00
|
|
|
lv_bar_set_value(bar, 100);
|
|
|
|
|
|
|
|
rate_1k = ((u64)512 * 1000 * 1000 * 1000) / timer;
|
|
|
|
u32 iops_1k = ((u64)512 * 1024 * 1000 * 1000 * 1000) / (4096 / 1024) / timer / 1000;
|
|
|
|
s_printf(txt_buf + strlen(txt_buf),
|
|
|
|
" Sequential 4KiB - Rate: #C7EA46 %3d.%02d MiB/s#, IOPS: #C7EA46 %4d#\n",
|
|
|
|
rate_1k / 1000, (rate_1k % 1000) / 10, iops_1k);
|
|
|
|
lv_label_set_text(lbl_status, txt_buf);
|
|
|
|
lv_obj_align(lbl_status, NULL, LV_ALIGN_CENTER, 0, 0);
|
|
|
|
lv_obj_align(mbox, NULL, LV_ALIGN_CENTER, 0, 0);
|
|
|
|
manual_system_maintenance(true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
u32 lba_idx = 0;
|
|
|
|
u32 *random_offsets = malloc(0x20000 * sizeof(u32));
|
|
|
|
u32 random_numbers[4];
|
|
|
|
for (u32 i = 0; i < 0x20000; i += 4)
|
|
|
|
{
|
|
|
|
// Generate new random numbers.
|
|
|
|
while (!se_gen_prng128(random_numbers))
|
|
|
|
;
|
|
|
|
// Clamp offsets to 512MBrange.
|
|
|
|
random_offsets[i + 0] = random_numbers[0] % 0x100000;
|
|
|
|
random_offsets[i + 1] = random_numbers[1] % 0x100000;
|
|
|
|
random_offsets[i + 2] = random_numbers[2] % 0x100000;
|
|
|
|
random_offsets[i + 3] = random_numbers[3] % 0x100000;
|
|
|
|
}
|
|
|
|
|
|
|
|
pct = 0;
|
|
|
|
prevPct = 200;
|
|
|
|
timer = 0;
|
|
|
|
data_remaining = 0x100000; // 512MB.
|
|
|
|
|
|
|
|
while (data_remaining)
|
|
|
|
{
|
|
|
|
u32 time_taken = get_tmr_us();
|
|
|
|
sdmmc_storage_read(storage, sector + random_offsets[lba_idx], sector_num, (u8 *)MIXD_BUF_ALIGNED);
|
|
|
|
time_taken = get_tmr_us() - time_taken;
|
|
|
|
timer += time_taken;
|
|
|
|
|
|
|
|
manual_system_maintenance(false);
|
|
|
|
data_remaining -= sector_num;
|
|
|
|
lba_idx++;
|
|
|
|
|
|
|
|
pct = (lba_idx * 100) / 0x20000;
|
|
|
|
if (pct != prevPct)
|
|
|
|
{
|
|
|
|
lv_bar_set_value(bar, pct);
|
|
|
|
manual_system_maintenance(true);
|
|
|
|
|
|
|
|
prevPct = pct;
|
2020-04-30 12:05:41 +00:00
|
|
|
|
2021-02-06 01:51:26 +00:00
|
|
|
if (btn_read_vol() == (BTN_VOL_UP | BTN_VOL_DOWN))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-04-30 12:05:41 +00:00
|
|
|
lv_bar_set_value(bar, 100);
|
2021-02-06 01:51:26 +00:00
|
|
|
|
|
|
|
// Calculate rate and IOPS for 512MB transfer.
|
|
|
|
rate_1k = ((u64)512 * 1000 * 1000 * 1000) / timer;
|
|
|
|
iops_1k = ((u64)512 * 1024 * 1000 * 1000 * 1000) / (4096 / 1024) / timer / 1000;
|
2020-04-30 12:05:41 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf),
|
2021-02-06 01:51:26 +00:00
|
|
|
" Random 4KiB - Rate: #C7EA46 %3d.%02d MiB/s#, IOPS: #C7EA46 %4d#\n",
|
|
|
|
rate_1k / 1000, (rate_1k % 1000) / 10, iops_1k);
|
|
|
|
lv_label_set_text(lbl_status, txt_buf);
|
|
|
|
lv_obj_align(lbl_status, NULL, LV_ALIGN_CENTER, 0, 0);
|
2020-04-30 12:05:41 +00:00
|
|
|
lv_obj_align(mbox, NULL, LV_ALIGN_CENTER, 0, 0);
|
|
|
|
manual_system_maintenance(true);
|
2021-02-06 01:51:26 +00:00
|
|
|
free(random_offsets);
|
2020-04-30 12:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lv_obj_del(bar);
|
|
|
|
|
|
|
|
if (sd_bench)
|
2020-06-13 15:32:40 +00:00
|
|
|
sd_unmount();
|
2020-04-30 12:05:41 +00:00
|
|
|
else
|
|
|
|
sdmmc_storage_end(&emmc_storage);
|
|
|
|
}
|
2021-02-06 01:51:26 +00:00
|
|
|
free(txt_buf);
|
2020-04-30 12:05:41 +00:00
|
|
|
|
|
|
|
lv_mbox_add_btns(mbox, mbox_btn_map, mbox_action); // Important. After set_text.
|
2021-02-06 01:51:26 +00:00
|
|
|
lv_obj_align(mbox, NULL, LV_ALIGN_CENTER, 0, 0);
|
2020-04-30 12:05:41 +00:00
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static lv_res_t _create_mbox_emmc_bench(lv_obj_t * btn)
|
|
|
|
{
|
|
|
|
_create_mbox_benchmark(false);
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static lv_res_t _create_mbox_sd_bench(lv_obj_t * btn)
|
|
|
|
{
|
|
|
|
_create_mbox_benchmark(true);
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
static lv_res_t _create_window_emmc_info_status(lv_obj_t *btn)
|
|
|
|
{
|
|
|
|
lv_obj_t *win = nyx_create_standard_window(SYMBOL_CHIP" Internal eMMC Info");
|
2020-04-30 12:05:41 +00:00
|
|
|
lv_win_add_btn(win, NULL, SYMBOL_CHIP" Benchmark", _create_mbox_emmc_bench);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_t *desc = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc, LV_HOR_RES / 2 / 6 * 2, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc = lv_label_create(desc, NULL);
|
|
|
|
lv_label_set_long_mode(lb_desc, LV_LABEL_LONG_BREAK);
|
|
|
|
lv_label_set_recolor(lb_desc, true);
|
|
|
|
|
|
|
|
sdmmc_storage_t storage;
|
|
|
|
sdmmc_t sdmmc;
|
|
|
|
|
2020-04-29 22:31:01 +00:00
|
|
|
char *txt_buf = (char *)malloc(0x4000);
|
2020-12-02 00:11:22 +00:00
|
|
|
txt_buf[0] = '\n';
|
|
|
|
txt_buf[1] = 0;
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-04-29 15:53:29 +00:00
|
|
|
if (!sdmmc_storage_init_mmc(&storage, &sdmmc, SDMMC_BUS_WIDTH_8, SDHCI_TIMING_MMC_HS400))
|
2019-06-30 01:03:00 +00:00
|
|
|
{
|
2020-04-27 05:47:00 +00:00
|
|
|
lv_label_set_text(lb_desc, "#FFDD00 Failed to init eMMC!#");
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_width(lb_desc, lv_obj_get_width(desc));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
u32 speed = 0;
|
2020-08-15 09:33:11 +00:00
|
|
|
char *rsvd_blocks;
|
|
|
|
char life_a_txt[8];
|
|
|
|
char life_b_txt[8];
|
2021-02-06 01:44:27 +00:00
|
|
|
u32 cache = storage.ext_csd.cache_size;
|
2020-08-15 09:33:11 +00:00
|
|
|
u32 life_a = storage.ext_csd.dev_life_est_a;
|
|
|
|
u32 life_b = storage.ext_csd.dev_life_est_b;
|
|
|
|
u16 card_type = storage.ext_csd.card_type;
|
|
|
|
char card_type_support[96];
|
|
|
|
card_type_support[0] = 0;
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-12-02 00:11:22 +00:00
|
|
|
// Identify manufacturer. Only official eMMCs.
|
|
|
|
switch (storage.cid.manfid)
|
|
|
|
{
|
|
|
|
case 0x11:
|
|
|
|
strcat(txt_buf, "Toshiba ");
|
|
|
|
break;
|
|
|
|
case 0x15:
|
|
|
|
strcat(txt_buf, "Samsung ");
|
|
|
|
break;
|
2021-02-06 01:44:27 +00:00
|
|
|
case 0x45: // Unofficial.
|
|
|
|
strcat(txt_buf, "SanDisk ");
|
|
|
|
break;
|
2020-12-02 00:11:22 +00:00
|
|
|
case 0x90:
|
|
|
|
strcat(txt_buf, "SK Hynix ");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-02-06 01:44:27 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "(%02X)\n%c%c%c%c%c%c\n%d.%d\n%04X\n%02d/%04d\n\n",
|
2021-02-06 01:41:35 +00:00
|
|
|
storage.cid.manfid,
|
2019-06-30 01:03:00 +00:00
|
|
|
storage.cid.prod_name[0], storage.cid.prod_name[1], storage.cid.prod_name[2],
|
|
|
|
storage.cid.prod_name[3], storage.cid.prod_name[4], storage.cid.prod_name[5],
|
2021-02-06 01:44:27 +00:00
|
|
|
storage.cid.prv & 0xF, storage.cid.prv >> 4,
|
|
|
|
storage.cid.serial, storage.cid.month, storage.cid.year);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
if (card_type & EXT_CSD_CARD_TYPE_HS_26)
|
|
|
|
{
|
|
|
|
strcat(card_type_support, "HS26");
|
|
|
|
speed = (26 << 16) | 26;
|
|
|
|
}
|
|
|
|
if (card_type & EXT_CSD_CARD_TYPE_HS_52)
|
|
|
|
{
|
|
|
|
strcat(card_type_support, ", HS52");
|
|
|
|
speed = (52 << 16) | 52;
|
|
|
|
}
|
|
|
|
if (card_type & EXT_CSD_CARD_TYPE_DDR_1_8V)
|
|
|
|
{
|
|
|
|
strcat(card_type_support, ", DDR52 1.8V");
|
|
|
|
speed = (52 << 16) | 104;
|
|
|
|
}
|
|
|
|
if (card_type & EXT_CSD_CARD_TYPE_HS200_1_8V)
|
|
|
|
{
|
|
|
|
strcat(card_type_support, ", HS200 1.8V");
|
|
|
|
speed = (200 << 16) | 200;
|
|
|
|
}
|
|
|
|
if (card_type & EXT_CSD_CARD_TYPE_HS400_1_8V)
|
|
|
|
{
|
|
|
|
strcat(card_type_support, ", HS400 1.8V");
|
|
|
|
speed = (200 << 16) | 400;
|
|
|
|
}
|
|
|
|
|
2020-08-15 09:33:11 +00:00
|
|
|
strcpy(life_a_txt, "-");
|
|
|
|
strcpy(life_b_txt, "-");
|
|
|
|
|
|
|
|
// Normalize cells life.
|
2021-02-06 01:44:27 +00:00
|
|
|
if (life_a) // SK Hynix is 0 (undefined).
|
2020-08-15 09:33:11 +00:00
|
|
|
{
|
|
|
|
life_a--;
|
|
|
|
life_a = (10 - life_a) * 10;
|
|
|
|
s_printf(life_a_txt, "%d%%", life_a);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (life_b) // Toshiba is 0 (undefined).
|
|
|
|
{
|
|
|
|
life_b--;
|
|
|
|
life_b = (10 - life_b) * 10;
|
|
|
|
s_printf(life_b_txt, "%d%%", life_b);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (storage.ext_csd.pre_eol_info)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
rsvd_blocks = "Normal (< 80%)";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
rsvd_blocks = "Warning (> 80%)";
|
|
|
|
break;
|
|
|
|
case 3:
|
2021-02-06 01:44:27 +00:00
|
|
|
rsvd_blocks = "Critical (> 90%)";
|
2020-08-15 09:33:11 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-01-04 00:47:08 +00:00
|
|
|
rsvd_blocks = "#FF8000 Unknown#";
|
2020-08-15 09:33:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf),
|
2021-02-06 01:44:27 +00:00
|
|
|
"#00DDFF V1.%d (rev 1.%d)#\n%02X\n%d MB/s (%d MHz)\n%d MB/s\n%s\n%d %s\n%d MiB\nA: %s, B: %s\n%s",
|
2020-08-15 09:33:11 +00:00
|
|
|
storage.ext_csd.ext_struct, storage.ext_csd.rev,
|
2019-06-30 01:03:00 +00:00
|
|
|
storage.csd.cmdclass, speed & 0xFFFF, (speed >> 16) & 0xFFFF,
|
2021-02-06 01:44:27 +00:00
|
|
|
storage.csd.busspeed, card_type_support,
|
|
|
|
!(cache % 1024) ? (cache / 1024) : cache, !(cache % 1024) ? "MiB" : "KiB",
|
|
|
|
storage.ext_csd.max_enh_mult * 512 / 1024,
|
|
|
|
life_a_txt, life_b_txt, rsvd_blocks);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_label_set_static_text(lb_desc,
|
|
|
|
"#00DDFF CID:#\n"
|
|
|
|
"Vendor ID:\n"
|
|
|
|
"Model:\n"
|
2021-02-06 01:44:27 +00:00
|
|
|
"Prod Rev:\n"
|
2019-06-30 01:03:00 +00:00
|
|
|
"S/N:\n"
|
|
|
|
"Month/Year:\n\n"
|
2021-02-06 01:44:27 +00:00
|
|
|
"#00DDFF Ext CSD:#\n"
|
2019-06-30 01:03:00 +00:00
|
|
|
"Cmd Classes:\n"
|
|
|
|
"Max Rate:\n"
|
|
|
|
"Current Rate:\n"
|
2020-08-15 09:33:11 +00:00
|
|
|
"Type Support:\n\n"
|
2021-02-06 01:44:27 +00:00
|
|
|
"Write Cache:\n"
|
|
|
|
"Enhanced Area:\n"
|
2020-08-15 09:33:11 +00:00
|
|
|
"Estimated Life:\n"
|
|
|
|
"Reserved Used:"
|
2019-06-30 01:03:00 +00:00
|
|
|
);
|
|
|
|
lv_obj_set_width(lb_desc, lv_obj_get_width(desc));
|
|
|
|
|
|
|
|
lv_obj_t *val = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(val, LV_HOR_RES / 11 * 3, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_val = lv_label_create(val, lb_desc);
|
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_val, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_set_width(lb_val, lv_obj_get_width(val));
|
|
|
|
lv_obj_align(val, desc, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
|
|
|
|
lv_obj_t *desc2 = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc2, LV_HOR_RES / 2 / 4 * 4, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc2 = lv_label_create(desc2, lb_desc);
|
2020-04-29 22:33:14 +00:00
|
|
|
lv_label_set_style(lb_desc2, &monospace_text);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
u32 boot_size = storage.ext_csd.boot_mult << 17;
|
|
|
|
u32 rpmb_size = storage.ext_csd.rpmb_mult << 17;
|
2021-02-06 01:44:27 +00:00
|
|
|
strcpy(txt_buf, "#00DDFF eMMC Physical Partitions:#\n");
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "1: #96FF00 BOOT0# Size: %6d KiB (Sect: 0x%08X)\n", boot_size / 1024, boot_size / 512);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "2: #96FF00 BOOT1# Size: %6d KiB (Sect: 0x%08X)\n", boot_size / 1024, boot_size / 512);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "3: #96FF00 RPMB# Size: %6d KiB (Sect: 0x%08X)\n", rpmb_size / 1024, rpmb_size / 512);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "0: #96FF00 GPP# Size: %6d MiB (Sect: 0x%08X)\n", storage.sec_cnt >> SECTORS_TO_MIB_COEFF, storage.sec_cnt);
|
|
|
|
strcat(txt_buf, "\n#00DDFF GPP (eMMC USER) Partition Table:#\n");
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-04-29 19:06:33 +00:00
|
|
|
sdmmc_storage_set_mmc_partition(&storage, EMMC_GPP);
|
2019-06-30 01:03:00 +00:00
|
|
|
LIST_INIT(gpt);
|
|
|
|
nx_emmc_gpt_parse(&gpt, &storage);
|
2020-04-29 22:31:01 +00:00
|
|
|
|
|
|
|
u32 idx = 0;
|
2019-06-30 01:03:00 +00:00
|
|
|
LIST_FOREACH_ENTRY(emmc_part_t, part, &gpt, link)
|
|
|
|
{
|
2020-04-29 22:31:01 +00:00
|
|
|
if (idx > 10)
|
|
|
|
{
|
2021-02-06 01:44:27 +00:00
|
|
|
strcat(txt_buf, "#FFDD00 Table does not fit on screen!#");
|
2020-04-29 22:31:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (part->index < 2)
|
2019-06-30 01:03:00 +00:00
|
|
|
{
|
2021-02-06 01:44:27 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%02d: #96FF00 %s#%s Size: %d MiB (Sect: 0x%X), Start: %06X\n",
|
|
|
|
part->index, part->name, !part->name[8] ? " " : "",
|
2019-06-30 01:03:00 +00:00
|
|
|
(part->lba_end - part->lba_start + 1) >> SECTORS_TO_MIB_COEFF,
|
2020-04-29 22:31:01 +00:00
|
|
|
part->lba_end - part->lba_start + 1, part->lba_start);
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-04-29 22:31:01 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%02d: #96FF00 %s#\n Size: %7d MiB (Sect: 0x%07X), Start: %07X\n",
|
|
|
|
part->index, part->name, (part->lba_end - part->lba_start + 1) >> SECTORS_TO_MIB_COEFF,
|
|
|
|
part->lba_end - part->lba_start + 1, part->lba_start);
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 22:31:01 +00:00
|
|
|
idx++;
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
2021-02-06 01:44:27 +00:00
|
|
|
if (!idx)
|
|
|
|
strcat(txt_buf, "#FFDD00 Partition table is empty!#");
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
nx_emmc_gpt_free(&gpt);
|
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_desc2, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_width(lb_desc2, lv_obj_get_width(desc2));
|
|
|
|
lv_obj_align(desc2, val, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 6, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
sdmmc_storage_end(&storage);
|
|
|
|
free(txt_buf);
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static lv_res_t _create_window_sdcard_info_status(lv_obj_t *btn)
|
|
|
|
{
|
|
|
|
lv_obj_t *win = nyx_create_standard_window(SYMBOL_SD" microSD Card Info");
|
2020-04-30 12:05:41 +00:00
|
|
|
lv_win_add_btn(win, NULL, SYMBOL_SD" Benchmark", _create_mbox_sd_bench);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_t *desc = lv_cont_create(win, NULL);
|
2020-06-14 09:59:41 +00:00
|
|
|
lv_obj_set_size(desc, LV_HOR_RES / 2 / 5 * 2, LV_VER_RES - (LV_DPI * 11 / 8) * 5 / 2);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_t * lb_desc = lv_label_create(desc, NULL);
|
|
|
|
lv_label_set_long_mode(lb_desc, LV_LABEL_LONG_BREAK);
|
|
|
|
lv_label_set_recolor(lb_desc, true);
|
|
|
|
|
2020-04-27 05:47:00 +00:00
|
|
|
lv_label_set_text(lb_desc, "#D4FF00 Please wait...#");
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_width(lb_desc, lv_obj_get_width(desc));
|
|
|
|
|
|
|
|
// Disable buttons.
|
|
|
|
nyx_window_toggle_buttons(win, true);
|
|
|
|
|
|
|
|
manual_system_maintenance(true);
|
|
|
|
|
|
|
|
if (!sd_mount())
|
2020-04-27 05:47:00 +00:00
|
|
|
lv_label_set_text(lb_desc, "#FFDD00 Failed to init SD!#");
|
2019-06-30 01:03:00 +00:00
|
|
|
else
|
|
|
|
{
|
2020-04-27 05:47:00 +00:00
|
|
|
lv_label_set_text(lb_desc,
|
2019-06-30 01:03:00 +00:00
|
|
|
"#00DDFF Card IDentification:#\n"
|
|
|
|
"Vendor ID:\n"
|
|
|
|
"Model:\n"
|
2021-02-06 01:44:27 +00:00
|
|
|
"OEM ID:\n"
|
2019-06-30 01:03:00 +00:00
|
|
|
"HW rev:\n"
|
|
|
|
"FW rev:\n"
|
|
|
|
"S/N:\n"
|
2020-12-11 15:46:44 +00:00
|
|
|
"Month/Year:\n\n"
|
|
|
|
"Bootloader bus:"
|
2019-06-30 01:03:00 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
lv_obj_t *val = lv_cont_create(win, NULL);
|
2020-06-14 09:59:41 +00:00
|
|
|
lv_obj_set_size(val, LV_HOR_RES / 9 * 2, LV_VER_RES - (LV_DPI * 11 / 8) * 5 / 2);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_t * lb_val = lv_label_create(val, lb_desc);
|
|
|
|
|
2020-04-29 23:05:24 +00:00
|
|
|
char *txt_buf = (char *)malloc(0x4000);
|
2020-12-02 00:11:22 +00:00
|
|
|
txt_buf[0] = '\n';
|
|
|
|
txt_buf[1] = 0;
|
|
|
|
|
|
|
|
// Identify manufacturer.
|
|
|
|
switch (sd_storage.cid.manfid)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
strcat(txt_buf, "Panasonic ");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
strcat(txt_buf, "Toshiba ");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
strcat(txt_buf, "SanDisk ");
|
|
|
|
break;
|
|
|
|
case 0x1B:
|
|
|
|
strcat(txt_buf, "Samsung ");
|
|
|
|
break;
|
|
|
|
case 0x1D:
|
|
|
|
strcat(txt_buf, "AData ");
|
|
|
|
break;
|
|
|
|
case 0x27:
|
|
|
|
strcat(txt_buf, "Phison ");
|
|
|
|
break;
|
|
|
|
case 0x28:
|
|
|
|
strcat(txt_buf, "Lexar ");
|
|
|
|
break;
|
|
|
|
case 0x31:
|
|
|
|
strcat(txt_buf, "Silicon Power ");
|
|
|
|
break;
|
|
|
|
case 0x41:
|
|
|
|
strcat(txt_buf, "Kingston ");
|
|
|
|
break;
|
|
|
|
case 0x74:
|
|
|
|
strcat(txt_buf, "Transcend ");
|
|
|
|
break;
|
|
|
|
case 0x76:
|
|
|
|
strcat(txt_buf, "Patriot ");
|
|
|
|
break;
|
|
|
|
case 0x82:
|
|
|
|
strcat(txt_buf, "Sony ");
|
|
|
|
break;
|
|
|
|
}
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2021-02-06 01:44:27 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "(%02X)\n%c%c%c%c%c\n%c%c\n%X\n%X\n%08x\n%02d/%04d\n\n",
|
|
|
|
sd_storage.cid.manfid,
|
2019-06-30 01:03:00 +00:00
|
|
|
sd_storage.cid.prod_name[0], sd_storage.cid.prod_name[1], sd_storage.cid.prod_name[2],
|
|
|
|
sd_storage.cid.prod_name[3], sd_storage.cid.prod_name[4],
|
2021-02-06 01:44:27 +00:00
|
|
|
(sd_storage.cid.oemid >> 8) & 0xFF, sd_storage.cid.oemid & 0xFF,
|
2019-06-30 01:03:00 +00:00
|
|
|
sd_storage.cid.hwrev, sd_storage.cid.fwrev, sd_storage.cid.serial,
|
|
|
|
sd_storage.cid.month, sd_storage.cid.year);
|
|
|
|
|
2020-12-11 15:46:44 +00:00
|
|
|
switch (nyx_str->info.sd_init)
|
|
|
|
{
|
|
|
|
case SD_1BIT_HS25:
|
|
|
|
strcat(txt_buf, "HS25 1bit");
|
|
|
|
break;
|
|
|
|
case SD_4BIT_HS25:
|
|
|
|
strcat(txt_buf, "HS25");
|
|
|
|
break;
|
|
|
|
case SD_UHS_SDR82: // Report as SDR104.
|
|
|
|
case SD_UHS_SDR104:
|
|
|
|
strcat(txt_buf, "SDR104");
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
default:
|
|
|
|
strcat(txt_buf, "Undefined");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_val, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_set_width(lb_val, lv_obj_get_width(val));
|
|
|
|
lv_obj_align(val, desc, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
|
|
|
|
lv_obj_t *desc2 = lv_cont_create(win, NULL);
|
2020-06-14 09:59:41 +00:00
|
|
|
lv_obj_set_size(desc2, LV_HOR_RES / 2 / 4 * 2, LV_VER_RES - (LV_DPI * 11 / 8) * 5 / 2);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_t * lb_desc2 = lv_label_create(desc2, lb_desc);
|
|
|
|
|
|
|
|
lv_label_set_static_text(lb_desc2,
|
|
|
|
"#00DDFF Card-Specific Data#\n"
|
|
|
|
"Cmd Classes:\n"
|
|
|
|
"Capacity:\n"
|
2020-06-14 09:59:41 +00:00
|
|
|
"Capacity (LBA):\n"
|
2019-06-30 01:03:00 +00:00
|
|
|
"Bus Width:\n"
|
|
|
|
"Current Rate:\n"
|
|
|
|
"Speed Class:\n"
|
|
|
|
"UHS Grade:\n"
|
|
|
|
"Video Class:\n"
|
|
|
|
"App perf class:\n"
|
|
|
|
"Write Protect:"
|
|
|
|
);
|
|
|
|
lv_obj_set_width(lb_desc2, lv_obj_get_width(desc2));
|
|
|
|
lv_obj_align(desc2, val, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 2, 0);
|
|
|
|
|
|
|
|
lv_obj_t *val2 = lv_cont_create(win, NULL);
|
2020-06-14 09:59:41 +00:00
|
|
|
lv_obj_set_size(val2, LV_HOR_RES / 13 * 3, LV_VER_RES - (LV_DPI * 11 / 8) * 5 / 2);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_t * lb_val2 = lv_label_create(val2, lb_desc);
|
|
|
|
|
2020-07-19 17:56:08 +00:00
|
|
|
char *wp_info;
|
|
|
|
switch (sd_storage.csd.write_protect)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
wp_info = "Temporary";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
wp_info = "Permanent";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wp_info = "None";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-12-11 15:41:09 +00:00
|
|
|
bool uhs_au_mb = false;
|
2021-02-06 01:41:35 +00:00
|
|
|
u32 uhs_au_size = sd_storage_get_ssr_au(&sd_storage);
|
2020-12-11 15:41:09 +00:00
|
|
|
if (uhs_au_size >= 1024)
|
|
|
|
{
|
|
|
|
uhs_au_mb = true;
|
|
|
|
uhs_au_size /= 1024;
|
|
|
|
}
|
|
|
|
|
2020-03-03 02:11:13 +00:00
|
|
|
s_printf(txt_buf,
|
2020-12-11 15:41:09 +00:00
|
|
|
"#00DDFF v%d.0#\n%02X\n%d MiB\n%X (CP %X)\n%d\n%d MB/s (%d MHz)\n%d (AU: %d %s\nU%d\nV%d\nA%d\n%s",
|
2020-07-17 14:01:40 +00:00
|
|
|
sd_storage.csd.structure + 1, sd_storage.csd.cmdclass,
|
|
|
|
sd_storage.sec_cnt >> 11, sd_storage.sec_cnt, sd_storage.ssr.protected_size >> 9,
|
2020-03-03 02:11:13 +00:00
|
|
|
sd_storage.ssr.bus_width, sd_storage.csd.busspeed,
|
|
|
|
(sd_storage.csd.busspeed > 10) ? (sd_storage.csd.busspeed * 2) : 50,
|
2020-12-11 15:41:09 +00:00
|
|
|
sd_storage.ssr.speed_class, uhs_au_size, uhs_au_mb ? "MiB)" : "KiB)", sd_storage.ssr.uhs_grade,
|
|
|
|
sd_storage.ssr.video_class, sd_storage.ssr.app_class, wp_info);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_val2, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_set_width(lb_val2, lv_obj_get_width(val2));
|
|
|
|
lv_obj_align(val2, desc2, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
|
|
|
|
lv_obj_t *line_sep = lv_line_create(win, NULL);
|
|
|
|
static const lv_point_t line_pp[] = { {0, 0}, { LV_HOR_RES - (LV_DPI - (LV_DPI / 4)) * 12, 0} };
|
|
|
|
lv_line_set_points(line_sep, line_pp, 2);
|
|
|
|
lv_line_set_style(line_sep, lv_theme_get_current()->line.decor);
|
2020-06-14 09:59:41 +00:00
|
|
|
lv_obj_align(line_sep, desc, LV_ALIGN_OUT_BOTTOM_LEFT, LV_DPI * 410 / 100, LV_DPI / 7);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_t *desc3 = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc3, LV_HOR_RES / 2 / 2 * 2, LV_VER_RES - (LV_DPI * 11 / 8) * 4);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc3 = lv_label_create(desc3, lb_desc);
|
2020-04-27 05:47:00 +00:00
|
|
|
lv_label_set_text(lb_desc3, "#D4FF00 Acquiring FAT volume info...#");
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_width(lb_desc3, lv_obj_get_width(desc3));
|
2020-04-27 05:47:00 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_align(desc3, desc, LV_ALIGN_OUT_BOTTOM_LEFT, 0, LV_DPI / 2);
|
|
|
|
|
|
|
|
manual_system_maintenance(true);
|
|
|
|
|
|
|
|
f_getfree("", &sd_fs.free_clst, NULL);
|
|
|
|
|
2020-04-27 05:47:00 +00:00
|
|
|
lv_label_set_text(lb_desc3,
|
2019-06-30 01:03:00 +00:00
|
|
|
"#00DDFF Found FAT volume:#\n"
|
|
|
|
"Filesystem:\n"
|
|
|
|
"Cluster:\n"
|
|
|
|
"Free:"
|
|
|
|
);
|
|
|
|
lv_obj_set_size(desc3, LV_HOR_RES / 2 / 5 * 2, LV_VER_RES - (LV_DPI * 11 / 8) * 4);
|
|
|
|
lv_obj_set_width(lb_desc3, lv_obj_get_width(desc3));
|
|
|
|
lv_obj_align(desc3, desc, LV_ALIGN_OUT_BOTTOM_LEFT, 0, LV_DPI / 2);
|
|
|
|
|
|
|
|
lv_obj_t *val3 = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(val3, LV_HOR_RES / 13 * 3, LV_VER_RES - (LV_DPI * 11 / 8) * 4);
|
|
|
|
|
|
|
|
lv_obj_t * lb_val3 = lv_label_create(val3, lb_desc);
|
|
|
|
|
2020-10-20 07:32:32 +00:00
|
|
|
s_printf(txt_buf, "\n%s\n%d %s\n%d MiB",
|
2019-06-30 01:03:00 +00:00
|
|
|
sd_fs.fs_type == FS_EXFAT ? ("exFAT "SYMBOL_SHRK) : ("FAT32"),
|
|
|
|
(sd_fs.csize > 1) ? (sd_fs.csize >> 1) : 512,
|
2020-10-20 07:32:32 +00:00
|
|
|
(sd_fs.csize > 1) ? "KiB" : "B",
|
2019-06-30 01:03:00 +00:00
|
|
|
sd_fs.free_clst * sd_fs.csize >> SECTORS_TO_MIB_COEFF);
|
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_val3, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_set_width(lb_val3, lv_obj_get_width(val3));
|
|
|
|
lv_obj_align(val3, desc3, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
|
2020-04-29 22:09:48 +00:00
|
|
|
lv_obj_t *desc4 = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc4, LV_HOR_RES / 2 / 2 * 2, LV_VER_RES - (LV_DPI * 11 / 8) * 4);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc4 = lv_label_create(desc4, lb_desc);
|
|
|
|
lv_label_set_text(lb_desc4, "#D4FF00 Acquiring FAT volume info...#");
|
|
|
|
lv_obj_set_width(lb_desc4, lv_obj_get_width(desc4));
|
|
|
|
|
|
|
|
lv_label_set_text(lb_desc4,
|
2020-05-05 16:11:39 +00:00
|
|
|
"#00DDFF SDMMC1 Errors:#\n"
|
2020-04-29 22:09:48 +00:00
|
|
|
"Init fails:\n"
|
|
|
|
"Read/Write fails:\n"
|
|
|
|
"Read/Write errors:"
|
|
|
|
);
|
|
|
|
lv_obj_set_size(desc4, LV_HOR_RES / 2 / 5 * 2, LV_VER_RES - (LV_DPI * 11 / 8) * 4);
|
|
|
|
lv_obj_set_width(lb_desc4, lv_obj_get_width(desc4));
|
|
|
|
lv_obj_align(desc4, val3, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 2, 0);
|
|
|
|
|
|
|
|
lv_obj_t *val4 = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(val4, LV_HOR_RES / 13 * 3, LV_VER_RES - (LV_DPI * 11 / 8) * 4);
|
|
|
|
|
|
|
|
lv_obj_t * lb_val4 = lv_label_create(val4, lb_desc);
|
|
|
|
|
|
|
|
u16 *sd_errors = sd_get_error_count();
|
2020-12-11 15:46:44 +00:00
|
|
|
s_printf(txt_buf, "\n%d (%d)\n%d (%d)\n%d (%d)",
|
|
|
|
sd_errors[0], nyx_str->info.sd_errors[0], sd_errors[1], nyx_str->info.sd_errors[1], sd_errors[2], nyx_str->info.sd_errors[2]);
|
2020-04-29 22:09:48 +00:00
|
|
|
|
|
|
|
lv_label_set_text(lb_val4, txt_buf);
|
|
|
|
|
|
|
|
lv_obj_set_width(lb_val4, lv_obj_get_width(val4));
|
|
|
|
lv_obj_align(val4, desc4, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 2, 0);
|
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
free(txt_buf);
|
2020-06-13 15:32:40 +00:00
|
|
|
sd_unmount();
|
2019-06-30 01:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nyx_window_toggle_buttons(win, false);
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static lv_res_t _create_window_battery_status(lv_obj_t *btn)
|
|
|
|
{
|
|
|
|
lv_obj_t *win = nyx_create_standard_window(SYMBOL_BATTERY_FULL" Battery Info");
|
|
|
|
lv_win_add_btn(win, NULL, SYMBOL_DOWNLOAD" Dump Fuel Regs", _battery_dump_window_action);
|
|
|
|
|
|
|
|
lv_obj_t *desc = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc, LV_HOR_RES / 2 / 4 * 2, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc = lv_label_create(desc, NULL);
|
|
|
|
lv_label_set_long_mode(lb_desc, LV_LABEL_LONG_BREAK);
|
|
|
|
lv_label_set_recolor(lb_desc, true);
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_label_set_static_text(lb_desc,
|
|
|
|
"#00DDFF Fuel Gauge IC Info:#\n"
|
|
|
|
"Capacity now:\n"
|
|
|
|
"Capacity full:\n"
|
|
|
|
"Capacity (design):\n"
|
|
|
|
"Current now:\n"
|
|
|
|
"Current average:\n"
|
|
|
|
"Voltage now:\n"
|
|
|
|
"Voltage open-circuit:\n"
|
|
|
|
"Min voltage reached:\n"
|
|
|
|
"Max voltage reached:\n"
|
|
|
|
"Empty voltage:\n"
|
|
|
|
"Battery temp:\n\n"
|
2021-01-05 15:12:03 +00:00
|
|
|
"#00DDFF PMIC IC Info:#\n"
|
|
|
|
"Main PMIC:\n\n"
|
|
|
|
"CPU/GPU PMIC:\n"
|
2019-06-30 01:03:00 +00:00
|
|
|
);
|
|
|
|
lv_obj_set_width(lb_desc, lv_obj_get_width(desc));
|
|
|
|
|
|
|
|
lv_obj_t *val = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(val, LV_HOR_RES / 5, LV_VER_RES - (LV_DPI * 11 / 7));
|
|
|
|
|
|
|
|
lv_obj_t * lb_val = lv_label_create(val, lb_desc);
|
|
|
|
|
2020-04-29 23:05:24 +00:00
|
|
|
char *txt_buf = (char *)malloc(0x4000);
|
2019-06-30 01:03:00 +00:00
|
|
|
int value = 0;
|
2021-01-05 15:12:03 +00:00
|
|
|
int cap_pct = 0;
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2021-01-05 15:12:03 +00:00
|
|
|
max17050_get_property(MAX17050_RepSOC, &cap_pct);
|
2019-06-30 01:03:00 +00:00
|
|
|
max17050_get_property(MAX17050_RepCap, &value);
|
2021-01-05 15:12:03 +00:00
|
|
|
s_printf(txt_buf, "\n%d mAh [%d %]\n", value, cap_pct >> 8);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
max17050_get_property(MAX17050_FullCAP, &value);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mAh\n", value);
|
|
|
|
|
|
|
|
max17050_get_property(MAX17050_DesignCap, &value);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mAh\n", value);
|
|
|
|
|
|
|
|
max17050_get_property(MAX17050_Current, &value);
|
|
|
|
if (value >= 0)
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mA\n", value / 1000);
|
|
|
|
else
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "-%d mA\n", (~value + 1) / 1000);
|
|
|
|
|
|
|
|
max17050_get_property(MAX17050_AvgCurrent, &value);
|
|
|
|
if (value >= 0)
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mA\n", value / 1000);
|
|
|
|
else
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "-%d mA\n", (~value + 1) / 1000);
|
|
|
|
|
|
|
|
max17050_get_property(MAX17050_VCELL, &value);
|
2019-12-07 23:32:26 +00:00
|
|
|
bool voltage_empty = value < 3200;
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%s%d mV%s\n",
|
2020-03-03 02:11:13 +00:00
|
|
|
voltage_empty ? "#FF8000 " : "", value, voltage_empty ? " "SYMBOL_WARNING"#" : "");
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
max17050_get_property(MAX17050_OCVInternal, &value);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mV\n", value);
|
|
|
|
|
|
|
|
max17050_get_property(MAX17050_MinVolt, &value);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mV\n", value);
|
|
|
|
|
|
|
|
max17050_get_property(MAX17050_MaxVolt, &value);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mV\n", value);
|
|
|
|
|
|
|
|
max17050_get_property(MAX17050_V_empty, &value);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mV\n", value);
|
|
|
|
|
|
|
|
max17050_get_property(MAX17050_TEMP, &value);
|
|
|
|
if (value >= 0)
|
2021-01-05 15:12:03 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d.%d oC\n\n\n", value / 10, value % 10);
|
2019-06-30 01:03:00 +00:00
|
|
|
else
|
2021-01-05 15:12:03 +00:00
|
|
|
s_printf(txt_buf + strlen(txt_buf), "-%d.%d oC\n\n\n", (~value + 1) / 10, (~value + 1) % 10);
|
|
|
|
|
|
|
|
value = i2c_recv_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_CID4);
|
|
|
|
u32 main_pmic_version = i2c_recv_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_CID3) & 0xF;
|
|
|
|
|
|
|
|
if (value == 0x35)
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "max77620 v%d\nErista OTP\n", main_pmic_version);
|
|
|
|
else if (value == 0x53)
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "max77620 v%d\nMariko OTP\n", main_pmic_version);
|
|
|
|
else
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "max77620 v%d\n#FF8000 Unknown OTP# (%02X)\n", main_pmic_version, value);
|
|
|
|
|
|
|
|
u32 cpu_gpu_pmic_type = h_cfg.t210b01 ? (FUSE(FUSE_RESERVED_ODM28_T210B01) & 1) + 1 : 0;
|
|
|
|
switch (cpu_gpu_pmic_type)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "max77621 v%d",
|
|
|
|
i2c_recv_byte(I2C_5, MAX77621_CPU_I2C_ADDR, MAX77621_CHIPID1_REG));
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "max77812-2 v%d",
|
|
|
|
i2c_recv_byte(I2C_5, MAX77812_PHASE31_CPU_I2C_ADDR, MAX77812_REG_VERSION) & 7);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "max77812-3 v%d.0",
|
|
|
|
i2c_recv_byte(I2C_5, MAX77812_PHASE211_CPU_I2C_ADDR, MAX77812_REG_VERSION) & 7);
|
|
|
|
break;
|
|
|
|
}
|
2019-06-30 01:03:00 +00:00
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_val, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_set_width(lb_val, lv_obj_get_width(val));
|
|
|
|
lv_obj_align(val, desc, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
|
|
|
|
lv_obj_t *desc2 = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(desc2, LV_HOR_RES / 2 / 7 * 4, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_desc2 = lv_label_create(desc2, lb_desc);
|
|
|
|
|
|
|
|
lv_label_set_static_text(lb_desc2,
|
|
|
|
"#00DDFF Battery Charger IC Info:#\n"
|
|
|
|
"Input voltage limit:\n"
|
|
|
|
"Input current limit:\n"
|
|
|
|
"Min voltage limit:\n"
|
|
|
|
"Fast charge current limit:\n"
|
|
|
|
"Charge voltage limit:\n"
|
|
|
|
"Charge status:\n"
|
2020-09-15 17:14:56 +00:00
|
|
|
"Temperature status:\n\n"
|
|
|
|
"#00DDFF USB-PD IC Info:#\n"
|
|
|
|
"Connection status:\n"
|
|
|
|
"Input Wattage Limit:\n"
|
|
|
|
"USB-PD Profiles:"
|
2019-06-30 01:03:00 +00:00
|
|
|
);
|
|
|
|
lv_obj_set_width(lb_desc2, lv_obj_get_width(desc2));
|
|
|
|
lv_obj_align(desc2, val, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 2, 0);
|
|
|
|
|
|
|
|
lv_obj_t *val2 = lv_cont_create(win, NULL);
|
|
|
|
lv_obj_set_size(val2, LV_HOR_RES / 2 / 3, LV_VER_RES - (LV_DPI * 11 / 7) - 5);
|
|
|
|
|
|
|
|
lv_obj_t * lb_val2 = lv_label_create(val2, lb_desc);
|
|
|
|
|
|
|
|
bq24193_get_property(BQ24193_InputVoltageLimit, &value);
|
|
|
|
s_printf(txt_buf, "\n%d mV\n", value);
|
|
|
|
|
2020-09-15 17:14:56 +00:00
|
|
|
int iinlim = 0;
|
|
|
|
bq24193_get_property(BQ24193_InputCurrentLimit, &iinlim);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mA\n", iinlim);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
bq24193_get_property(BQ24193_SystemMinimumVoltage, &value);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mV\n", value);
|
|
|
|
|
|
|
|
bq24193_get_property(BQ24193_FastChargeCurrentLimit, &value);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mA\n", value);
|
|
|
|
|
|
|
|
bq24193_get_property(BQ24193_ChargeVoltageLimit, &value);
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "%d mV\n", value);
|
|
|
|
|
|
|
|
bq24193_get_property(BQ24193_ChargeStatus, &value);
|
|
|
|
switch (value)
|
|
|
|
{
|
|
|
|
case 0:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Not charging\n");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Pre-charging\n");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Fast charging\n");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Charge terminated\n");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "Unknown (%d)\n", value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bq24193_get_property(BQ24193_TempStatus, &value);
|
|
|
|
switch (value)
|
|
|
|
{
|
|
|
|
case 0:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Normal");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Warm");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Cool");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
case 5:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Cold");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
case 6:
|
2020-07-14 19:26:40 +00:00
|
|
|
strcat(txt_buf, "Hot");
|
2019-06-30 01:03:00 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "Unknown (%d)", value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-09-15 17:14:56 +00:00
|
|
|
bool inserted;
|
|
|
|
u32 wattage = 0;
|
|
|
|
usb_pd_objects_t usb_pd;
|
2020-10-20 07:42:57 +00:00
|
|
|
bm92t36_get_sink_info(&inserted, &usb_pd);
|
2020-09-15 17:14:56 +00:00
|
|
|
strcat(txt_buf, "\n\n\n");
|
|
|
|
strcat(txt_buf, inserted ? "Connected" : "Disconnected");
|
|
|
|
|
2020-10-20 07:42:57 +00:00
|
|
|
// Select 5V is no PD contract.
|
|
|
|
wattage = iinlim * (usb_pd.pdo_no ? usb_pd.selected_pdo.voltage : 5);
|
2020-09-15 17:14:56 +00:00
|
|
|
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "\n%d.%d W", wattage / 1000, (wattage % 1000) / 100);
|
|
|
|
|
|
|
|
if (!usb_pd.pdo_no)
|
|
|
|
strcat(txt_buf, "\nNon PD");
|
|
|
|
|
2020-10-20 07:42:57 +00:00
|
|
|
// Limit to 5 profiles so it can fit.
|
|
|
|
usb_pd.pdo_no = MIN(usb_pd.pdo_no, 5);
|
|
|
|
|
2020-09-15 17:14:56 +00:00
|
|
|
for (u32 i = 0; i < usb_pd.pdo_no; i++)
|
|
|
|
{
|
2020-10-20 07:42:57 +00:00
|
|
|
bool selected =
|
|
|
|
usb_pd.pdos[i].amperage == usb_pd.selected_pdo.amperage &&
|
|
|
|
usb_pd.pdos[i].voltage == usb_pd.selected_pdo.voltage;
|
|
|
|
s_printf(txt_buf + strlen(txt_buf), "\n%s%d mA, %2d V%s",
|
|
|
|
selected ? "#D4FF00 " : "",
|
|
|
|
usb_pd.pdos[i].amperage, usb_pd.pdos[i].voltage,
|
|
|
|
selected ? "#" : "");
|
2020-09-15 17:14:56 +00:00
|
|
|
}
|
|
|
|
|
2020-03-09 06:37:41 +00:00
|
|
|
lv_label_set_text(lb_val2, txt_buf);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_set_width(lb_val2, lv_obj_get_width(val2));
|
|
|
|
lv_obj_align(val2, desc2, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
|
|
|
|
free(txt_buf);
|
|
|
|
|
|
|
|
return LV_RES_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void create_tab_info(lv_theme_t *th, lv_obj_t *parent)
|
|
|
|
{
|
|
|
|
lv_page_set_scrl_layout(parent, LV_LAYOUT_PRETTY);
|
|
|
|
|
|
|
|
static lv_style_t h_style;
|
|
|
|
lv_style_copy(&h_style, &lv_style_transp);
|
|
|
|
h_style.body.padding.inner = 0;
|
|
|
|
h_style.body.padding.hor = LV_DPI - (LV_DPI / 4);
|
|
|
|
h_style.body.padding.ver = LV_DPI / 6;
|
|
|
|
|
|
|
|
// Create SoC Info container.
|
|
|
|
lv_obj_t *h1 = lv_cont_create(parent, NULL);
|
|
|
|
lv_cont_set_style(h1, &h_style);
|
|
|
|
lv_cont_set_fit(h1, false, true);
|
|
|
|
lv_obj_set_width(h1, (LV_HOR_RES / 9) * 4);
|
|
|
|
lv_obj_set_click(h1, false);
|
|
|
|
lv_cont_set_layout(h1, LV_LAYOUT_OFF);
|
|
|
|
|
|
|
|
lv_obj_t *label_sep = lv_label_create(h1, NULL);
|
|
|
|
lv_label_set_static_text(label_sep, "");
|
|
|
|
|
|
|
|
lv_obj_t *label_txt = lv_label_create(h1, NULL);
|
2020-04-30 10:54:11 +00:00
|
|
|
lv_label_set_static_text(label_txt, "SoC & HW Info");
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_style(label_txt, th->label.prim);
|
|
|
|
lv_obj_align(label_txt, label_sep, LV_ALIGN_OUT_BOTTOM_LEFT, LV_DPI / 4, 0);
|
|
|
|
|
|
|
|
lv_obj_t *line_sep = lv_line_create(h1, NULL);
|
|
|
|
static const lv_point_t line_pp[] = { {0, 0}, { LV_HOR_RES - (LV_DPI - (LV_DPI / 4)) * 2, 0} };
|
|
|
|
lv_line_set_points(line_sep, line_pp, 2);
|
|
|
|
lv_line_set_style(line_sep, th->line.decor);
|
|
|
|
lv_obj_align(line_sep, label_txt, LV_ALIGN_OUT_BOTTOM_LEFT, -(LV_DPI / 4), LV_DPI / 8);
|
|
|
|
|
|
|
|
// Create Bootrom button.
|
|
|
|
lv_obj_t *btn = lv_btn_create(h1, NULL);
|
|
|
|
if (hekate_bg)
|
|
|
|
{
|
|
|
|
lv_btn_set_style(btn, LV_BTN_STYLE_REL, &btn_transp_rel);
|
|
|
|
lv_btn_set_style(btn, LV_BTN_STYLE_PR, &btn_transp_pr);
|
|
|
|
}
|
|
|
|
lv_obj_t *label_btn = lv_label_create(btn, NULL);
|
|
|
|
lv_btn_set_fit(btn, true, true);
|
|
|
|
lv_label_set_static_text(label_btn, SYMBOL_CHIP" Bootrom");
|
|
|
|
lv_obj_align(btn, line_sep, LV_ALIGN_OUT_BOTTOM_LEFT, LV_DPI / 4, LV_DPI / 4);
|
|
|
|
lv_btn_set_action(btn, LV_BTN_ACTION_CLICK, _create_window_bootrom_info_status);
|
|
|
|
|
|
|
|
// Create TSEC Keys button.
|
|
|
|
lv_obj_t *btn2 = lv_btn_create(h1, btn);
|
|
|
|
label_btn = lv_label_create(btn2, NULL);
|
|
|
|
lv_label_set_static_text(label_btn, SYMBOL_KEY" TSEC Keys");
|
|
|
|
lv_obj_align(btn2, btn, LV_ALIGN_OUT_RIGHT_TOP, LV_DPI * 4 / 9, 0);
|
|
|
|
lv_btn_set_action(btn2, LV_BTN_ACTION_CLICK, _create_window_tsec_keys_status);
|
2020-07-04 18:04:57 +00:00
|
|
|
if (h_cfg.t210b01)
|
|
|
|
lv_btn_set_state(btn2, LV_BTN_STATE_INA);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
lv_obj_t *label_txt2 = lv_label_create(h1, NULL);
|
|
|
|
lv_label_set_recolor(label_txt2, true);
|
|
|
|
lv_label_set_static_text(label_txt2,
|
|
|
|
"View Ipatches and dump the unpatched and patched versions\nof BootROM.\n"
|
|
|
|
"Or view and dump the device's TSEC Keys.\n");
|
|
|
|
lv_obj_set_style(label_txt2, &hint_small_style);
|
|
|
|
lv_obj_align(label_txt2, btn, LV_ALIGN_OUT_BOTTOM_LEFT, 0, LV_DPI / 3);
|
|
|
|
|
|
|
|
static lv_style_t line_style;
|
|
|
|
lv_style_copy(&line_style, th->line.decor);
|
2019-12-04 19:31:39 +00:00
|
|
|
line_style.line.color = LV_COLOR_HEX(0x444444);
|
2019-06-30 01:03:00 +00:00
|
|
|
|
|
|
|
line_sep = lv_line_create(h1, line_sep);
|
|
|
|
lv_obj_align(line_sep, label_txt2, LV_ALIGN_OUT_BOTTOM_LEFT, -(LV_DPI / 4), LV_DPI / 16);
|
|
|
|
lv_line_set_style(line_sep, &line_style);
|
|
|
|
|
|
|
|
// Create Fuses button.
|
2019-07-06 19:08:37 +00:00
|
|
|
lv_obj_t *btn3 = lv_btn_create(h1, btn);
|
2019-06-30 01:03:00 +00:00
|
|
|
label_btn = lv_label_create(btn3, NULL);
|
|
|
|
lv_btn_set_fit(btn3, true, true);
|
2020-04-30 10:54:11 +00:00
|
|
|
lv_label_set_static_text(label_btn, SYMBOL_CIRCUIT" HW & Fuses");
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_align(btn3, line_sep, LV_ALIGN_OUT_BOTTOM_LEFT, LV_DPI / 4, LV_DPI / 2);
|
|
|
|
lv_btn_set_action(btn3, LV_BTN_ACTION_CLICK, _create_window_fuses_info_status);
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
// Create KFuses button.
|
|
|
|
lv_obj_t *btn4 = lv_btn_create(h1, btn);
|
|
|
|
label_btn = lv_label_create(btn4, NULL);
|
|
|
|
lv_label_set_static_text(label_btn, SYMBOL_SHUFFLE" KFuses");
|
2020-04-30 10:54:11 +00:00
|
|
|
lv_obj_align(btn4, btn3, LV_ALIGN_OUT_RIGHT_TOP, LV_DPI * 46 / 100, 0);
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_btn_set_action(btn4, LV_BTN_ACTION_CLICK, _kfuse_dump_window_action);
|
|
|
|
|
|
|
|
lv_obj_t *label_txt4 = lv_label_create(h1, NULL);
|
|
|
|
lv_label_set_recolor(label_txt4, true);
|
|
|
|
lv_label_set_static_text(label_txt4,
|
2021-01-11 19:39:44 +00:00
|
|
|
"View and dump the cached #C7EA46 Fuses# and #C7EA46 KFuses#.\n"
|
|
|
|
"Fuses contain info about the SoC/SKU and KFuses HDCP keys.\n"
|
2020-04-30 10:54:11 +00:00
|
|
|
"You can also see info about #C7EA46 DRAM#, #C7EA46 Screen# and #C7EA46 Touch panel#.");
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_style(label_txt4, &hint_small_style);
|
|
|
|
lv_obj_align(label_txt4, btn3, LV_ALIGN_OUT_BOTTOM_LEFT, 0, LV_DPI / 3);
|
|
|
|
|
|
|
|
// Create Storage & Battery Info container.
|
|
|
|
lv_obj_t *h2 = lv_cont_create(parent, NULL);
|
|
|
|
lv_cont_set_style(h2, &h_style);
|
|
|
|
lv_cont_set_fit(h2, false, true);
|
|
|
|
lv_obj_set_width(h2, (LV_HOR_RES / 9) * 4);
|
|
|
|
lv_obj_set_click(h2, false);
|
|
|
|
lv_cont_set_layout(h2, LV_LAYOUT_OFF);
|
|
|
|
lv_obj_align(h2, h1, LV_ALIGN_OUT_RIGHT_TOP, 0, 0);
|
|
|
|
|
|
|
|
label_sep = lv_label_create(h2, NULL);
|
|
|
|
lv_label_set_static_text(label_sep, "");
|
|
|
|
|
|
|
|
lv_obj_t *label_txt3 = lv_label_create(h2, NULL);
|
|
|
|
lv_label_set_static_text(label_txt3, "Storage & Battery Info");
|
|
|
|
lv_obj_set_style(label_txt3, th->label.prim);
|
|
|
|
lv_obj_align(label_txt3, label_sep, LV_ALIGN_OUT_BOTTOM_LEFT, LV_DPI / 4, 0);
|
|
|
|
|
|
|
|
line_sep = lv_line_create(h2, line_sep);
|
|
|
|
lv_obj_align(line_sep, label_txt3, LV_ALIGN_OUT_BOTTOM_LEFT, -(LV_DPI / 2), LV_DPI / 8);
|
|
|
|
lv_line_set_style(line_sep, th->line.decor);
|
|
|
|
|
|
|
|
// Create eMMC button.
|
|
|
|
lv_obj_t *btn5 = lv_btn_create(h2, NULL);
|
|
|
|
if (hekate_bg)
|
|
|
|
{
|
|
|
|
lv_btn_set_style(btn5, LV_BTN_STYLE_REL, &btn_transp_rel);
|
|
|
|
lv_btn_set_style(btn5, LV_BTN_STYLE_PR, &btn_transp_pr);
|
|
|
|
}
|
|
|
|
label_btn = lv_label_create(btn5, NULL);
|
|
|
|
lv_btn_set_fit(btn5, true, true);
|
|
|
|
lv_label_set_static_text(label_btn, SYMBOL_CHIP" eMMC ");
|
|
|
|
lv_obj_align(btn5, line_sep, LV_ALIGN_OUT_BOTTOM_LEFT, LV_DPI / 2, LV_DPI / 4);
|
|
|
|
lv_btn_set_action(btn5, LV_BTN_ACTION_CLICK, _create_window_emmc_info_status);
|
2019-10-18 15:02:06 +00:00
|
|
|
|
2019-06-30 01:03:00 +00:00
|
|
|
// Create microSD button.
|
|
|
|
lv_obj_t *btn6 = lv_btn_create(h2, btn);
|
|
|
|
label_btn = lv_label_create(btn6, NULL);
|
|
|
|
lv_label_set_static_text(label_btn, SYMBOL_SD" microSD ");
|
|
|
|
lv_obj_align(btn6, btn5, LV_ALIGN_OUT_RIGHT_TOP, LV_DPI * 3 / 4, 0);
|
|
|
|
lv_btn_set_action(btn6, LV_BTN_ACTION_CLICK, _create_window_sdcard_info_status);
|
|
|
|
|
|
|
|
lv_obj_t *label_txt5 = lv_label_create(h2, NULL);
|
|
|
|
lv_label_set_recolor(label_txt5, true);
|
|
|
|
lv_label_set_static_text(label_txt5,
|
2021-01-11 19:39:44 +00:00
|
|
|
"View info about the eMMC or microSD and their partition list.\n"
|
2020-04-30 12:05:41 +00:00
|
|
|
"Additionally you can benchmark read speeds.");
|
2019-06-30 01:03:00 +00:00
|
|
|
lv_obj_set_style(label_txt5, &hint_small_style);
|
|
|
|
lv_obj_align(label_txt5, btn5, LV_ALIGN_OUT_BOTTOM_LEFT, 0, LV_DPI / 3);
|
|
|
|
|
|
|
|
line_sep = lv_line_create(h2, line_sep);
|
|
|
|
lv_obj_align(line_sep, label_txt5, LV_ALIGN_OUT_BOTTOM_LEFT, -(LV_DPI / 4), LV_DPI / 2);
|
|
|
|
lv_line_set_style(line_sep, &line_style);
|
|
|
|
|
|
|
|
// Create Battery button.
|
|
|
|
lv_obj_t *btn7 = lv_btn_create(h2, NULL);
|
|
|
|
if (hekate_bg)
|
|
|
|
{
|
|
|
|
lv_btn_set_style(btn7, LV_BTN_STYLE_REL, &btn_transp_rel);
|
|
|
|
lv_btn_set_style(btn7, LV_BTN_STYLE_PR, &btn_transp_pr);
|
|
|
|
}
|
|
|
|
label_btn = lv_label_create(btn7, NULL);
|
|
|
|
lv_btn_set_fit(btn7, true, true);
|
|
|
|
lv_label_set_static_text(label_btn, SYMBOL_BATTERY_FULL" Battery");
|
|
|
|
lv_obj_align(btn7, line_sep, LV_ALIGN_OUT_BOTTOM_LEFT, LV_DPI / 4, LV_DPI / 2);
|
|
|
|
lv_btn_set_action(btn7, LV_BTN_ACTION_CLICK, _create_window_battery_status);
|
|
|
|
|
|
|
|
lv_obj_t *label_txt6 = lv_label_create(h2, NULL);
|
|
|
|
lv_label_set_recolor(label_txt6, true);
|
|
|
|
lv_label_set_static_text(label_txt6,
|
|
|
|
"View battery and battery charger related info.\n"
|
|
|
|
"Additionally you can dump battery charger's registers.\n");
|
|
|
|
lv_obj_set_style(label_txt6, &hint_small_style);
|
|
|
|
lv_obj_align(label_txt6, btn7, LV_ALIGN_OUT_BOTTOM_LEFT, 0, LV_DPI / 3);
|
|
|
|
}
|