iap.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. // #include "iap.h"
  2. // #include "bootloader.h"
  3. // #include "can.h"
  4. // #include "dwt.h"
  5. // #include "global.h"
  6. // #include "stm32f4xx_flash.h"
  7. // #include <string.h>
  8. // static u8 iap_index = 0;
  9. // // static u16 iap_buf[IAP_BUF_SIZE] = {0};
  10. // void iap_connect_clear(void){
  11. // iap_}
  12. // uint16_t STMFLASH_GetFlashSector(u32 addr)
  13. // {
  14. // if (addr < ADDR_FLASH_SECTOR_1)
  15. // return FLASH_Sector_0;
  16. // else if (addr < ADDR_FLASH_SECTOR_2)
  17. // return FLASH_Sector_1;
  18. // else if (addr < ADDR_FLASH_SECTOR_3)
  19. // return FLASH_Sector_2;
  20. // else if (addr < ADDR_FLASH_SECTOR_4)
  21. // return FLASH_Sector_3;
  22. // else if (addr < ADDR_FLASH_SECTOR_5)
  23. // return FLASH_Sector_4;
  24. // else if (addr < ADDR_FLASH_SECTOR_6)
  25. // return FLASH_Sector_5;
  26. // else if (addr < ADDR_FLASH_SECTOR_7)
  27. // return FLASH_Sector_6;
  28. // else if (addr < ADDR_FLASH_SECTOR_8)
  29. // return FLASH_Sector_7;
  30. // else if (addr < ADDR_FLASH_SECTOR_9)
  31. // return FLASH_Sector_8;
  32. // else if (addr < ADDR_FLASH_SECTOR_10)
  33. // return FLASH_Sector_9;
  34. // else if (addr < ADDR_FLASH_SECTOR_11)
  35. // return FLASH_Sector_10;
  36. // return FLASH_Sector_11;
  37. // }
  38. // u8 flash_read_byte(u32 faddr)
  39. // {
  40. // return *(vu8 *)faddr;
  41. // }
  42. // u16 STMFLASH_ReadHalfWord(u32 faddr)
  43. // {
  44. // return *(vu16 *)faddr;
  45. // }
  46. // u32 flash_read_page(u32 faddr)
  47. // {
  48. // return *(vu32 *)faddr;
  49. // }
  50. // void copy_to_runaddr(u32 end_addr)
  51. // {
  52. // FLASH_Status status = FLASH_COMPLETE;
  53. // u32 write_addr1 = IAP_RUN_START_SECTOR, read_addr = IAP_DOWN_BEGIN_ADDR;
  54. // // u8 erase_sector = 0, index = 0;
  55. // u32 temp_value = 0;
  56. // // erase_sector = STMFLASH_GetFlashSector(IAP_RUN_START_SECTOR);
  57. // FLASH_Unlock(); // 解锁
  58. // FLASH_DataCacheCmd(DISABLE); // FLASH擦除期间,必须禁止数据缓存
  59. // FLASH_ClearFlag(FLASH_FLAG_EOP | FLASH_FLAG_OPERR | FLASH_FLAG_WRPERR | FLASH_FLAG_PGAERR | FLASH_FLAG_PGPERR | FLASH_FLAG_PGSERR);
  60. // status = FLASH_EraseSector(FLASH_Sector_4, VoltageRange_3);
  61. // if (status != FLASH_COMPLETE)
  62. // {
  63. // FLASH_DataCacheCmd(ENABLE); // FLASH擦除结束,开启数据缓存
  64. // FLASH_Lock(); // 上锁
  65. // return;
  66. // }
  67. // status = FLASH_EraseSector(FLASH_Sector_5, VoltageRange_3);
  68. // if (status != FLASH_COMPLETE)
  69. // {
  70. // FLASH_DataCacheCmd(ENABLE); // FLASH擦除结束,开启数据缓存
  71. // FLASH_Lock(); // 上锁
  72. // return;
  73. // }
  74. // while (end_addr > read_addr)
  75. // {
  76. // temp_value = flash_read_page(read_addr);
  77. // if (FLASH_ProgramWord(write_addr1, temp_value) != FLASH_COMPLETE) // 写入数据
  78. // {
  79. // break; // 写入异常
  80. // }
  81. // write_addr1 += 4;
  82. // read_addr += 4;
  83. // }
  84. // FLASH_DataCacheCmd(ENABLE); // FLASH擦除结束,开启数据缓存
  85. // FLASH_Lock(); // 上锁
  86. // }
  87. // void iap_send_dataresp(u8 res, u32 addr, u32 sum)
  88. // {
  89. // u8 send_buf[8] = {0};
  90. // send_buf[0] = IAP_CMD_DOWNLOAD;
  91. // send_buf[1] = addr;
  92. // send_buf[2] = addr >> 8;
  93. // send_buf[3] = addr >> 16;
  94. // send_buf[4] = res;
  95. // send_buf[5] = addr >> 24;
  96. // send_buf[6] = (u8)(sum >> 8);
  97. // send_buf[7] = (u8)sum;
  98. // can_send_msg(send_buf, DLC_8, IAP_MCU_DATA_FRAME);
  99. // }
  100. // void iap_send_datafinish(u16 page_num)
  101. // {
  102. // u8 send_buf[8] = {0};
  103. // send_buf[0] = IAP_CMD_DOWNLOAD_END;
  104. // send_buf[1] = (u8)page_num;
  105. // send_buf[2] = (u8)(page_num >> 8);
  106. // send_buf[3] = 0xFF;
  107. // send_buf[4] = 0xFF;
  108. // send_buf[5] = 0xFF;
  109. // send_buf[6] = 0xFF;
  110. // send_buf[7] = 0xFF;
  111. // can_send_msg(send_buf, DLC_8, IAP_MCU_DATA_FRAME);
  112. // }
  113. // u8 stm_flash_write(u32 addr, u16 *array, u32 len)
  114. // {
  115. // u8 res = TRUE;
  116. // u32 index = 0, temp_addr = addr;
  117. // FLASH_Status status = FLASH_COMPLETE;
  118. // FLASH_Unlock();
  119. // FLASH_DataCacheCmd(DISABLE);
  120. // for (index = 0; index < len;)
  121. // {
  122. // if (STMFLASH_ReadHalfWord(temp_addr) != 0xFFFF)
  123. // {
  124. // status = FLASH_EraseSector(STMFLASH_GetFlashSector(temp_addr), VoltageRange_3);
  125. // if (status != FLASH_COMPLETE)
  126. // {
  127. // res = FALSE;
  128. // break;
  129. // }
  130. // }
  131. // else
  132. // {
  133. // index++;
  134. // temp_addr += 2;
  135. // }
  136. // }
  137. // if (status == FLASH_COMPLETE)
  138. // {
  139. // for (index = 0; index < len; index++)
  140. // {
  141. // if (FLASH_ProgramHalfWord(addr, array[index]) != FLASH_COMPLETE) // 写入数据
  142. // {
  143. // res = FALSE;
  144. // // 写入异常
  145. // break;
  146. // }
  147. // addr += 2;
  148. // }
  149. // }
  150. // FLASH_DataCacheCmd(ENABLE);
  151. // FLASH_Lock();
  152. // return res;
  153. // }
  154. // void stm_flash_write_word(u32 addr, u32 value)
  155. // {
  156. // u32 temp_addr = addr;
  157. // FLASH_Status status = FLASH_COMPLETE;
  158. // FLASH_Unlock();
  159. // FLASH_DataCacheCmd(DISABLE);
  160. // if (flash_read_page(temp_addr) != 0xFFFFFFFF)
  161. // {
  162. // status = FLASH_EraseSector(STMFLASH_GetFlashSector(temp_addr), VoltageRange_3);
  163. // if (status != FLASH_COMPLETE)
  164. // {
  165. // return;
  166. // }
  167. // }
  168. // if (status == FLASH_COMPLETE)
  169. // {
  170. // if (FLASH_ProgramWord(addr, value) != FLASH_COMPLETE) // 写入数据
  171. // {
  172. // return;
  173. // }
  174. // }
  175. // FLASH_DataCacheCmd(ENABLE);
  176. // FLASH_Lock();
  177. // }
  178. // void stm_flash_write_byte(u32 addr, u8 value)
  179. // {
  180. // u32 temp_addr = addr;
  181. // FLASH_Status status = FLASH_COMPLETE;
  182. // FLASH_Unlock();
  183. // FLASH_DataCacheCmd(DISABLE);
  184. // if (flash_read_byte(temp_addr) != 0xFF)
  185. // {
  186. // status = FLASH_EraseSector(STMFLASH_GetFlashSector(temp_addr), VoltageRange_3);
  187. // if (status != FLASH_COMPLETE)
  188. // {
  189. // return;
  190. // }
  191. // }
  192. // if (status == FLASH_COMPLETE)
  193. // {
  194. // if (FLASH_ProgramByte(addr, value) != FLASH_COMPLETE) // 写入数据
  195. // {
  196. // return;
  197. // }
  198. // }
  199. // FLASH_DataCacheCmd(ENABLE);
  200. // FLASH_Lock();
  201. // }
  202. // void iap_process(CanData_TypeDef *rx_msg)
  203. // {
  204. // // 握手帧回复,最后一个字节为前7个字节累加和
  205. // u8 handle_buf[DLC_8] = {'S', 'U', 'C', 'C', 'E', 'S', 'S', 0x19};
  206. // u8 pc_frame[DLC_8] = {'A', 'P', 'P', 'L', 'O', 'A', 'D', 0x01};
  207. // u8 index = 0, pc_cmd = 0, pack_num = 0, res = 0;
  208. // u16 rec_page_num = 0;
  209. // u32 temp_addr = 0;
  210. // static u16 cnt = 0;
  211. // static u16 total_page_num = 0;
  212. // static u32 iap_sum = 0;
  213. // static u32 pack_receive = 0;
  214. // static u32 write_addr = 0, old_write_addr = 0;
  215. // if (rx_msg->can_id == IAP_PC_BEGINE_FRAME)
  216. // {
  217. // cnt = 0;
  218. // if (memcmp(rx_msg->buf, pc_frame, 7) == 0)
  219. // {
  220. // total_page_num = 0;
  221. // if (res == 0)
  222. // {
  223. // InitQueue(&CanQueueImportant);
  224. // can_send_msg(handle_buf, DLC_8, IAP_MCU_BIGEN_FRAME);
  225. // write_addr = IAP_RUN_START_SECTOR; // IAP_DOWN_BEGIN_ADDR;
  226. // }
  227. // else
  228. // {
  229. // return;
  230. // }
  231. // }
  232. // }
  233. // else if (rx_msg->can_id == IAP_PC_DATA_FRAME)
  234. // {
  235. // cnt = 0;
  236. // pc_cmd = rx_msg->buf[0];
  237. // switch (pc_cmd)
  238. // {
  239. // case IAP_CMD_DOWNLOAD:
  240. // pack_num = rx_msg->buf[1];
  241. // if (pack_num == 0x01)
  242. // {
  243. // iap_sum = 0;
  244. // iap_index = 0;
  245. // pack_receive = 0;
  246. // pack_receive |= (1 << (pack_num - 1));
  247. // write_addr = (rx_msg->buf[6] << 24) + (rx_msg->buf[5] << 16) + (rx_msg->buf[4] << 8) + rx_msg->buf[3];
  248. // }
  249. // else if ((pack_num > 0x01) && (pack_num < 0x17))
  250. // {
  251. // if (((pack_receive & 0x00000001) != 0x00000001) || ((pack_receive & (1 << (pack_num - 1))) == (1 << (pack_num - 1))))
  252. // {
  253. // break;
  254. // }
  255. // iap_index = (pack_num - 2) * 3;
  256. // for (index = 0; index < 3; index++)
  257. // {
  258. // if (iap_index < (IAP_BUF_SIZE - 1))
  259. // {
  260. // pack_receive |= 1 << (pack_num - 1);
  261. // iap_buf[iap_index] = ((u16)rx_msg->buf[2 * index + 3] << 8) + rx_msg->buf[2 * index + 2];
  262. // iap_sum += iap_buf[iap_index];
  263. // iap_index++;
  264. // }
  265. // }
  266. // }
  267. // else if (pack_num == 0x17)
  268. // {
  269. // if (((pack_receive & 0x00000001) != 0x00000001) || ((pack_receive & (1 << (pack_num - 1))) == (1 << (pack_num - 1))))
  270. // {
  271. // break;
  272. // }
  273. // iap_index = 63;
  274. // pack_receive |= 1 << (pack_num - 1);
  275. // iap_buf[iap_index] = ((u16)rx_msg->buf[3] << 8) + rx_msg->buf[2];
  276. // iap_sum += iap_buf[iap_index];
  277. // }
  278. // if ((pack_receive & 0x007FFFFF) == 0x007FFFFF)
  279. // {
  280. // temp_addr = write_addr;
  281. // if ((write_addr >= ADDR_FLASH_SECTOR_4) && (write_addr <= ADDR_FLASH_SECTOR_END) && (stm_flash_write(temp_addr, iap_buf, IAP_BUF_SIZE) == TRUE))
  282. // {
  283. // iap_send_dataresp(MCU_DOWNLOAD_SUCC, write_addr, iap_sum);
  284. // if (write_addr != old_write_addr)
  285. // {
  286. // total_page_num++;
  287. // old_write_addr = write_addr;
  288. // }
  289. // }
  290. // else
  291. // {
  292. // iap_send_dataresp(MCU_DOWNLOAD_FAIL, write_addr, iap_sum);
  293. // }
  294. // iap_sum = 0;
  295. // iap_index = 0;
  296. // pack_receive = 0;
  297. // }
  298. // break;
  299. // case IAP_CMD_DOWNLOAD_END:
  300. // rec_page_num = rx_msg->buf[2];
  301. // rec_page_num = (rec_page_num << 8) | rx_msg->buf[1];
  302. // if (rec_page_num != total_page_num)
  303. // {
  304. // break;
  305. // }
  306. // iap_send_datafinish(total_page_num);
  307. // write_addr = IAP_RUN_START_SECTOR;
  308. // total_page_num = 0;
  309. // delay_ms(300);
  310. // boot_goto_app(APP_ADDRESS);
  311. // break;
  312. // }
  313. // }
  314. // else
  315. // {
  316. // cnt++;
  317. // delay_ms(10);
  318. // if (cnt > 50)
  319. // {
  320. // boot_goto_app(APP_ADDRESS);
  321. // }
  322. // }
  323. // }
  324. // u8 flash_up_is_ok(void)
  325. // {
  326. // u32 len = 0;
  327. // len = flash_read_page(IAP_FLASH_UP_LEN);
  328. // if ((len > 0) && (len < 455680)) // 445K
  329. // {
  330. // return TRUE;
  331. // }
  332. // else
  333. // {
  334. // return FALSE;
  335. // }
  336. // }
  337. // void iap_from_flash(void)
  338. // {
  339. // u32 value = 0, read_add = IAP_FLASH_UP_ADDR, write_add = IAP_RUN_START_SECTOR; // IAP_DOWN_BEGIN_ADDR;
  340. // u32 len = 0;
  341. // len = flash_read_page(IAP_FLASH_UP_LEN);
  342. // while (len >= 4)
  343. // {
  344. // value = flash_read_page(read_add);
  345. // stm_flash_write_word(write_add, value);
  346. // read_add += 4;
  347. // write_add += 4;
  348. // len -= 4;
  349. // }
  350. // for (; len > 0; len--)
  351. // {
  352. // value = flash_read_byte(read_add);
  353. // stm_flash_write_byte(write_add, (u8)value);
  354. // write_add++;
  355. // }
  356. // FLASH_Unlock();
  357. // FLASH_DataCacheCmd(DISABLE);
  358. // FLASH_EraseSector(FLASH_Sector_8, VoltageRange_3);
  359. // FLASH_EraseSector(FLASH_Sector_9, VoltageRange_3);
  360. // FLASH_EraseSector(FLASH_Sector_10, VoltageRange_3);
  361. // FLASH_EraseSector(FLASH_Sector_11, VoltageRange_3);
  362. // FLASH_DataCacheCmd(ENABLE);
  363. // FLASH_Lock();
  364. // }