burning steps based on marvell pxa2128 and qcom

本文档提供了Marvell平台使用XDB工具进行固件烧录的详细步骤,包括配置TFTP服务器、烧录不同分区等内容。同时介绍了Qualcomm平台使用fastboot工具烧录Android系统的命令及流程。

1  marvell platform

tool : XDB_5.3.013

hardware: Marvell JTAG debugger, which is a black box with JTAG connection and usb port

The instruction is inside the release note. 

Using $$xdb5.3\xdb\configurations\jtag\soc\pxa2128\pxa2128_b0_armv7.xsf


********************OBM****************************From prebuilt folder
1) ntims
partition: 0x1
offset: 0x0
ntim_MMP3B1_1GB-DDR3-256k-interleave_Qseven_797_398MHZ_1200mv
2) uboot
partition: 0x2
offset: 0x0
3) MMP3_LINUX_ARM_NTZ.bin
partition: 0x1
offset: 0x2c000
4) Wtm_rel_mmp3.bin
partition: 0x1
offset: 0x4000


Configure the Host TFTP server to IP address 192.168.1.100 on the USB Ethernet. For
example:
$ sudo ifconfig usb0 192.168.1.100


***************Kernel and file system***************
From FileSystem folder

At uboot prompt

DHCP

1) setenv autostart no
2) dhcp 0x1100000 10.20.112.32:primary_qseven_gpt;
3) mmc write 0x1100000 0 0x22;
4) dhcp 0x1100000 10.20.112.32:second_qseven_gpt;
5) mmc write 0x1100000 0xECBFDF 0x21;
6) dhcp 0x1100000 10.20.112.32:uImage;
7) mmc write 0x1100000 0x4c00 0x4000;
8) dhcp 0x1100000 10.20.112.32:qseven_part1
9) mmc write 0x1100000 0x8c00 0x96000
10) dhcp 0x1100000 10.20.112.32:qseven_part2
11) mmc write 0x1100000 0x9ec00 0x96000
12) dhcp 0x1100000 10.20.112.32:qseven_part3

13) mmc write 0x1100000 0x134c00 0x96000

static ip

1) setenv autostart no
2) tftpboot 0x1100000 primary_qseven_gpt;
3) mmc write 0x1100000 0 0x22;
4) tftpboot 0x1100000 second_qseven_gpt;
5) mmc write 0x1100000 0xECBFDF 0x21;
6) tftpboot 0x1100000 uImage;
7) mmc write 0x1100000 0x4c00 0x4000;
8) tftpboot 0x1100000 qseven_part1
9) mmc write 0x1100000 0x8c00 0x96000
10) tftpboot 0x1100000 qseven_part2
11) mmc write 0x1100000 0x9ec00 0x96000
12) tftpboot 0x1100000 qseven_part3
13) mmc write 0x1100000 0x134c00 0x96000


2  qcom platform

Android烧写常用命令
  fastboot reboot 重启机器
  fastboot flash boot boot.img 烧写引导分区
  fastboot flash system system.img 烧写系统分区
  fastboot flash userdata data.img 烧写数据分区
  fastboot flash recovery recovery.img 烧写恢复模式分区
  fastboot flash splash1 mysplash.rgb565 烧写开机画面
  fastboot erase system 擦除系统分区
  fastboot update update.zip update.zip 是 boot.img, system.img和recovery.img的zip压缩包
  以上子命令不一定存在,要根绝实际情况确定。fastboot 中是通过 fastboot_register 方式注册了一系列可用的子命令,如:
  fastboot_register("boot", cmd_boot);
  fastboot_register("erase:", cmd_erase);
  fastboot_register("flash:", cmd_flash);
  fastboot_register("continue", cmd_continue);
  fastboot_register("reboot", cmd_reboot);
  fastboot_register("reboot-bootloader", cmd_reboot_bootloader);
  fastboot_register("getvar:", cmd_getvar);
  fastboot_register("download:", cmd_download);
  我们可以根绝实际情况修改 fastboot 代码,让其支持更多命令,如:
  fastboot flashall 在当前目录寻找各种所有的image文件,在刷完所有分区后重启手机
  recovery 分区只能对 system ,data,cache boot 等分区进行烧写,sd卡上放 update.zip 的升级方式就可以通过 recovery 的方式完成。
  要给高通的开发板烧录文件系统,必须有以下的镜像文件:
  adsp.mbn dsp相关的
  amss.mbn AMSS modem binary image
  dbl.mbn 设备启动的装载程序
  osbl.mbn OS boot loader binary image
  partition.mbn 分区表的二进制文件
  appsboot.mbn 应用程序的启动文件,如果是 eMMC 启动对应文件 emmc_appsboot.mbn
  boot.img ap 端的linux 内核
  system.img android 文件系统的 system 分区
  userdata.img android 文件系统的 data 分区
基于可靠性评估序贯蒙特卡洛模拟法的配电网可靠性评估研究(Matlab代码实现)内容概要:本文围绕“基于可靠性评估序贯蒙特卡洛模拟法的配电网可靠性评估研究”,介绍了利用Matlab代码实现配电网可靠性的仿真分析方法。重点采用序贯蒙特卡洛模拟法对配电网进行长时间段的状态抽样与统计,通过模拟系统元件的故障与修复过程,评估配电网的关键可靠性指标,如系统停电频率、停电持续时间、负荷点可靠性等。该方法能够有效处理复杂网络结构与设备时序特性,提升评估精度,适用于含分布式电源、电动汽车等新型负荷接入的现代配电网。文中提供了完整的Matlab实现代码与案例分析,便于复现和扩展应用。; 适合人群:具备电力系统基础知识和Matlab编程能力的高校研究生、科研人员及电力行业技术人员,尤其适合从事配电网规划、运行与可靠性分析相关工作的人员; 使用场景及目标:①掌握序贯蒙特卡洛模拟法在电力系统可靠性评估中的基本原理与实现流程;②学习如何通过Matlab构建配电网仿真模型并进行状态转移模拟;③应用于含新能源接入的复杂配电网可靠性定量评估与优化设计; 阅读建议:建议结合文中提供的Matlab代码逐段调试运行,理解状态抽样、故障判断、修复逻辑及指标统计的具体实现方式,同时可扩展至不同网络结构或加入更多不确定性因素进行深化研究。
评论 1
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值