burning steps based on marvell pxa2128 and qcom

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 分区

你可能感兴趣的:(burning steps based on marvell pxa2128 and qcom)