Module_UpdateFW.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  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. unsigned long long getAvailableMemory()
  144. {
  145. long pages = sysconf(_SC_AVPHYS_PAGES);
  146. long page_size = sysconf(_SC_PAGE_SIZE);
  147. return pages * page_size;
  148. }
  149. static int CheckUpdateProcess(void)
  150. {
  151. //bool isPass = true;
  152. uint8_t retSucc = 0;
  153. uint8_t retFail = 0;
  154. uint8_t index = 0;
  155. uint8_t target = 0;
  156. char Buf[256];
  157. char *new_str = NULL;
  158. uint8_t *ptr = NULL;
  159. int fd = 0;
  160. int CanFd = 0;
  161. int uartFd = 0;
  162. unsigned int Type = 0;
  163. long int MaxLen = 48 * 1024 * 1024, ImageLen = 0;
  164. DIR *d;
  165. struct dirent *dir;
  166. DcCommonInfo *ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  167. struct ChargingInfoData *pDcChargingInfo = NULL;
  168. if (getAvailableMemory() < (200 * 1024 * 1024))
  169. {
  170. log_info("Available memory (%.2f Bytes) less than 200 MBytes, free cache first.\n", getAvailableMemory() / (1024 * 1024.0));
  171. system("echo 3 > /proc/sys/vm/drop_caches");
  172. }
  173. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  174. d = opendir("/mnt/");
  175. if (d) {
  176. while ((dir = readdir(d)) != NULL) {
  177. if (strcmp(dir->d_name, ".") == 0 || strcmp(dir->d_name, "..") == 0) {
  178. continue;
  179. }
  180. new_str = calloc(strlen("/mnt/") + strlen(dir->d_name) + 1, sizeof(char));
  181. //new_str[0] = '\0';
  182. strcat(new_str, "/mnt/");
  183. strcat(new_str, dir->d_name);
  184. log_info("%s%s", "/mnt/", dir->d_name);
  185. fd = open(new_str, O_RDONLY);
  186. if (fd < 0) {
  187. return FAIL;
  188. }
  189. ptr = calloc(MaxLen, sizeof(char)); //-48 is take out the header
  190. //memset(ptr, 0xFF, MaxLen); //-48 is take out the header
  191. //get the image length
  192. ImageLen = read(fd, ptr, MaxLen);
  193. for (uint8_t i = 0; i < 16; i++) {
  194. if (pSysConfig->ModelName[i] != ptr[i]) {
  195. return FAIL;
  196. }
  197. }
  198. log_info("model name check pass. ");
  199. if (ImageLen > 20) {
  200. Type = (((unsigned int)ptr[16]) << 24 |
  201. ((unsigned int)ptr[17]) << 16 |
  202. ((unsigned int)ptr[18]) << 8 |
  203. ((unsigned int)ptr[19]));
  204. log_info("Typed...%x ", Type);
  205. free(ptr);
  206. switch (Type) {
  207. case 0x10000001:
  208. case 0x10000002:
  209. case 0x10000003:
  210. case 0x10000004:
  211. case 0x10000005:
  212. if (Upgrade_Flash(Type, new_str, (char *)pSysConfig->ModelName) == PASS) {
  213. //return PASS;
  214. retSucc++;
  215. } else {
  216. log_info("Upgrade %x Failed", Type);
  217. //return FAIL;
  218. retFail++;
  219. }
  220. break;
  221. case 0x10000007:
  222. case 0x10000008:
  223. case 0x10000009:
  224. case 0x1000000A:
  225. CanFd = InitCanBus();
  226. if (CanFd > 0) {
  227. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  228. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  229. if (pDcChargingInfo->Type == _Type_CCS_2) {
  230. uint8_t targetID = pDcChargingInfo->Evboard_id;
  231. if (pSysConfig->TotalConnectorCount == 1 &&
  232. ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  233. //targetID += 1;
  234. }
  235. system("echo 3 > /proc/sys/vm/drop_caches");
  236. sleep(2);
  237. log_info("Upgrade CCS Processing..target id = %d ", targetID);
  238. if (Upgrade_CCS(CanFd,
  239. Type,
  240. targetID,
  241. new_str,
  242. (char *)pSysConfig->ModelName) == FAIL) {
  243. log_info("Upgrade CCS Failed ");
  244. retFail++;
  245. } else {
  246. retSucc++;
  247. }
  248. }
  249. }
  250. close(CanFd);
  251. }
  252. memset(Buf, 0, sizeof(Buf));
  253. sprintf(Buf, "rm -rvf /mnt/%s", new_str);
  254. system(Buf);
  255. //isPass = true;
  256. #if 0
  257. CanFd = InitCanBus();
  258. if (CanFd > 0) {
  259. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  260. //if (!isPass) {
  261. // break;
  262. //}
  263. if (chargingInfo[index]->Type == _Type_CCS_2) {
  264. if (Upgrade_CCS(CanFd, Type, chargingInfo[index]->Evboard_id, new_str, (char *)pSysConfig->ModelName) == FAIL) {
  265. //isPass = false;
  266. log_info("Upgrade %x Failed", Type);
  267. retFail++;
  268. }
  269. }
  270. }
  271. } else {
  272. log_error("Upgrade CCS open CAN FD fail.");
  273. //isPass = false;
  274. return FAIL;
  275. }
  276. if (retFail != 0) {
  277. break;
  278. } else {
  279. retSucc++;
  280. }
  281. //return isPass;
  282. #endif //0
  283. break;
  284. case 0x10000006:
  285. case 0x1000000D:
  286. case 0x1000000E:
  287. case 0x20000002:
  288. case 0x10000014:
  289. // CSU_PRIMARY_CONTROLLER : 0x10000006
  290. target = 0x00;
  291. if (Type == 0x10000006) {
  292. target = UPGRADE_PRI;
  293. } else if (Type == 0x1000000D) {
  294. target = UPGRADE_RB;
  295. } else if (Type == 0x1000000E) {
  296. target = UPGRADE_FAN;
  297. } else if (Type == 0x20000002) {
  298. target = UPGRADE_AC;
  299. } else if (Type == 0x10000014) {
  300. target = UPGRADE_LED;
  301. }
  302. uartFd = InitComPort(target);
  303. if (Upgrade_UART(uartFd, Type, target, new_str, (char *)pSysConfig->ModelName) == PASS) {
  304. //return PASS;
  305. retSucc++;
  306. } else {
  307. log_info("Upgrade %x Failed", Type);
  308. //return FAIL;
  309. return FAIL;
  310. }
  311. if (uartFd > 0) {
  312. close(uartFd);
  313. }
  314. break;
  315. case 0x1000000B:
  316. case 0x1000000C:
  317. // CHAdeMO_BOARD : 0x1000000B, GBT : 0x1000000C
  318. //bool isPass = true;
  319. CanFd = InitCanBus();
  320. if (CanFd > 0) {
  321. for (index = 0; index < pSysConfig->TotalConnectorCount; index++) {
  322. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  323. //if (!isPass) {
  324. // break;
  325. //}
  326. if ((Type == 0x1000000B && pDcChargingInfo->Type == _Type_Chademo) ||
  327. (Type == 0x1000000C && pDcChargingInfo->Type == _Type_GB)) {
  328. if (Upgrade_CAN(CanFd, Type, pDcChargingInfo->Evboard_id, new_str, (char *)pSysConfig->ModelName) == PASS) {
  329. //isPass = PASS;
  330. retSucc++;
  331. } else {
  332. log_info("Upgrade %x Failed", Type);
  333. //isPass = FAIL;
  334. retFail++;
  335. }
  336. }
  337. }
  338. } else {
  339. log_info("Upgrad FD fail. ");
  340. //isPass = false;
  341. return FAIL;
  342. }
  343. //return isPass;
  344. break;
  345. }
  346. } else {
  347. free(ptr);
  348. }
  349. free(new_str);
  350. }
  351. }
  352. free(dir);
  353. closedir(d);
  354. if (retFail != 0) {
  355. return FAIL;
  356. }
  357. return PASS;
  358. }
  359. void CheckFwUpdateFunction(void)
  360. {
  361. //log_info("pSysInfo->FirmwareUpdate = %d ", pSysInfo->FirmwareUpdate);
  362. if (pSysInfo->FirmwareUpdate == YES) {
  363. log_info("ftp : update start. ");
  364. TryCloseWatchdog();
  365. pSysInfo->SystemPage = _LCM_MAINTAIN;
  366. for (uint8_t gun_index = 0; gun_index < pSysConfig->TotalConnectorCount; gun_index++) {
  367. setChargerMode(gun_index, MODE_UPDATE);
  368. }
  369. sleep(1);
  370. uint8_t updateResult = CheckUpdateProcess();
  371. if (updateResult == PASS) {
  372. log_info("ftp : update complete. ");
  373. } else if (updateResult == MODELNAME_FAIL) {
  374. log_info("ftp : model name is none match. ");
  375. KillAllTask();
  376. pSysInfo->FirmwareUpdate = NO;
  377. sleep(5);
  378. system("/usr/bin/run_evse_restart.sh");
  379. return;
  380. } else {
  381. log_info("ftp : update fail. ");
  382. }
  383. pSysInfo->FirmwareUpdate = NO;
  384. sleep(5);
  385. system("reboot -f");
  386. } else if (ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq == YES) {
  387. ShmOCPP16Data->MsMsg.bits.UpdateFirmwareReq = NO;
  388. if (strcmp((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Downloaded") == EQUAL) {
  389. log_info("Backend : update start. ");
  390. TryCloseWatchdog();
  391. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "");
  392. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installing");
  393. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = YES;
  394. KillTask();
  395. for (uint8_t _index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  396. setChargerMode(_index, MODE_UPDATE);
  397. }
  398. for (uint8_t _index = 0; _index < pSysConfig->AcConnectorCount; _index++) {
  399. pAcChargingInfo = (struct ChargingInfoData *)GetAcChargingInfoData(_index);
  400. pAcChargingInfo->SystemStatus = MODE_UPDATE;
  401. }
  402. sleep(1);
  403. uint8_t updateResult = CheckUpdateProcess();
  404. if (updateResult == PASS) {
  405. log_info("Backend : update complete. ");
  406. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installed");
  407. } else if (updateResult == MODELNAME_FAIL) {
  408. log_info("Backend : model name is none match. ");
  409. KillAllTask();
  410. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "InstallationFailed");
  411. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = YES;
  412. sleep(5);
  413. system("/usr/bin/run_evse_restart.sh");
  414. return;
  415. } else {
  416. log_info("Backend : update fail. ");
  417. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "InstallationFailed");
  418. }
  419. strcpy((char *)ShmOCPP16Data->FirmwareStatusNotification.Status, "Installed");
  420. ShmOCPP16Data->SpMsg.bits.FirmwareStatusNotificationReq = YES;
  421. sleep(5);
  422. system("reboot -f");
  423. }
  424. }
  425. }
  426. int main(int argc, char *argv[])
  427. {
  428. if (CreateAllCsuShareMemory() == FAIL) {
  429. log_error("create share memory error");
  430. return FAIL;
  431. }
  432. MappingGunChargingInfo("Upgrade Task");
  433. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  434. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  435. ShmOCPP16Data = (struct OCPP16Data *)GetShmOCPP16Data();
  436. while (1) {
  437. if (IsConnectorWholeIdle())
  438. CheckFwUpdateFunction();
  439. sleep(3);
  440. } //while
  441. return 0;
  442. }