Module_UpdateFW.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. #include <stdio.h> /*標準輸入輸出定義*/
  2. #include <stdlib.h> /*標準函數庫定義*/
  3. #include <string.h>
  4. #include <stdint.h>
  5. #include <sys/types.h>
  6. #include <dirent.h>
  7. #include "../Config.h"
  8. #include "../Log/log.h"
  9. #include "../Define/define.h"
  10. #include "../ShareMemory/shmMem.h"
  11. #include "../CSU/main.h"
  12. struct SysConfigData *pSysConfig = NULL;
  13. struct SysInfoData *pSysInfo = NULL;
  14. struct OCPP16Data *ShmOCPP16Data = NULL;
  15. struct ChargingInfoData *pAcChargingInfo = NULL;
  16. static struct ChargingInfoData *pDcChargingInfo = NULL;
  17. #define MODELNAME_FAIL (0)
  18. #define UPGRADE_FAN (0x02)
  19. #define UPGRADE_RB (0x09) //0x09 for DD360 dispenser
  20. #define UPGRADE_PRI (0x04)
  21. #define UPGRADE_AC (0x05)
  22. #define UPGRADE_LED (0x06)
  23. //------------------------------------------------------------------------------
  24. static char *_priPortName = "/dev/ttyS1";
  25. static char *_485PortName = "/dev/ttyS5";
  26. //------------------------------------------------------------------------------
  27. void KillAllTask(void)
  28. {
  29. pSysInfo->PageIndex = _LCM_MAINTAIN;
  30. system("killall Module_EventLogging");
  31. system("killall Module_PrimaryComm");
  32. system("killall Module_EvComm");
  33. system("killall Module_LcmControl");
  34. system("killall Module_InternalComm");
  35. system("killall Module_DoComm");
  36. return ;
  37. }
  38. void KillTask(void)
  39. {
  40. pSysInfo->PageIndex = _LCM_MAINTAIN;
  41. system("killall Module_EventLogging");
  42. system("killall Module_PrimaryComm");
  43. system("killall Module_EvComm");
  44. system("killall Module_LcmControl");
  45. system("killall Module_InternalComm");
  46. //system("killall Module_DoComm");
  47. return ;
  48. }
  49. void setChargerMode(uint8_t gunIndex, uint8_t mode)
  50. {
  51. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  52. pDcChargingInfo->SystemStatus = mode;
  53. log_info(" ====== System Status:%d ======",mode);
  54. }
  55. void TryCloseWatchdog()
  56. {
  57. system("echo V > /dev/watchdog");
  58. }
  59. static int InitComPort(uint8_t target)
  60. {
  61. int fd;
  62. struct termios tios;
  63. if (target == UPGRADE_PRI) {
  64. fd = open(_priPortName, O_RDWR);
  65. } else if (target == UPGRADE_FAN ||
  66. target == UPGRADE_RB ||
  67. target == UPGRADE_AC ||
  68. target == UPGRADE_LED
  69. ) {
  70. fd = open(_485PortName, O_RDWR);
  71. }
  72. if (fd <= 0) {
  73. log_error("open 407 Communication port NG ");
  74. return -1;
  75. }
  76. ioctl (fd, TCGETS, &tios);
  77. tios.c_cflag = B115200 | CS8 | CLOCAL | CREAD;
  78. tios.c_lflag = 0;
  79. tios.c_iflag = 0;
  80. tios.c_oflag = 0;
  81. tios.c_cc[VMIN] = 0;
  82. tios.c_cc[VTIME] = (uint8_t)1;
  83. tios.c_lflag = 0;
  84. tcflush(fd, TCIFLUSH);
  85. ioctl (fd, TCSETS, &tios);
  86. return fd;
  87. }
  88. bool IsConnectorWholeIdle()
  89. {
  90. bool result = true;
  91. for (uint8_t count = 0; count < pSysConfig->TotalConnectorCount; count++) {
  92. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(count);
  93. if (pDcChargingInfo->SystemStatus != S_IDLE &&
  94. pDcChargingInfo->SystemStatus != S_RESERVATION &&
  95. pDcChargingInfo->SystemStatus != S_MAINTAIN) {
  96. result = false;
  97. break;
  98. }
  99. }
  100. /*
  101. for (uint8_t count = 0; count < pSysConfig->AcConnectorCount; count++) {
  102. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(count);
  103. if (pAcChargingInfo->SystemStatus != S_IDLE &&
  104. pAcChargingInfo->IsErrorOccur == NO) {
  105. result = false;
  106. break;
  107. }
  108. }
  109. */
  110. return result;
  111. }
  112. static int InitCanBus(void)
  113. {
  114. int fd = -1;
  115. int nbytes;
  116. struct timeval tv;
  117. struct ifreq ifr0;
  118. struct sockaddr_can addr0;
  119. system("/sbin/ip link set can0 down");
  120. system("/sbin/ip link set can0 type can bitrate 500000 restart-ms 100");
  121. system("/sbin/ip link set can0 up");
  122. fd = socket(PF_CAN, SOCK_RAW, CAN_RAW);
  123. tv.tv_sec = 0;
  124. tv.tv_usec = 10000;
  125. if (setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv, sizeof(struct timeval)) < 0) {
  126. log_error("Set SO_RCVTIMEO NG");
  127. }
  128. nbytes = 40960;
  129. if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &nbytes, sizeof(int)) < 0) {
  130. log_error("Set SO_RCVBUF NG");
  131. }
  132. nbytes = 40960;
  133. if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &nbytes, sizeof(int)) < 0) {
  134. log_error("Set SO_SNDBUF NG");
  135. }
  136. strcpy(ifr0.ifr_name, "can0");
  137. ioctl(fd, SIOCGIFINDEX, &ifr0); /* ifr.ifr_ifindex gets filled with that device's index */
  138. addr0.can_family = AF_CAN;
  139. addr0.can_ifindex = ifr0.ifr_ifindex;
  140. bind(fd, (struct sockaddr *)&addr0, sizeof(addr0));
  141. return fd;
  142. }
  143. static int CheckUpdateProcess(void)
  144. {
  145. //bool isPass = true;
  146. uint8_t retSucc = 0;
  147. uint8_t retFail = 0;
  148. uint8_t index = 0;
  149. uint8_t target = 0;
  150. char Buf[256];
  151. char *new_str = NULL;
  152. uint8_t *ptr = NULL;
  153. int fd = 0;
  154. int CanFd = 0;
  155. int uartFd = 0;
  156. unsigned int Type = 0;
  157. long int MaxLen = 48 * 1024 * 1024, ImageLen = 0;
  158. DIR *d;
  159. struct dirent *dir;
  160. DcCommonInfo *ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  161. struct ChargingInfoData *pDcChargingInfo = NULL;
  162. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  163. d = opendir("/mnt/");
  164. if (d) {
  165. while ((dir = readdir(d)) != NULL) {
  166. if (strcmp(dir->d_name, ".") == 0 || strcmp(dir->d_name, "..") == 0) {
  167. continue;
  168. }
  169. new_str = calloc(strlen("/mnt/") + strlen(dir->d_name) + 1, sizeof(char));
  170. //new_str[0] = '\0';
  171. strcat(new_str, "/mnt/");
  172. strcat(new_str, dir->d_name);
  173. log_info("%s%s", "/mnt/", dir->d_name);
  174. fd = open(new_str, O_RDONLY);
  175. if (fd < 0) {
  176. return FAIL;
  177. }
  178. ptr = calloc(MaxLen, sizeof(char)); //-48 is take out the header
  179. //memset(ptr, 0xFF, MaxLen); //-48 is take out the header
  180. //get the image length
  181. ImageLen = read(fd, ptr, MaxLen);
  182. for (uint8_t i = 0; i < 16; i++) {
  183. if (pSysConfig->ModelName[i] != ptr[i]) {
  184. return FAIL;
  185. }
  186. }
  187. log_info("model name check pass. ");
  188. if (ImageLen > 20) {
  189. Type = (((unsigned int)ptr[16]) << 24 |
  190. ((unsigned int)ptr[17]) << 16 |
  191. ((unsigned int)ptr[18]) << 8 |
  192. ((unsigned int)ptr[19]));
  193. log_info("Typed...%x ", Type);
  194. switch (Type) {
  195. case 0x10000001:
  196. case 0x10000002:
  197. case 0x10000003:
  198. case 0x10000004:
  199. case 0x10000005:
  200. if (Upgrade_Flash(Type, new_str, (char *)pSysConfig->ModelName) == PASS) {
  201. //return PASS;
  202. retSucc++;
  203. } else {
  204. log_info("Upgrade %x Failed", Type);
  205. //return FAIL;
  206. retFail++;
  207. }
  208. break;
  209. case 0x10000007:
  210. case 0x10000008:
  211. case 0x10000009:
  212. case 0x1000000A:
  213. CanFd = InitCanBus();
  214. if (CanFd > 0) {
  215. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  216. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  217. if (pDcChargingInfo->Type == _Type_CCS_2) {
  218. uint8_t targetID = pDcChargingInfo->Evboard_id;
  219. if (pSysConfig->TotalConnectorCount == 1 &&
  220. ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  221. //targetID += 1;
  222. }
  223. system("echo 3 > /proc/sys/vm/drop_caches");
  224. sleep(2);
  225. log_info("Upgrade CCS Processing..target id = %d ", targetID);
  226. if (Upgrade_CCS(CanFd,
  227. Type,
  228. targetID,
  229. new_str,
  230. (char *)pSysConfig->ModelName) == FAIL) {
  231. log_info("Upgrade CCS Failed ");
  232. retFail++;
  233. } else {
  234. retSucc++;
  235. }
  236. }
  237. }
  238. close(CanFd);
  239. }
  240. memset(Buf, 0, sizeof(Buf));
  241. sprintf(Buf, "rm -rvf /mnt/%s", new_str);
  242. system(Buf);
  243. //isPass = true;
  244. #if 0
  245. CanFd = InitCanBus();
  246. if (CanFd > 0) {
  247. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  248. //if (!isPass) {
  249. // break;
  250. //}
  251. if (chargingInfo[index]->Type == _Type_CCS_2) {
  252. if (Upgrade_CCS(CanFd, Type, chargingInfo[index]->Evboard_id, new_str, (char *)pSysConfig->ModelName) == FAIL) {
  253. //isPass = false;
  254. log_info("Upgrade %x Failed", Type);
  255. retFail++;
  256. }
  257. }
  258. }
  259. } else {
  260. log_error("Upgrade CCS open CAN FD fail.");
  261. //isPass = false;
  262. return FAIL;
  263. }
  264. if (retFail != 0) {
  265. break;
  266. } else {
  267. retSucc++;
  268. }
  269. //return isPass;
  270. #endif //0
  271. break;
  272. case 0x10000006:
  273. case 0x1000000D:
  274. case 0x1000000E:
  275. case 0x20000002:
  276. case 0x10000014:
  277. // CSU_PRIMARY_CONTROLLER : 0x10000006
  278. target = 0x00;
  279. if (Type == 0x10000006) {
  280. target = UPGRADE_PRI;
  281. } else if (Type == 0x1000000D) {
  282. target = UPGRADE_RB;
  283. } else if (Type == 0x1000000E) {
  284. target = UPGRADE_FAN;
  285. } else if (Type == 0x20000002) {
  286. target = UPGRADE_AC;
  287. } else if (Type == 0x10000014) {
  288. target = UPGRADE_LED;
  289. }
  290. uartFd = InitComPort(target);
  291. if (Upgrade_UART(uartFd, Type, target, new_str, (char *)pSysConfig->ModelName) == PASS) {
  292. //return PASS;
  293. retSucc++;
  294. } else {
  295. log_info("Upgrade %x Failed", Type);
  296. //return FAIL;
  297. return FAIL;
  298. }
  299. if (uartFd > 0) {
  300. close(uartFd);
  301. }
  302. break;
  303. case 0x1000000B:
  304. case 0x1000000C:
  305. // CHAdeMO_BOARD : 0x1000000B, GBT : 0x1000000C
  306. //bool isPass = true;
  307. CanFd = InitCanBus();
  308. if (CanFd > 0) {
  309. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  310. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  311. //if (!isPass) {
  312. // break;
  313. //}
  314. if ((Type == 0x1000000B && pDcChargingInfo->Type == _Type_Chademo) ||
  315. (Type == 0x1000000C && pDcChargingInfo->Type == _Type_GB)) {
  316. if (Upgrade_CAN(CanFd, Type, pDcChargingInfo->Evboard_id, new_str, (char *)pSysConfig->ModelName) == PASS) {
  317. //isPass = PASS;
  318. retSucc++;
  319. } else {
  320. log_info("Upgrade %x Failed", Type);
  321. //isPass = FAIL;
  322. retFail++;
  323. }
  324. }
  325. }
  326. } else {
  327. log_info("Upgrad FD fail. ");
  328. //isPass = false;
  329. return FAIL;
  330. }
  331. //return isPass;
  332. break;
  333. }
  334. }
  335. free(new_str);
  336. free(ptr);
  337. }
  338. }
  339. free(dir);
  340. closedir(d);
  341. if (retFail != 0) {
  342. return FAIL;
  343. }
  344. return PASS;
  345. }
  346. void CheckFwUpdateFunction(void)
  347. {
  348. //log_info("pSysInfo->FirmwareUpdate = %d ", pSysInfo->FirmwareUpdate);
  349. if (pSysInfo->FirmwareUpdate == YES) {
  350. log_info("ftp : update start. ");
  351. TryCloseWatchdog();
  352. pSysInfo->SystemPage = _LCM_MAINTAIN;
  353. for (uint8_t gun_index = 0; gun_index < pSysConfig->TotalConnectorCount; gun_index++) {
  354. setChargerMode(gun_index, MODE_UPDATE);
  355. }
  356. sleep(1);
  357. uint8_t updateResult = CheckUpdateProcess();
  358. if (updateResult == PASS) {
  359. log_info("ftp : update complete. ");
  360. } else if (updateResult == MODELNAME_FAIL) {
  361. log_info("ftp : model name is none match. ");
  362. KillAllTask();
  363. pSysInfo->FirmwareUpdate = NO;
  364. sleep(5);
  365. system("/usr/bin/run_evse_restart.sh");
  366. return;
  367. } else {
  368. log_info("ftp : update fail. ");
  369. }
  370. pSysInfo->FirmwareUpdate = NO;
  371. sleep(5);
  372. system("reboot -f");
  373. } else if (ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq == YES) {
  374. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = NO;
  375. if (strcmp((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Downloaded") == EQUAL) {
  376. log_info("Backend : update start. ");
  377. TryCloseWatchdog();
  378. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "");
  379. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installing");
  380. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = YES;
  381. KillTask();
  382. for (uint8_t _index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  383. setChargerMode(_index, MODE_UPDATE);
  384. }
  385. for (uint8_t _index = 0; _index < pSysConfig->AcConnectorCount; _index++) {
  386. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(_index);
  387. pAcChargingInfo->SystemStatus = MODE_UPDATE;
  388. }
  389. sleep(1);
  390. uint8_t updateResult = CheckUpdateProcess();
  391. if (updateResult == PASS) {
  392. log_info("Backend : update complete. ");
  393. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installed");
  394. } else if (updateResult == MODELNAME_FAIL) {
  395. log_info("Backend : model name is none match. ");
  396. KillAllTask();
  397. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "InstallationFailed");
  398. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = YES;
  399. sleep(5);
  400. system("/usr/bin/run_evse_restart.sh");
  401. return;
  402. } else {
  403. log_info("Backend : update fail. ");
  404. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "InstallationFailed");
  405. }
  406. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installed");
  407. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = YES;
  408. sleep(5);
  409. system("reboot -f");
  410. }
  411. }
  412. }
  413. int main(int argc, char *argv[])
  414. {
  415. if (CreateAllCsuShareMemory() == FAIL) {
  416. log_error("create share memory error");
  417. return FAIL;
  418. }
  419. MappingGunChargingInfo("Upgrade Task");
  420. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  421. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  422. ShmOCPP16Data = (struct OCPP16Data *)GetShmOCPP16Data();
  423. while (1) {
  424. if (IsConnectorWholeIdle())
  425. CheckFwUpdateFunction();
  426. sleep(3);
  427. } //while
  428. return 0;
  429. }