123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- // SPDX-License-Identifier: GPL-2.0+
- /*
- * (C) Copyright 2002
- * Richard Jones, rjones@nexus-tech.net
- */
- /*
- * Boot support
- */
- #include <common.h>
- #include <command.h>
- #include <s_record.h>
- #include <net.h>
- #include <ata.h>
- #include <asm/io.h>
- #include <mapmem.h>
- #include <part.h>
- #include <fat.h>
- #include <fs.h>
- #include <environment.h>
- #include <asm/arch/ark-common.h>
- extern struct SYS_INFO sys_info;
- extern int burn_data_to_partition(char *partition_name);
- extern int ark_check_data_from_partition(char *part_name,unsigned int crc_data);
- extern int ark_check_data_from_devide(char *file_name,unsigned int crc_data);
- typedef enum {
- MMC = 0,
- USB,
- NFLASH
- } MEDIA_TYPE;
- static int get_data_from_ota(char *file_name)
- {
- int ret = -1;
- char cmd[128] = { 0 };
- unsigned int file_size,crc_src;
- unsigned int *srcdata = (unsigned int *)(env_get_hex("loadaddr", 0));
- printf("file_name=%s\n", file_name);
- sprintf(cmd, "ubifsload %s %s ", env_get("loadaddr"), file_name);
- printf("cmd=%s\n", cmd);
- ret = run_command(cmd, 0);
- if(ret)
- return 1;
- file_size = env_get_ulong("filesize", 16, 0x2000);
- crc_src = crc32(0, (const unsigned char *)srcdata, file_size);
- ret = ark_check_data_from_devide(file_name,crc_src);
- if(ret)
- return 1;
- return 0;
- }
- static int ark_update_partition(char *partition_name, char *file_name)
- {
- int ret;
- ret = get_data_from_ota(file_name);
- if (!ret) {
- burn_data_to_partition(partition_name);
- return 0;
- }
- return 1;
- }
- unsigned int updata_the_ubootspl(void)
- {
- int ret;
- ret = get_data_from_ota("ubootspl.bin");
- if (!ret)
- {
- run_command("switchecc 1", 0);
- mdelay(100);
- ret = burn_data_to_partition("bootstrap");
- mdelay(100);
- run_command("switchecc 0", 0);
- if(ret)
- return 1;
- }
- return 0;
- }
- int get_crc_data_from_ota(char *file_name)
- {
- int ret = -1;
- unsigned int file_size;
- char cmd[128] = { 0 };
- unsigned int *srcdata = (unsigned int *)(env_get_hex("loadaddr", 0));
- memset(&sys_info, 0, sizeof(sys_info));
- printf("file_name=%s\n", file_name);
- sprintf(cmd, "ubifsload %s %s ", env_get("loadaddr"),file_name);
- printf("cmd=%s\n", cmd);
- ret = run_command(cmd, 0);
- if(ret)
- return 1;
- file_size = env_get_ulong("filesize", 16, 0x2000);
- memcpy(&sys_info, srcdata, file_size);
- printf("uboot_crc = 0x%x\n",sys_info.uboot_crc);
- printf("fdt_crc = 0x%x\n",sys_info.fdt_crc);
- printf("zImage_crc = 0x%x\n",sys_info.zImage_crc);
- printf("rootfs_crc = 0x%x\n",sys_info.rootfs_crc);
- printf("ubootspl_crc = 0x%x\n",sys_info.ubootspl_crc);
- printf("bootanimation_crc = 0x%x\n",sys_info.bootanimation_crc);
- printf("bootlogo_crc = 0x%x\n",sys_info.bootlogo_crc);
- return 0;
- }
- #define ARK1668_UPDATE_MAGIC "ada7f0c6-7c86-11e9-8f9e-2a86e4085a59"
- int do_Update_flash(cmd_tbl_t * cmdtp, int flag, int argc, char *const argv[])
- {
- char cmd[32];
- unsigned int index = 0;
- unsigned int loadaddr;
- char *update_fdt = NULL;
- unsigned int ret = 0;
- unsigned int resetuboot = 0;
- unsigned int dis_pos_x;
- unsigned int dis_pos_y;
- resetuboot = env_get_hex("ubootreset", 0);
- printf("resetuboot = %d \n",resetuboot);
- sprintf((char *)cmd,"disconfig 0");
- run_command(cmd, 0);
- sprintf(cmd, "ubi part ota");
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- sprintf((char *)cmd,"disconfig 5");
- run_command(cmd, 0);
- mdelay(300);
- sprintf(cmd, "ubifsmount ubi:ota");
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- mdelay(300);
- sprintf((char *)cmd,"disconfig 8");
- run_command(cmd, 0);
- loadaddr = env_get_hex("loadaddr", 0);
- update_fdt = env_get("boardfdt");
- printf("update_fdt:%s\n", update_fdt);
- sprintf(cmd, "ubifsload %s %s ", env_get("loadaddr"),"update-magic");
- run_command(cmd, 0);
- if (loadaddr && !memcmp((void *)loadaddr, ARK1668_UPDATE_MAGIC, strlen(ARK1668_UPDATE_MAGIC))) {
- printf("ARK1668_UPDATE_MAGIC CHECK OK!!\n");
- }else {
- printf("Wrong update magic, do not update from flash.\n");
- goto bootoldsys;
- }
- sprintf((char *)cmd,"disconfig 10");
- run_command(cmd, 0);
- get_crc_data_from_ota("crcdata.bin");
- dis_pos_x = 6;
- dis_pos_y = 20;
- printf("\r\n *****Now update ubootspl.bin ......\r\n");
- ret = updata_the_ubootspl();
- mdelay(30);
- if(!ret)
- {
- sprintf(cmd, "setenv bootstrapsize %s",env_get("filesize"));
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- mdelay(30);
- sprintf((char *)cmd,"disconfig 5");
- run_command(cmd, 0);
- mdelay(30);
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"bootstrap",0);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- }
- else
- {
- mdelay(30);
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"bootstrap",1);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- goto bootoldsys;
- }
- ret = ark_update_partition("bootloader", "u-boot.img");
- if(!ret)
- {
- sprintf(cmd, "setenv bootloadersize %s",env_get("filesize"));
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- mdelay(30);
- sprintf((char *)cmd,"disconfig 10");
- run_command(cmd, 0);
- mdelay(30);
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"bootloader",0);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- if(resetuboot == 0 )
- {
- env_set("ubootreset", "1");
- env_set("update_from_ota", "yes");
- env_set("need_update", "no");
- run_command("saveenv", 0);
- mdelay(20);
- run_command("reset", 0);
- while(1);
- }
- env_set("ubootreset", "0");
- run_command("saveenv", 0);
- mdelay(20);
- }
- else
- {
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"bootloader",1);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- goto bootoldsys;
- }
- ret = ark_update_partition("fdt", update_fdt);
- if(!ret)
- {
- dis_pos_y = dis_pos_y + 20;
- sprintf(cmd, "setenv fdtsize %s",env_get("filesize"));
- run_command(cmd, 0);
- printf("cmd=%s\n", cmd);
- mdelay(30);
- sprintf((char *)cmd,"disconfig 15");
- run_command(cmd, 0);
- mdelay(30);
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"fdt",0);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- }
- else
- {
- mdelay(30);
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"fdt",1);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- goto bootoldsys;
- }
- ret = ark_update_partition("kernel", "zImage");
- if(!ret)
- {
- sprintf(cmd, "setenv kernelsize_a %s",env_get("filesize"));
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- mdelay(30);
- sprintf((char *)cmd,"disconfig 25");
- run_command(cmd, 0);
- mdelay(30);
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"kernel",0);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- }
- else
- {
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"kernel",1);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- goto bootoldsys;
- }
- #if 0
- ret = ark_update_partition("bootanimation", "bootanimation");
- if(!ret)
- {
- sprintf(cmd, "setenv bootanimationsize %s",env_get("filesize"));
- run_command(cmd, 0);
- printf("cmd=%s\n", cmd);
- mdelay(30);
- sprintf((char *)cmd,"disconfig 30");
- run_command(cmd, 0);
- mdelay(30);
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"bootanimation",0);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- }
- else
- {
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"bootanimation",1);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- goto bootoldsys;
- }
- #endif
- ret = ark_update_partition("bootloader_bak", "u-boot.img");
- if(!ret)
- {
- sprintf((char *)cmd,"disconfig 40");
- run_command(cmd, 0);
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"bootloader_bak",0);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- }
- else
- {
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"bootloader_bak",1);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- goto bootoldsys;
- }
- ret = ark_update_partition("rootfs","rootfs.ubi");
- if(!ret)
- {
- sprintf((char *)cmd,"disconfig 95");
- run_command(cmd, 0);
- mdelay(30);
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"rootfs",0);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- }
- else
- {
- mdelay(30);
- dis_pos_y = dis_pos_y + 20;
- sprintf((char *)cmd,"disstring %d %d %s %d",dis_pos_x,dis_pos_y,"rootfs",1);
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- goto bootoldsys;
- }
- printf("##set update_from_flash no##\n");
- env_set("update_from_ota", "no");
- mdelay(10);
- env_set("need_update", "no");
- mdelay(10);
- sprintf(cmd, "saveenv");
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- sprintf((char *)cmd,"disconfig 100");
- run_command(cmd, 0);
- return 0;
- bootoldsys:
- env_set("update_from_ota", "no");
- mdelay(10);
- sprintf(cmd, "saveenv");
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- mdelay(20);
- sprintf(cmd, "run nandboot");
- printf("cmd=%s\n", cmd);
- run_command(cmd, 0);
- return 1;
- }
- U_BOOT_CMD(UpdateFlash, 4, 0, do_Update_flash, "updata Flash ", "<interface> <dev[:part]> <filename>\n");
|