UpgradeFW.c 14 KB

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