123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209 |
- #include "Module_Upgrade.h"
- #define DEBUG_INFO(format, args...) storeLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
- #define DEBUG_WARN(format, args...) storeLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
- #define DEBUG_ERROR(format, args...) storeLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
- #define SystemLogMessage
- #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
- #define PASS 1
- #define FAIL -1
- #define YES 1
- #define NO 0
- struct SysConfigAndInfo *ShmSysConfigAndInfo;
- struct StatusCodeData *ShmStatusCodeData;
- struct FanModuleData *ShmFanModuleData;
- int storeLogMsg(const char *fmt, ...)
- {
- char Buf[4096+256];
- char buffer[4096];
- time_t CurrentTime;
- struct tm *tm;
- struct timeval tv;
- va_list args;
- va_start(args, fmt);
- int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
- va_end(args);
- memset(Buf,0,sizeof(Buf));
- CurrentTime = time(NULL);
- tm=localtime(&CurrentTime);
- gettimeofday(&tv, NULL);
- sprintf(Buf,"echo -n \"[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s\" >> /Storage/SystemLog/[%04d.%02d]Module_UpgradeLog",
- tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec,
- buffer,
- tm->tm_year+1900,tm->tm_mon+1);
- #ifdef SystemLogMessage
- system(Buf);
- #endif
- #ifdef ConsloePrintLog
- printf("[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec, buffer);
- #endif
- return rc;
- }
- int DiffTimebByUpgrade(struct timeb ST, struct timeb ET)
- {
-
- unsigned int StartTime,StopTime;
- StartTime=(unsigned int)ST.time;
- StopTime=(unsigned int)ET.time;
- return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
- }
- unsigned char *memcat(unsigned char *dest, unsigned int dest_len, unsigned char *src, unsigned int src_len)
- {
- memcpy(dest+dest_len, src, src_len);
- return dest;
- }
- uint32_t crc32(uint8_t *data, unsigned int length)
- {
- uint8_t i;
- uint32_t cnt = 0;
- uint32_t crc = 0xffffffff;
- while(length--)
- {
- if(cnt>33 && cnt<48) {
- data++;
- }else {
- crc ^= *data++;
- for (i = 0; i < 8; ++i)
- {
- if (crc & 1)
- crc = (crc >> 1) ^ 0xEDB88320;
- else
- crc = (crc >> 1);
- }
- }
- cnt++;
- }
- return ~crc;
- }
- int runShellCmd(const char*cmd)
- {
- int result = FAIL;
- char buf[256];
- FILE *fp;
- fp = popen(cmd, "r");
- if(fp != NULL)
- {
- while(fgets(buf, sizeof(buf), fp) != NULL)
- {
- DEBUG_INFO("%s\n", buf);
- }
- result = PASS;
- }
- pclose(fp);
- return result;
- }
- int Upgrade_Flash(unsigned int Type,char *SourcePath,char *ModelName)
- {
- int result = FAIL;
- char cmdBuf[128];
- long int MaxLen=48*1024*1024, ImageLen=0;
- unsigned int ImageCRC=0, DataLength=0;
- int wrd,fd;
-
- switch(Type)
- {
- case CSU_BOOTLOADER:
- MaxLen = 1*1024*1024;
-
- break;
- case CSU_KERNEL_CONFIGURATION:
- MaxLen = 0.5*1024*1024;
- DEBUG_INFO("Image type: DTB\n");
- break;
- case CSU_KERNEL_IMAGE:
- MaxLen = 10*1024*1024;
- DEBUG_INFO("Image type: Kernel\n");
- break;
- case CSU_ROOT_FILE_SYSTEM:
- MaxLen = 48*1024*1024;
- DEBUG_INFO("Image type: Root fs\n");
- break;
- case CSU_USER_CONFIGURATION:
- MaxLen = 6*1024*1024+48;
- DEBUG_INFO("Image type: Config\n");
- break;
- default:
- break;
- }
- fd = open(SourcePath, O_RDONLY);
- if(fd < 0)
- {
- DEBUG_ERROR("UpdateRootfs NG - can not open rootfs\n");
- return result;
- }
- unsigned char *ptr = malloc(MaxLen);
- memset(ptr,0xFF,MaxLen);
-
- ImageLen = read(fd,ptr,MaxLen);
- close(fd);
-
- sprintf(cmdBuf, "rm -f %s", SourcePath);
- system(cmdBuf);
- DEBUG_INFO("Delete source file.\n");
-
- int i;
- int isModelNameOK = PASS;
- for(i=0;i<16;i++)
- {
- if(ModelName[i] != ptr[i])
- {
- isModelNameOK = FAIL;
- }
- }
- if(isModelNameOK == FAIL)
- {
- DEBUG_ERROR("Model name mismatch.\n");
- }
- else
- {
-
- if(Type == (((unsigned int)ptr[16])<<24 | ((unsigned int)ptr[17])<<16 | ((unsigned int)ptr[18])<<8 | ((unsigned int)ptr[19])))
- {
- if((ImageLen-48) == (((unsigned int)ptr[20])<<24 | ((unsigned int)ptr[21])<<16 | ((unsigned int)ptr[22])<<8 | ((unsigned int)ptr[23])))
- {
- DataLength = ImageLen-48;
-
- ImageCRC = ((unsigned int)ptr[34])<<24 | ((unsigned int)ptr[35])<<16 | ((unsigned int)ptr[36])<<8 | ((unsigned int)ptr[37]);
-
- DEBUG_INFO("CRC32 in image: 0x%08X\n",ImageCRC);
- DEBUG_INFO("CRC32 by calculation: 0x%08X\n",crc32(ptr,ImageLen));
- if(crc32(ptr,ImageLen) == ImageCRC)
- {
-
- switch(Type)
- {
- case FLASH_IMAGE_TYPE_SPL:
- fd = open("/mnt/imgBuffer", O_RDWR | O_CREAT | O_EXCL);
- if (fd < 0)
- {
- DEBUG_ERROR("Can not create SPL image buffer file.\n");
- result = FAIL;
- }
- else
- {
-
- DEBUG_INFO("Writing image to image buffer file...\n");
- wrd=write(fd, ptr+48, DataLength);
- close(fd);
- DEBUG_INFO(">> imgBuffer Written length: 0x%x\n", wrd);
- if(wrd != DataLength)
- {
- result = FAIL;
- }
- else
- {
- DEBUG_INFO("Erase /dev/mtd0.\n");
- runShellCmd("flash_erase /dev/mtd0 0 1");
- DEBUG_INFO("Write /dev/mtd0.\n");
- runShellCmd("nandwrite -p /dev/mtd0 /mnt/imgBuffer");
- system("rm -f /mnt/imgBuffer");
- result = PASS;
- }
- }
- break;
- case CSU_BOOTLOADER:
- fd = open("/mnt/imgBuffer", O_RDWR | O_CREAT | O_EXCL);
- if (fd < 0)
- {
- DEBUG_ERROR("Can not create uboot image buffer file.\n");
- result = FAIL;
- }
- else
- {
-
- DEBUG_INFO("Writing image to image buffer file...\n");
- wrd=write(fd, ptr+48, DataLength);
- close(fd);
- DEBUG_INFO(">> imgBuffer written length: 0x%x\n", wrd);
- if(wrd != DataLength)
- {
- result = FAIL;
- }
- else
- {
- DEBUG_INFO("Erase /dev/mtd1.\n");
- runShellCmd("flash_erase /dev/mtd1 0 2");
- DEBUG_INFO("Write /dev/mtd1.\n");
- runShellCmd("nandwrite -p /dev/mtd1 /mnt/imgBuffer");
- DEBUG_INFO("Erase /dev/mtd3.\n");
- runShellCmd("flash_erase /dev/mtd3 0 2");
- DEBUG_INFO("Write /dev/mtd3.\n");
- runShellCmd("nandwrite -p /dev/mtd3 /mnt/imgBuffer");
- system("rm -f /mnt/imgBuffer");
- result = PASS;
- }
- }
- break;
- case CSU_KERNEL_CONFIGURATION:
- fd = open("/mnt/imgBuffer", O_RDWR | O_CREAT | O_EXCL);
- if (fd < 0)
- {
- DEBUG_ERROR("Can not create DTB image buffer file.\n");
- result = FAIL;
- }
- else
- {
-
- DEBUG_INFO("Writing image to image buffer file...\n");
- wrd=write(fd, ptr+48, DataLength);
- close(fd);
- DEBUG_INFO(">> imgBuffer written length: 0x%x\n", wrd);
- if(wrd != DataLength)
- {
- result = FAIL;
- }
- else
- {
- DEBUG_INFO("Erase /dev/mtd4.\n");
- runShellCmd("flash_erase /dev/mtd4 0 1");
- DEBUG_INFO("Write /dev/mtd4.\n");
- runShellCmd("nandwrite -p /dev/mtd4 /mnt/imgBuffer");
- DEBUG_INFO("Erase /dev/mtd5.\n");
- runShellCmd("flash_erase /dev/mtd5 0 1");
- DEBUG_INFO("Write /dev/mtd5.\n");
- runShellCmd("nandwrite -p /dev/mtd5 /mnt/imgBuffer");
- system("rm -f /mnt/imgBuffer");
- result = PASS;
- }
- }
- break;
- case CSU_KERNEL_IMAGE:
- fd = open("/mnt/imgBuffer", O_RDWR | O_CREAT | O_EXCL);
- if (fd < 0)
- {
- DEBUG_ERROR("Can not create kernel image buffer file.\n");
- result = FAIL;
- }
- else
- {
-
- DEBUG_INFO("Writing image to image buffer file...\n");
- wrd=write(fd, ptr+48, DataLength);
- close(fd);
- DEBUG_INFO(">> imgBuffer written length: 0x%x\n", wrd);
- if(wrd != DataLength)
- {
- result = FAIL;
- }
- else
- {
- DEBUG_INFO("Erase /dev/mtd6.\n");
- runShellCmd("flash_erase /dev/mtd6 0 20");
- DEBUG_INFO("Write /dev/mtd6.\n");
- runShellCmd("nandwrite -p /dev/mtd6 /mnt/imgBuffer");
- DEBUG_INFO("Erase /dev/mtd7.\n");
- runShellCmd("flash_erase /dev/mtd7 0 20");
- DEBUG_INFO("Write /dev/mtd7.\n");
- runShellCmd("nandwrite -p /dev/mtd7 /mnt/imgBuffer");
- system("rm -f /mnt/imgBuffer");
- result = PASS;
- }
- }
- break;
- case CSU_ROOT_FILE_SYSTEM:
- fd = open("/mnt/imgBuffer", O_RDWR | O_CREAT | O_EXCL);
- if(fd < 0)
- {
- DEBUG_ERROR("UpdateRootfs NG - can not create rootfs image buffer file\n");
- result = FAIL;
- }
- else
- {
- DEBUG_INFO("Writing image to image buffer file...\n");
- wrd=write(fd, ptr+48, DataLength);
- close(fd);
- DEBUG_INFO(">> imgBuffer written length: 0x%x\n", wrd);
- if(wrd!=DataLength)
- {
- result = FAIL;
- }
- else
- {
- DEBUG_INFO("Erase /dev/mtd8.\n");
- runShellCmd("flash_erase /dev/mtd8 0 96");
- DEBUG_INFO("Write /dev/mtd8.\n");
- runShellCmd("nandwrite -p /dev/mtd8 /mnt/imgBuffer");
- DEBUG_INFO("Erase /dev/mtd9.\n");
- runShellCmd("flash_erase /dev/mtd9 0 96");
- DEBUG_INFO("Write /dev/mtd9.\n");
- runShellCmd("nandwrite -p /dev/mtd9 /mnt/imgBuffer");
- system("rm -f /mnt/imgBuffer");
- result = PASS;
- }
- }
- break;
- case CSU_USER_CONFIGURATION:
- fd = open("/mnt/imgBuffer", O_RDWR | O_CREAT | O_EXCL);
- if (fd < 0)
- {
- DEBUG_ERROR("Can not create configuration image buffer file\n");
- result = FAIL;
- }
- else
- {
-
- DEBUG_INFO("Writing image to image buffer file...\n");
- wrd=write(fd, ptr+48, DataLength);
- close(fd);
- DEBUG_INFO(">> imgBuffer written length: 0x%x\n", wrd);
- if(wrd != DataLength)
- {
- result = FAIL;
- }
- else
- {
- DEBUG_INFO("Erase /dev/mtd10.\n");
- runShellCmd("flash_erase /dev/mtd10 0 12");
- DEBUG_INFO("Write /dev/mtd10.\n");
- runShellCmd("nandwrite -p /dev/mtd10 /mnt/imgBuffer");
- DEBUG_INFO("Erase /dev/mtd11.\n");
- runShellCmd("flash_erase /dev/mtd11 0 12");
- DEBUG_INFO("Write /dev/mtd11.\n");
- runShellCmd("nandwrite -p /dev/mtd11 /mnt/imgBuffer");
- system("rm -f /mnt/imgBuffer");
- result = PASS;
- }
- }
- break;
- default:
- break;
- }
- }
- else
- DEBUG_ERROR("Firmware image CRC32 mismatch.\n");
- }
- else
- DEBUG_ERROR("Firmware image length mismatch.\n");
- }
- else
- DEBUG_ERROR("Firmware image type mismatch.\n");
- }
- free(ptr);
- if(result == PASS)
- DEBUG_INFO("Update image success\n");
- else
- DEBUG_ERROR("Update image fail\n");
- return result;
- }
- void displayMessage(uint8_t *data, uint16_t len, uint8_t isRX)
- {
- uint8_t output[8192];
- memset(output, 0x00, ARRAY_SIZE(output));
- sprintf((char*)output, "%s", (isRX?"RX: ":"TX: "));
- for(uint16_t idx = 0;idx<len;idx++)
- {
- sprintf((char*)output, "%s%02x ", output, data[idx]);
- }
- DEBUG_INFO("%s\n", output);
- }
- int uart_tranceive(int fd, unsigned char* cmd, unsigned char* rx, int len, unsigned char needErase)
- {
- uint16_t rxLen = 0;
- tcflush(fd,TCIOFLUSH);
-
- if(write(fd, cmd, len) >= len)
- {
- rxLen = read(fd, rx, 8);
-
- }
- else
- {
- DEBUG_ERROR("Serial command %s response fail.\n", cmd);
- }
- return rxLen;
- }
- unsigned char uart_update_start(unsigned char fd, unsigned char targetAddr, unsigned int crc32)
- {
- unsigned char result = FAIL;
- unsigned char tx[11] = {0xaa, 0x00, targetAddr, UART_CMD_UPDATE_START, 0x04, 0x00, (crc32>>0)&0xff, (crc32>>8)&0xff, (crc32>>16)&0xff, (crc32>>24)&0xff, 0x00};
- unsigned char rx[8] = {0};
- unsigned char chksum = 0x00;
- for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
- chksum ^= tx[6+idx];
- tx[10] = chksum;
- if(uart_tranceive(fd, tx, rx, 11, 0x01) >= 8)
- {
- chksum = 0x00;
- for(int idx=0;idx<((rx[4] | rx[5]<<8)>1?1:(rx[4] | rx[5]<<8));idx++)
- {
- chksum ^= rx[6+idx];
- }
- if((chksum == rx[6+((rx[4] | rx[5]<<8)>1?1:(rx[4] | rx[5]<<8))]) &&
- (rx[2] == tx[1]) &&
- (rx[1] == tx[2]) &&
- (rx[3] == tx[3]) &&
- (rx[6] == 0x01))
- {
- result = PASS;
- DEBUG_INFO("UART target is ready for upgrade.\n");
- }
- else
- {
- DEBUG_INFO("UART target is not ready...\n");
- }
- }
- else
- {
- DEBUG_ERROR("UART receiving update start ack failed...\n");
- }
- return result;
- }
- unsigned char uart_update_abord(unsigned char fd, unsigned char targetAddr)
- {
- unsigned char result = FAIL;
- unsigned char tx[7] = {0xaa, 0x00, targetAddr, UART_CMD_UPDATE_ABORD, 0x00, 0x00, 0x00};
- unsigned char rx[8] = {0};
- unsigned char chksum = 0x00;
- if(uart_tranceive(fd, tx, rx, 7, 0x00) >= 8)
- {
- for(int idx=0;idx<((rx[4] | rx[5]<<8)>1?1:(rx[4] | rx[5]<<8));idx++)
- {
- chksum ^= rx[6+idx];
- }
- if((chksum == rx[6+((rx[4] | rx[5]<<8)>1?1:(rx[4] | rx[5]<<8))]) &&
- (rx[2] == tx[1]) &&
- (rx[1] == tx[2]) &&
- (rx[3] == tx[3]) &&
- (rx[6] == 0x01))
- {
- result = PASS;
- DEBUG_INFO("UART target abord update OK.\n");
- }
- else
- {
- DEBUG_ERROR("UART target abord update failed.\n");
- }
- }
- else
- {
- DEBUG_ERROR("UART receiving update abord ack failed...\n");
- }
- return result;
- }
- unsigned char uart_update_transfer(unsigned char fd, unsigned char targetAddr, unsigned int startAddr, unsigned char *data, unsigned short int length)
- {
- unsigned char result = FAIL;
- unsigned char tx[11 + length];
- unsigned char rx[8] = {0};
- unsigned char chksum = 0x00;
- tx[0] = 0xaa;
- tx[1] = 0x00;
- tx[2] = targetAddr;
- tx[3] = UART_CMD_UPDATE_TRANSFER;
- tx[4] = (4 + length) & 0xff;
- tx[5] = ((4 + length)>>8) & 0xff;
- tx[6] = (startAddr>>0) & 0xff;
- tx[7] = (startAddr>>8) & 0xff;
- tx[8] = (startAddr>>16) & 0xff;
- tx[9] = (startAddr>>24) & 0xff;
- memcpy(tx+10, data, length);
- for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
- chksum ^= tx[6+idx];
- tx[sizeof(tx)-1] = chksum;
- if(uart_tranceive(fd, tx, rx, (11 + length), 0x00) >= 8)
- {
- chksum = 0;
- for(int idx=0;idx<((rx[4] | rx[5]<<8)>1?1:(rx[4] | rx[5]<<8));idx++)
- {
- chksum ^= rx[6+idx];
- }
- if((chksum == rx[6+((rx[4] | rx[5]<<8)>1?1:(rx[4] | rx[5]<<8))]) &&
- (rx[2] == tx[1]) &&
- (rx[1] == tx[2]) &&
- (rx[3] == tx[3]) &&
- (rx[6] == 0x01))
- {
- result = PASS;
- }
- }
- else
- {
- DEBUG_ERROR("UART receiving update transfer ack failed...\n");
- }
- return result;
- }
- unsigned char uart_update_finish(unsigned char fd, unsigned char targetAddr)
- {
- unsigned char result = FAIL;
- unsigned char tx[7] = {0xaa, 0x00, targetAddr, UART_CMD_UPDATE_FINISH, 0x00, 0x00, 0x00};
- unsigned char rx[8] = {0};
- unsigned char chksum = 0x00;
- if(uart_tranceive(fd, tx, rx, 7, 0x00) >= 8)
- {
- for(int idx=0;idx<((rx[4] | rx[5]<<8)>1?1:(rx[4] | rx[5]<<8));idx++)
- {
- chksum ^= rx[6+idx];
- }
- if((chksum == rx[6+((rx[4] | rx[5]<<8)>1?1:(rx[4] | rx[5]<<8))]) &&
- (rx[2] == tx[1]) &&
- (rx[1] == tx[2]) &&
- (rx[3] == tx[3]) &&
- (rx[6] == 0x01))
- {
- result = PASS;
- DEBUG_INFO("UART update finish check OK...\n");
- }
- else
- {
- DEBUG_ERROR("UART update finish check failed...\n");
- }
- }
- else
- {
- DEBUG_ERROR("UART receiving update finish ack failed...\n");
- }
- return result;
- }
- unsigned char uart_config_timeout(unsigned char uartfd)
- {
- struct termios tios;
- ioctl (uartfd, TCGETS, &tios);
- tios.c_cc[VTIME]=(unsigned char)50;
- tcflush(uartfd, TCIFLUSH);
- ioctl (uartfd, TCSETS, &tios);
- return uartfd;
- }
- int Upgrade_UART(int uartfdOrd,unsigned int Type,unsigned char TargetAddr,char *SourcePath,char *ModelName)
- {
- int result = FAIL;
- char cmdBuf[128];
- long int MaxLen=48*1024*1024, ImageLen=0;
- unsigned int ImageCRC=0, DataLength=0;
- int fd;
- int uartfd = uart_config_timeout(uartfdOrd);
- fd = open(SourcePath, O_RDONLY);
- if(fd < 0)
- {
- DEBUG_ERROR("UpdateRootfs NG - can not open rootfs\n");
- return result;
- }
- unsigned char *ptr = malloc(MaxLen);
- memset(ptr,0xFF,MaxLen);
-
- ImageLen = read(fd,ptr,MaxLen);
- close(fd);
-
- int i;
- int isModelNameOK = PASS;
- for(i=0;i<16;i++)
- {
- if(ModelName[i] != ptr[i])
- {
- isModelNameOK = FAIL;
- }
- }
- if(isModelNameOK == FAIL)
- {
- DEBUG_ERROR("Model name mismatch...\n");
- }
- else
- {
-
- if(Type == (((unsigned int)ptr[16])<<24 | ((unsigned int)ptr[17])<<16 | ((unsigned int)ptr[18])<<8 | ((unsigned int)ptr[19])))
- {
- if((ImageLen-48) == (((unsigned int)ptr[20])<<24 | ((unsigned int)ptr[21])<<16 | ((unsigned int)ptr[22])<<8 | ((unsigned int)ptr[23])))
- {
- DataLength = ImageLen-48;
-
- ImageCRC = ((unsigned int)ptr[34])<<24 | ((unsigned int)ptr[35])<<16 | ((unsigned int)ptr[36])<<8 | ((unsigned int)ptr[37]);
-
- DEBUG_INFO("CRC32 in image: 0x%08X\n",ImageCRC);
- DEBUG_INFO("CRC32 by calculation: 0x%08X\n",crc32(ptr,ImageLen));
- if(crc32(ptr,ImageLen) == ImageCRC)
- {
- if(uart_update_start(uartfd, TargetAddr, crc32(ptr+48,DataLength))==PASS)
- {
- int CNT_Fail = 0;
- int CNT_Trans = 0;
- do
- {
- if(uart_update_transfer(uartfd, TargetAddr, CNT_Trans*1024, ptr+48+(CNT_Trans*1024), 1024)==PASS)
- {
- CNT_Fail = 0;
- CNT_Trans++;
- DEBUG_INFO("Upgrade progress:%.2f%%\n", ((float)(CNT_Trans*1024))/(DataLength)*100);
- }
- else
- {
- DEBUG_WARN("Data transfer fail, retry %d \n", ++CNT_Fail);
- sleep(1);
- }
- }while(DataLength-(CNT_Trans*1024)>0 && CNT_Fail<10);
- if(CNT_Fail>=10)
- {
- uart_update_abord(uartfd, TargetAddr);
- DEBUG_ERROR("UART upgrade retry > limits, aboard upgrade.\n");
- printf("UART upgrade retry > limits, aboard upgrade.\n");
- }
- else if(uart_update_finish(uartfd, TargetAddr)==PASS)
- {
- result = PASS;
- printf("UART upgrade success.\n");
- }
- }
- else
- DEBUG_ERROR("UART upgrade request failed.\n");
- }
- else
- DEBUG_ERROR("Firmware image CRC32 mismatch.\n");
- }
- else
- DEBUG_ERROR("Firmware image length mismatch.\n");
- }
- else
- DEBUG_ERROR("Firmware image type mismatch.\n");
- }
- free(ptr);
- sprintf(cmdBuf, "rm -f %s", SourcePath);
- system(cmdBuf);
- return result;
- }
- unsigned long getTimeoutValue(struct timeval _sour_time)
- {
- struct timeval _end_time;
- gettimeofday(&_end_time, NULL);
- return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
- }
- int CAN_Download_REQ(int canfd,unsigned int Slave_Addr, unsigned int imageSize)
- {
- struct can_frame frame;
- frame.can_id = (0x00000E00 + Slave_Addr) | 0x80000000;
- frame.can_dlc = 0x07;
- frame.data[0] = 0x04;
- frame.data[1] = (imageSize>>0)&0xff;
- frame.data[2] = (imageSize>>8)&0xff;
- frame.data[3] = (imageSize>>16)&0xff;
- frame.data[4] = (imageSize>>24)&0xff;
- frame.data[5] = 0x10;
- frame.data[6] = 0x18;
- DEBUG_INFO( "File size = %x, %d \n", imageSize, imageSize);
- write(canfd, &frame, sizeof(struct can_frame));
- if (canfd > 0)
- {
- struct timeval timer;
- gettimeofday(&timer, NULL);
- while (getTimeoutValue(timer) < 5000000)
- {
- struct can_frame frame;
- int len;
- len = read(canfd, &frame, sizeof(struct can_frame));
- if (len >= 0)
- {
- DEBUG_INFO( "*****************************CAN_Download_REQ Get***************************** \n");
- DEBUG_INFO("data = %x \n", frame.can_id & CAN_EFF_MASK);
- if (((int)(frame.can_id & CAN_EFF_MASK & 0xFFFFFF00) == 0x08000E00) && frame.data[0] == 1)
- {
- DEBUG_INFO("PASS \n");
- return PASS;
- }
- }
- }
- }
- return FAIL;
- }
- int CAN_Start_BLK_Trans(int canfd,unsigned int Slave_Addr,unsigned int Block_No,unsigned int Block_Checksum)
- {
- struct can_frame frame;
- frame.can_id = (0x00000F00 + Slave_Addr) | 0x80000000;
- frame.can_dlc = 0x02;
- frame.data[0] = Block_No;
- frame.data[1] = Block_Checksum;
- DEBUG_INFO("Block_No = %x, Block_Checksum = %x \n", Block_No, Block_Checksum);
- write(canfd, &frame, sizeof(struct can_frame));
- usleep(100000);
- if (canfd > 0)
- {
- struct timeval timer;
- gettimeofday(&timer, NULL);
- while (getTimeoutValue(timer) < 1000000)
- {
- struct can_frame frame;
- int len;
- len = read(canfd, &frame, sizeof(struct can_frame));
- if(len >= 0)
- {
- DEBUG_INFO("*****************************CAN_Start_BLK_Trans Get***************************** \n");
- DEBUG_INFO("data = %x \n", frame.can_id & CAN_EFF_MASK);
- if(((int)(frame.can_id & CAN_EFF_MASK & 0xFFFFFF00) == 0x08000F00) &&frame.data[0] == 1)
- {
- DEBUG_INFO("CAN_Start_BLK_Trans PASS \n");
- return PASS;
- }
- }
- }
- }
- return FAIL;
- }
- void CAN_Data_Trans(int canfd,unsigned int Slave_Addr,long Data_num,unsigned char Data[])
- {
- struct can_frame frame;
- frame.can_id = (0x00001000 + Slave_Addr) | 0x80000000;
- frame.can_dlc = 0x08;
- frame.data[0] = Data[Data_num+0];
- frame.data[1] = Data[Data_num+1];
- frame.data[2] = Data[Data_num+2];
- frame.data[3] = Data[Data_num+3];
- frame.data[4] = Data[Data_num+4];
- frame.data[5] = Data[Data_num+5];
- frame.data[6] = Data[Data_num+6];
- frame.data[7] = Data[Data_num+7];
- write(canfd, &frame, sizeof(struct can_frame));
- usleep(2000);
- }
- int CAN_Download_FIN(int canfd,unsigned int Slave_Addr)
- {
- struct can_frame frame;
- frame.can_id = (0x00001100 + Slave_Addr) | 0x80000000;
- frame.can_dlc = 0x00;
- write(canfd, &frame, sizeof(struct can_frame));
- usleep(10000);
- if (canfd > 0)
- {
- struct timeval timer;
- gettimeofday(&timer, NULL);
- while (getTimeoutValue(timer) < 1000000)
- {
- struct can_frame frame;
- int len;
- len = read(canfd, &frame, sizeof(struct can_frame));
- if(len >= 0)
- {
- DEBUG_INFO("data = %x \n", frame.can_id & CAN_EFF_MASK);
- if(((int)(frame.can_id & CAN_EFF_MASK & 0xFFFFFF00) == 0x08001100) && frame.data[0] == 1)
- {
- DEBUG_INFO("CAN_Download_FIN PASS \n");
- return PASS;
- }
- }
- }
- }
- return FAIL;
- }
- int Checksum_Cal(unsigned int StartAdress,unsigned int length, unsigned char Data[])
- {
- unsigned char checksum = 0x00;
- for(unsigned int i = 0; i < length; i++)
- {
-
- checksum ^= Data[StartAdress + i];
-
- }
- return checksum;
- }
- int Upgrade_CAN(int canfd,unsigned int Type,unsigned char TargetAddr,char *SourcePath,char *ModelName)
- {
- int result = FAIL;
- char cmdBuf[128];
- long int MaxLen=48*1024*1024, ImageLen=0;
- unsigned int ImageCRC=0, DataLength=0;
- int fd;
- fd = open(SourcePath, O_RDONLY);
- if(fd < 0)
- {
- DEBUG_ERROR("UpdateRootfs NG - can not open rootfs\n");
- return result;
- }
- unsigned char *ptr = malloc(MaxLen);
- memset(ptr,0xFF,MaxLen);
-
- ImageLen = read(fd,ptr,MaxLen);
- close(fd);
-
- int i;
- int isModelNameOK = PASS;
- for(i=0;i<16;i++) {
- if(ModelName[i] != ptr[i]){
- isModelNameOK = FAIL;
- }
- }
- if(isModelNameOK == FAIL)
- {
- DEBUG_ERROR("Model name mismatch...\n");
- return result;
- }
- else
- {
-
- if(Type == (((unsigned int)ptr[16])<<24 | ((unsigned int)ptr[17])<<16 | ((unsigned int)ptr[18])<<8 | ((unsigned int)ptr[19])))
- {
- if((ImageLen-48) == (((unsigned int)ptr[20])<<24 | ((unsigned int)ptr[21])<<16 | ((unsigned int)ptr[22])<<8 | ((unsigned int)ptr[23])))
- {
- DataLength = ImageLen-48;
-
- ImageCRC = ((unsigned int)ptr[34])<<24 | ((unsigned int)ptr[35])<<16 | ((unsigned int)ptr[36])<<8 | ((unsigned int)ptr[37]);
-
- DEBUG_INFO("CRC32 in image: 0x%08X\n",ImageCRC);
- DEBUG_INFO("CRC32 by calculation: 0x%08X\n",crc32(ptr,ImageLen));
- if(crc32(ptr,ImageLen) == ImageCRC)
- {
- unsigned int Checksum[16];
- for(int i=0;i<16;i++)
- {
- Checksum[i] = Checksum_Cal(i * 24576, 24576, ptr + 48);
- }
- if(CAN_Download_REQ(canfd, TargetAddr, DataLength) == PASS)
- {
- for(int block = 1; block <= 16; block++)
- {
- if(CAN_Start_BLK_Trans(canfd, TargetAddr, block, Checksum[block - 1]) == PASS)
- {
- for(int times = 0; times < 3072; times++)
- {
- CAN_Data_Trans(canfd, TargetAddr, ((block - 1) * 24576 + times * 8), ptr + 48);
- }
- DEBUG_INFO(" \n\n");
- }
- else
- {
- free(ptr);
- return result;
- }
- }
- if (CAN_Download_FIN(canfd, TargetAddr) == PASS)
- result = PASS;
- }
- else
- DEBUG_ERROR("CANBUS upgrade request failed.\n");
- }
- else
- DEBUG_ERROR("Firmware image CRC32 mismatch.\n");
- }
- else
- DEBUG_ERROR("Firmware image length mismatch.\n");
- }
- else
- DEBUG_ERROR("Firmware image type mismatch.\n");
- }
- free(ptr);
- sprintf(cmdBuf, "rm -f %s", SourcePath);
- system(cmdBuf);
- return result;
- }
- int Check_CCS_image_header(unsigned int Type,char *SourcePath,char *ModelName)
- {
- long int MaxLen=48*1024*1024, ImageLen=0;
- unsigned int ImageCRC=0;
- int fd;
-
- fd = open(SourcePath, O_RDONLY);
- if(fd < 0)
- {
- DEBUG_ERROR("Update CCS NG - can not open upgrade image\n");
- return FAIL;
- }
- switch(Type)
- {
- case CCS_BOARD_BOOTLOADER:
- MaxLen = 1*1024*1024;
- DEBUG_INFO("Prepare to upgrade CCS BOOTLOADER\n");
- break;
- case CCS_BOARD_KERNEL_CONFIGURATION:
- MaxLen = 0.5*1024*1024;
- DEBUG_INFO("Prepare to upgrade CCS KERNEL CONFIGURATION\n");
- break;
- case CCS_BOARD_KERNEL_IMAGE:
- MaxLen = 10*1024*1024;
- DEBUG_INFO("Prepare to upgrade CCS KERNEL\n");
- break;
- case CCS_BOARD_FILE_SYSTEM:
- MaxLen = 48*1024*1024;
- DEBUG_INFO("Prepare to upgrade CCS FILE SYSTEM\n");
- break;
- default:
- DEBUG_ERROR("Wrong image type for CCS upgrade\n");
- return FAIL;
- break;
- }
- unsigned char *ptr = malloc(MaxLen);
- memset(ptr,0xFF,MaxLen);
-
- ImageLen = read(fd,ptr,MaxLen);
- close(fd);
-
- int i;
- for(i=0;i<16;i++)
- {
- if(ModelName[i] != ptr[i])
- {
- DEBUG_ERROR("Model name mismatch.\n");
- return FAIL;
- }
- }
-
- if(Type == (((unsigned int)ptr[16])<<24 | ((unsigned int)ptr[17])<<16 | ((unsigned int)ptr[18])<<8 | ((unsigned int)ptr[19])))
- {
- if((ImageLen-48) == (((unsigned int)ptr[20])<<24 | ((unsigned int)ptr[21])<<16 | ((unsigned int)ptr[22])<<8 | ((unsigned int)ptr[23])))
- {
-
- ImageCRC = ((unsigned int)ptr[34])<<24 | ((unsigned int)ptr[35])<<16 | ((unsigned int)ptr[36])<<8 | ((unsigned int)ptr[37]);
-
- DEBUG_INFO("CRC32 in CCS image: 0x%08X\n",ImageCRC);
- DEBUG_INFO("CRC32 by calculation: 0x%08X\n",crc32(ptr,ImageLen));
- if(crc32(ptr,ImageLen) == ImageCRC)
- {
- return PASS;
- }
- else
- {
- DEBUG_ERROR("Firmware image CRC32 mismatch.\n");
- return FAIL;
- }
- }
- else
- {
- DEBUG_ERROR("Firmware image length mismatch.\n");
- return FAIL;
- }
- }
- else
- {
- DEBUG_ERROR("Firmware image type mismatch.\n");
- return FAIL;
- }
- }
- int Put_CCS_image(char *SourcePath, unsigned char TargetAddr)
- {
- unsigned char ftpcmdbuf[256];
- unsigned char CCSIpAddress[16];
-
-
- sprintf((char*)CCSIpAddress,"192.168.0.2%d", TargetAddr);
-
-
-
-
- sprintf((char*)ftpcmdbuf,"ftpput -u root -p y42j/4cj84 %s /root/ccs.image %s",
- CCSIpAddress, SourcePath);
- if(system((char*)ftpcmdbuf) != 0)
- {
- DEBUG_ERROR("Update CCS NG - FTP put CCS upgrade image to CCS board %d fail\n", TargetAddr);
- return FAIL;
- }
- else
- {
- DEBUG_INFO("FTP put %s to CCS board %d finish\n", SourcePath, TargetAddr);
- return PASS;
- }
- }
- int Send_CCS_download_finish(int canfd,unsigned int Slave_Addr)
- {
- if (canfd > 0)
- {
- struct can_frame frame;
- frame.can_id = (CANBUS_MESSAGE_ID_UPGRADE_FINISH + Slave_Addr) | 0x80000000;
- frame.can_dlc = 0x00;
- write(canfd, &frame, sizeof(struct can_frame));
- usleep(10000);
- struct timeval timer;
- gettimeofday(&timer, NULL);
- unsigned long ack_timeout = 30 * 60 * 1000 * 1000;
- while (getTimeoutValue(timer) < ack_timeout)
- {
- struct can_frame frame;
- int len;
- len = read(canfd, &frame, sizeof(struct can_frame));
- if(len >= 0)
- {
- if(((int)(frame.can_id & CAN_EFF_MASK) == (CANBUS_MESSAGE_ID_UPGRADE_FINISH | Slave_Addr | 0x08000000)) && frame.data[0] == 1)
- {
- return PASS;
- }
- }
- }
- DEBUG_ERROR("Wait for download finish ack from CCS %d timeout\n", Slave_Addr);
- return FAIL;
- }
- else
- {
- DEBUG_ERROR("Send CCS download finish command fail, CAN fd is null\n");
- return FAIL;
- }
- }
- int Upgrade_CCS(int canfd,unsigned int Type,unsigned char TargetAddr,char *SourcePath,char *ModelName)
- {
- char cmdBuf[128];
- if(Check_CCS_image_header(Type, SourcePath, ModelName) == FAIL)
- {
- return FAIL;
- }
- if(Put_CCS_image(SourcePath, TargetAddr) == FAIL)
- {
- return FAIL;
- }
- if(Send_CCS_download_finish(canfd, TargetAddr) == FAIL)
- {
- return FAIL;
- }
- DEBUG_INFO("Upgrade CCS board %d complete.\n", TargetAddr);
- sprintf(cmdBuf, "rm -f %s", SourcePath);
- system(cmdBuf);
- return PASS;
- }
|