Flash_Write_Command 2.1 KB

12345678910111213141516171819
  1. // By SD
  2. nand erase.chip;
  3. mw 0x80000000 0xffffffff 0x00080000;fatload mmc 0 0x80000000 MLO;nand erase 0x00000000 0x00080000;nand write 0x80000000 0x00000000 0x00080000;
  4. mw 0x80000000 0xffffffff 0x00100000;fatload mmc 0 0x80000000 u-boot.img;nand erase 0x00080000 0x00100000;nand write 0x80000000 0x00080000 0x00100000;
  5. mw 0x80000000 0xffffffff 0x00080000;fatload mmc 0 0x80000000 am335x-evm.dtb;nand erase 0x00300000 0x00080000;nand write 0x80000000 0x00300000 0x00080000;
  6. mw 0x80000000 0xffffffff 0x00A00000;fatload mmc 0 0x80000000 zimage;nand erase 0x00400000 0x00A00000;nand write 0x80000000 0x00400000 0x00A00000;
  7. mw 0x80000000 0xffffffff 0x03000000;fatload mmc 0 0x80000000 ramdisk.gz;nand erase 0x03000000 0x03000000;nand write 0x80000000 0x03000000 0x03000000;
  8. mw 0x80000000 0xffffffff 0x00600000;fatload mmc 0 0x80000000 FactoryDefaultConfig.bin;nand erase 0x09000000 0x00600000;nand write 0x80000000 0x09000000 0x00600000;nand erase 0x09600000 0x00600000;nand write 0x80000000 0x09600000 0x00600000;nand erase 0x09c00000 0x00600000;nand write 0x80000000 0x09c00000 0x00600000;boot;
  9. // By TFTP
  10. nand erase.chip;
  11. mw 0x80000000 0xffffffff 0x00080000;tftp 0x80000000 MLO;nand erase 0x00000000 0x00080000;nand write 0x80000000 0x00000000 0x00080000;
  12. mw 0x80000000 0xffffffff 0x00100000;tftp 0x80000000 u-boot.img;nand erase 0x00080000 0x00100000;nand write 0x80000000 0x00080000 0x00100000;
  13. mw 0x80000000 0xffffffff 0x00080000;tftp 0x80000000 am335x-evm.dtb;nand erase 0x00300000 0x00080000;nand write 0x80000000 0x00300000 0x00080000;
  14. mw 0x80000000 0xffffffff 0x00A00000;tftp 0x80000000 zimage;nand erase 0x00400000 0x00A00000;nand write 0x80000000 0x00400000 0x00A00000;
  15. mw 0x80000000 0xffffffff 0x03000000;tftp 0x80000000 ramdisk.gz;nand erase 0x03000000 0x03000000;nand write 0x80000000 0x03000000 0x03000000;
  16. mw 0x80000000 0xffffffff 0x00600000;tftp 0x80000000 FactoryDefaultConfig.bin;nand erase 0x09000000 0x00600000;nand write 0x80000000 0x09000000 0x00600000;nand erase 0x09600000 0x00600000;nand write 0x80000000 0x09600000 0x00600000;nand erase 0x09c00000 0x00600000;nand write 0x80000000 0x09c00000 0x00600000;