联咏 Nt9832x Uboot升级all-in-one流程

nvt_fw_update->(loader中,已经将all-in-one的FW下载到了share memory,此函数中,将share memory的地址和固件大小传给nvt_process_all_in_one)
nvt_process_all_in_one->
nvtpack_get_partition(&np_get_input,&mem_out)->将share memory 中的内容读到mem_out内存中
nvt_getfdt_emb–>读取FDT的分区表addr和size

nvt_part_config–>初始话分区环境变量
nvt_enum_fdt_props->

nvtpack_enum_partition–>回调nvt_on_partition_enum_update给各个分区升级

nvt_update_partitions–>负责具体分区升级实现,传入分区地址和size,共享内存地址和p_data
//构建命令行,run_command执行命令
sprintf(command, “nand erase 0x%llx 0x%llx”, part_off, PartitionSize);
run_command(command, 0);
//构建nand write命令,把共享内存中的数据写入nand flash
sprintf(command, “mmc write 0x%x 0x%llx 0x%x”, addr, align_off, align_size);
run_command(command, 0);

//回读数据并且比较
np_enum_input.fp_enum = nvt_on_partition_enum_mtd_readback;
if(nvtpack_enum_partition(&np_enum_input) != NVTPACK_ER_SUCCESS) {
printf(“failed to run nvt_read_partitions.\r\n”);
return -1;
}

上一篇:codeforces B. Odd Grasshopper


下一篇:7-5 实验1_5_数据类型 (100 分)