hv_boot_Main.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  1. /**
  2. * @file hv_boot_Main.c
  3. * @brief boot main source code.
  4. * @details This file provides the following functions: \n
  5. * (1) Initialization and de-initialization functions \n
  6. * (2) Start and stop functions \n
  7. * (3) Feed functions \n
  8. *
  9. * @author HiView SoC Software Team
  10. * @version 1.0.0
  11. * @date 2022-08-18
  12. * @copyright Copyright(c),2022-8, Hiview Software. All rights reserved.
  13. * @par History:
  14. * <table>
  15. * <tr><th>Author <th>Date <th>Change Description
  16. * <tr><td>HiView SoC Software Team <td>2022-08-23 <td>init
  17. * </table>
  18. */
  19. #include <mips/cpu.h>
  20. #include <mips/hal.h>
  21. #include "hv_chip_Config.h"
  22. #include "hv_chip_Memory.h"
  23. #include "hv_comm_FlashConfig.h"
  24. #include "hv_boot_Lzss.h"
  25. #include "hv_boot_Common.h"
  26. __attribute__((long_call)) extern int main(int argc, char **argv);
  27. __attribute__((long_call)) extern void Hv_Vos_Init(void);
  28. #define PAGEMASK_256M 0x1FFFE000
  29. #define EHINV (1 << 10)
  30. #define ENTRY_MASK (7) // GLOBAL, VALID, DIRTY
  31. #define ENTRY_MASK_INVALID (1) // GLOBAL, VALID, DIRTY
  32. #define FLASH_END 0x4000000
  33. //#define CONFIG_4LINE_DMA
  34. #define CONFIG_USE_DMA
  35. /* temp ddr address for code to decompress. */
  36. #define DDR_TEMP_ADDR 0x82000000
  37. unsigned int g_uiFlashUpgradeOffset = 0;
  38. /*
  39. TLB memory mapping
  40. PAddr - VAddr - kseg0 - uncached kseg0
  41. -----------------------------------------------------
  42. 0x00000000 - N/A - 0x80000000 - 0xA0000000
  43. 0x10000000 - N/A - 0x90000000 - 0xB0000000
  44. 0x80000000 - 0x60000000 - N/A - N/A
  45. 0x90000000 - 0x70000000 - N/A - N/A
  46. */
  47. static void Hv_Boot_InitTlb(void)
  48. {
  49. unsigned int uiVaddr = 0;
  50. unsigned int uiEvenAddr = 0;
  51. unsigned int uiOddAaddr = 0;
  52. uiVaddr = 0x00000000;
  53. mips_tlbrwr2(uiVaddr | EHINV, ENTRY_MASK_INVALID, ENTRY_MASK_INVALID, PAGEMASK_256M);
  54. uiVaddr = 0x20000000;
  55. mips_tlbrwr2(uiVaddr | EHINV, ENTRY_MASK_INVALID, ENTRY_MASK_INVALID, PAGEMASK_256M);
  56. uiVaddr = 0x30000000;
  57. mips_tlbrwr2(uiVaddr | EHINV, ENTRY_MASK_INVALID, ENTRY_MASK_INVALID, PAGEMASK_256M);
  58. /* mapping 0x80000000 => 0x60000000 mapping 0x90000000 => 0x70000000 */
  59. uiVaddr = 0x60000000;
  60. uiEvenAddr = 0x80000000;
  61. uiOddAaddr = 0x90000000;
  62. mips_tlbrwr2(uiVaddr | EHINV,
  63. (uiEvenAddr >> 12 << 6) | ENTRY_MASK,
  64. (uiOddAaddr >> 12 << 6) | ENTRY_MASK,
  65. PAGEMASK_256M);
  66. return;
  67. }
  68. void Hv_Boot_ClearBss(void)
  69. {
  70. extern void *__bss_start, *__bss_end;
  71. unsigned int *puiStart = (unsigned int*)(&__bss_start);
  72. unsigned int *puiEnd = (unsigned int*)(&__bss_end);
  73. while ((unsigned int)puiStart < (unsigned int)puiEnd)
  74. {
  75. *puiStart ++ = 0;
  76. }
  77. mips_flush_cache();
  78. return;
  79. }
  80. void Hv_Boot_CopyDdrCodeData(void)
  81. {
  82. extern void *_text_lma,*__text_start, *__rodata_end;
  83. extern void *_data_lma, *__data_start, *__data_end;
  84. unsigned int iIndex = 0;
  85. unsigned int uiDataSize = 0;
  86. unsigned int *puiData = NULL;
  87. unsigned int *puiFlash = NULL;
  88. /* Copy text and rodata segment from Flash to ddr */
  89. uiDataSize = ((unsigned int)(&__rodata_end) - (unsigned int)(&__text_start)) / sizeof(unsigned int);
  90. puiData = (unsigned int *)&__text_start;
  91. puiFlash = ((unsigned int *)&_text_lma) + g_uiFlashUpgradeOffset;
  92. for (iIndex = 0; iIndex < uiDataSize ; iIndex++)
  93. {
  94. puiData[iIndex] = puiFlash[iIndex];
  95. }
  96. /* Copy data segment from Flash to ddr */
  97. uiDataSize = ((unsigned int)(&__data_end) - (unsigned int)(&__data_start)) / sizeof(unsigned int);
  98. puiData = (unsigned int *)&__data_start;
  99. puiFlash = ((unsigned int *)&_data_lma) + g_uiFlashUpgradeOffset;
  100. for (iIndex = 0; iIndex < uiDataSize ; iIndex++)
  101. {
  102. puiData[iIndex] = puiFlash[iIndex];
  103. }
  104. return;
  105. }
  106. static void Hv_Boot_CopyDdrCodeDataCompressed(int uiCompressed)
  107. {
  108. unsigned int uiDdrAddr = 0;
  109. extern void *_text_lma, *__text_start, *__data_end;
  110. unsigned int *puiData = NULL;
  111. unsigned int *puiFlash = NULL;
  112. unsigned int iIndex = 0;
  113. unsigned int uiDataSize = 0;
  114. uiDataSize = ((unsigned int)(&__data_end) - (unsigned int)(&__text_start)) / sizeof(unsigned int);
  115. puiData = (unsigned int *)&__text_start;
  116. puiFlash = ((unsigned int *)&_text_lma) + g_uiFlashUpgradeOffset;
  117. if (uiCompressed)
  118. {
  119. puiData = (unsigned int *)DDR_TEMP_ADDR;
  120. uiDataSize = HV_FLASH_CONFIG_CODE_PART_SIZE / sizeof(unsigned int);
  121. }
  122. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_INFO, ">>> Hv_Boot_CopyDdrCodeDataCompressed enter.\n");
  123. Hv_Boot_PrintHex(BOOT_DEBUG_LEVEL_DEBUG, uiDataSize);
  124. Hv_Boot_PrintHex(BOOT_DEBUG_LEVEL_DEBUG, (unsigned int)puiData);
  125. Hv_Boot_PrintHex(BOOT_DEBUG_LEVEL_DEBUG, (unsigned int)puiFlash);
  126. for (iIndex = 0; iIndex < uiDataSize ; iIndex++)
  127. {
  128. puiData[iIndex] = puiFlash[iIndex];
  129. }
  130. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_DEBUG, ">>> Hv_Boot_CopyDdrCodeDataCompressed over.\n");
  131. return;
  132. }
  133. extern void Hv_Ddr_Init(void);
  134. void Hv_Boot_InitDDR(void)
  135. {
  136. Hv_Ddr_Init();
  137. return;
  138. }
  139. static void _Boot_DmaCopyFlashToDDR(unsigned int uiFlashAddr, unsigned int uiDdrAddr, unsigned int uiDataSize)
  140. {
  141. /*use two dma channel for rx/tx,most high speed is 4 division*/
  142. unsigned int auiCmdAddr[2] = {0};
  143. unsigned int uiPageCount = 0;
  144. unsigned int uiSurplusSize = 0;
  145. unsigned int iIndex = 0;
  146. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_INFO, ">>> Hv_Boot_DmaCopyFlashToDDR.\n");
  147. Hv_Boot_PrintHex(BOOT_DEBUG_LEVEL_DEBUG, uiDataSize);
  148. Hv_Boot_PrintHex(BOOT_DEBUG_LEVEL_DEBUG, uiDdrAddr);
  149. Hv_Boot_PrintHex(BOOT_DEBUG_LEVEL_DEBUG, uiFlashAddr);
  150. BOOT_WT32(CPU_SYS_DMAC_CTL0_L, 0xa09405);
  151. BOOT_WT32(CPU_SYS_DMAC_CFG0_L, 0x800000);
  152. BOOT_WT32(CPU_SYS_DMAC_CFG0_H, 0x82);
  153. BOOT_WT32(CPU_SYS_DMAC_MASKTFR, 0x101);
  154. BOOT_WT32(CPU_SYS_DMAC_CLEARTFR, 0x01);
  155. BOOT_WT32(CPU_SYS_DMACFGREG, 0x01);
  156. BOOT_W32_FIELD(SYS_REG_SH5_TOP0_REG_SH5_WDG_FILED2, reg_sh5_qspi_xip_en, 0x0);
  157. BOOT_WT32(CPU_SYS_2_QSPI_SSIENR, 0x00);
  158. BOOT_RD32(CPU_SYS_2_QSPI_ICR);
  159. #ifdef CONFIG_4LINE_DMA
  160. /* 8bit read only, four line select */
  161. BOOT_WT32(CPU_SYS_2_QSPI_CTRLR0, 0x800807);
  162. #else
  163. BOOT_WT32(CPU_SYS_2_QSPI_CTRLR0, 0x400807);
  164. #endif
  165. /* division set */
  166. BOOT_WT32(CPU_SYS_2_QSPI_BAUDR, 6);
  167. BOOT_WT32(CPU_SYS_2_QSPI_TXFTLR, 0x08);
  168. BOOT_WT32(CPU_SYS_2_QSPI_RXFTLR, 0x00);
  169. /* addr 24bit, instru 8bit, standard mode. */
  170. BOOT_W32_FIELD(CPU_SYS_2_QSPI_SPI_CTRLR0, TRANS_TYPE, 0);
  171. BOOT_W32_FIELD(CPU_SYS_2_QSPI_SPI_CTRLR0, ADDR_L, 0x6);
  172. BOOT_W32_FIELD(CPU_SYS_2_QSPI_SPI_CTRLR0, INST_L, 0x2);
  173. /* read cmd 4line */
  174. #ifdef CONFIG_4LINE_DMA
  175. auiCmdAddr[0]= 0x6B;
  176. #else
  177. /* read cmd 2line */
  178. auiCmdAddr[0]= 0x3B;
  179. #endif
  180. /* read dma enable */
  181. BOOT_WT32(CPU_SYS_2_QSPI_DMACR, 0x01);
  182. BOOT_WT32(CPU_SYS_2_QSPI_DMARDLR, 0x07);
  183. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_DEBUG, ">>> Read time start.\n");
  184. uiPageCount = uiDataSize >> 11;
  185. uiSurplusSize = uiDataSize & 0x7ff;
  186. Hv_Boot_PrintHex(BOOT_DEBUG_LEVEL_DEBUG, uiPageCount);
  187. Hv_Boot_PrintHex(BOOT_DEBUG_LEVEL_DEBUG, uiSurplusSize);
  188. for (iIndex = 0; iIndex < uiPageCount; iIndex++)
  189. {
  190. BOOT_WT32(CPU_SYS_DMAC_SAR0, CPU_SYS_2_QSPI_DR0);
  191. BOOT_WT32(CPU_SYS_DMAC_DAR0, uiDdrAddr & 0x1fffffff);
  192. BOOT_WT32(CPU_SYS_DMAC_CTL0_H, 0x800);
  193. BOOT_WT32(CPU_SYS_DMAC_CHENREG, 0x101);
  194. BOOT_WT32(CPU_SYS_2_QSPI_CTRLR1, 0x7ff);
  195. BOOT_WT32(CPU_SYS_2_QSPI_SSIENR, 0x01);
  196. BOOT_WT32(CPU_SYS_2_QSPI_DR0, auiCmdAddr[0]);
  197. BOOT_WT32(CPU_SYS_2_QSPI_DR0, uiFlashAddr);
  198. while(!(BOOT_RD32(CPU_SYS_DMAC_STATUSINT) & 0x01));
  199. BOOT_WT32(CPU_SYS_DMAC_CLEARTFR, 0x1);
  200. Hv_Boot_Wait_Us(1);
  201. while((BOOT_RD32(CPU_SYS_2_QSPI_SR) & 0x01) == 0x01);
  202. Hv_Boot_Wait_Us(1);
  203. BOOT_WT32(CPU_SYS_2_QSPI_SSIENR,0x0);
  204. Hv_Boot_Wait_Us(1);
  205. uiFlashAddr = uiFlashAddr + 0x800;
  206. uiDdrAddr = uiDdrAddr + 0x800;
  207. }
  208. if (uiSurplusSize > 0)
  209. {
  210. BOOT_WT32(CPU_SYS_DMAC_SAR0, CPU_SYS_2_QSPI_DR0);
  211. BOOT_WT32(CPU_SYS_DMAC_DAR0, uiDdrAddr & 0x1fffffff);
  212. BOOT_WT32(CPU_SYS_DMAC_CTL0_H, uiSurplusSize);
  213. BOOT_WT32(CPU_SYS_DMAC_CHENREG, 0x101);
  214. BOOT_WT32(CPU_SYS_2_QSPI_CTRLR1, uiSurplusSize-1);
  215. BOOT_WT32(CPU_SYS_2_QSPI_SSIENR, 0x01);
  216. BOOT_WT32(CPU_SYS_2_QSPI_DR0, auiCmdAddr[0]);
  217. BOOT_WT32(CPU_SYS_2_QSPI_DR0, uiFlashAddr);
  218. while(!(BOOT_RD32(CPU_SYS_DMAC_STATUSINT) & 0x01));
  219. BOOT_WT32(CPU_SYS_DMAC_CLEARTFR, 0x1);
  220. while((BOOT_RD32(CPU_SYS_2_QSPI_SR) & 0x01) == 0x01);
  221. }
  222. BOOT_WT32(CPU_SYS_DMAC_MASKTFR,0x100);
  223. BOOT_WT32(CPU_SYS_DMACFGREG,0x0);
  224. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_DEBUG, ">>> Read time end.\n");
  225. /* togle ssien before xip mode. */
  226. BOOT_WT32(CPU_SYS_2_QSPI_SSIENR, 0x00);
  227. //BOOT_RD32(CPU_SYS_2_QSPI_ICR);
  228. //BOOT_WT32(CPU_SYS_2_QSPI_BAUDR, 0x8);
  229. //BOOT_WT32(CPU_SYS_2_QSPI_DMACR, 0x00);
  230. BOOT_WT32(CPU_SYS_2_QSPI_SSIENR, 0x1);
  231. BOOT_W32_FIELD(SYS_REG_SH5_TOP0_REG_SH5_WDG_FILED2, reg_sh5_qspi_xip_en, 0x1);
  232. return;
  233. }
  234. static void Hv_Boot_DmaCopyFlashToDDR(int uiCompressed)
  235. {
  236. unsigned int uiDdrAddr = 0;
  237. unsigned int uiFlashAddr = 0;
  238. extern void *_text_lma, *__text_start, *__data_end;
  239. unsigned int iIndex = 0;
  240. unsigned int uiDataSize = 0;
  241. uiDataSize = ((unsigned int)(&__data_end) - (unsigned int)(&__text_start));
  242. uiDdrAddr = (unsigned int )&__text_start;
  243. uiFlashAddr = (unsigned int)((unsigned int)&_text_lma - 0xBfc00000) + g_uiFlashUpgradeOffset;
  244. if (uiCompressed)
  245. {
  246. uiDdrAddr = DDR_TEMP_ADDR;
  247. uiDataSize = HV_FLASH_CONFIG_CODE_PART_SIZE;
  248. }
  249. if (uiFlashAddr + uiDataSize > FLASH_END)
  250. {
  251. uiDataSize = FLASH_END - uiFlashAddr;
  252. }
  253. _Boot_DmaCopyFlashToDDR(uiFlashAddr, uiDdrAddr, uiDataSize);
  254. return;
  255. }
  256. static void Hv_Boot_CopyPqFlashToDDR(void)
  257. {
  258. unsigned int uiDdrAddr = DDR_TEMP_ADDR;
  259. unsigned int uiFlashAddr = HV_FLASH_CONFIG_PQ_DATA_PART_START;
  260. unsigned int uiDataSize = HV_FLASH_CONFIG_PQ_DATA_PART_SIZE;
  261. if (uiFlashAddr + uiDataSize > FLASH_END)
  262. {
  263. uiDataSize = FLASH_END - uiFlashAddr;
  264. }
  265. _Boot_DmaCopyFlashToDDR(uiFlashAddr, uiDdrAddr, uiDataSize);
  266. return;
  267. }
  268. static void Hv_Boot_CopyLogoFlashToDDR(void)
  269. {
  270. unsigned int uiDdrAddr = HV_MEMORY_CONFIG_OSD_LOGO_DDR_START;
  271. unsigned int uiFlashAddr = HV_FLASH_CONFIG_LOGO_PART_START;
  272. unsigned int uiDataSize = HV_FLASH_CONFIG_LOGO_PART_SIZE;
  273. if (uiFlashAddr + uiDataSize > FLASH_END)
  274. {
  275. uiDataSize = FLASH_END - uiFlashAddr;
  276. }
  277. _Boot_DmaCopyFlashToDDR(uiFlashAddr, uiDdrAddr, uiDataSize);
  278. return;
  279. }
  280. void Hv_Boot_WatchdogInit(void)
  281. {
  282. BOOT_WT32(SYS_REG_SH5_TOP0_REG_SH5_WDG_FILED5, 5000);
  283. /* wdt reload */
  284. BOOT_W32_FIELD(SYS_REG_SH5_TOP0_REG_SH5_WDG_FILED7, reg_sh5_wdg_reload_en, 1);
  285. BOOT_W32_FIELD(SYS_REG_SH5_TOP0_REG_SH5_WDG_FILED7, reg_sh5_wdg_reload_en, 0);
  286. unsigned int uiVal = BOOT_RD32(SYS_REG_SH5_TOP0_REG_SH5_WDG_FILED4);
  287. /* count enable */
  288. uiVal |= 0x00000001;
  289. /* wdg reset enable to reset whole system */
  290. uiVal |= 0x00000008;
  291. /* set count period 1ms from APB_CLK */
  292. BOOT_WT32(SYS_REG_SH5_TOP0_REG_SH5_WDG_FILED6, (HV_CHIP_CLK_APB / 1000));
  293. /* start the wdt */
  294. BOOT_WT32(SYS_REG_SH5_TOP0_REG_SH5_WDG_FILED4, uiVal);
  295. }
  296. static unsigned char s_ucBootType = 0;
  297. static unsigned char s_cAcFlag = 0;
  298. void Hv_Boot_Check_BootReason(void)
  299. {
  300. int iData = 0;
  301. iData = BOOT_RD32(STANDBY_STANDBY_MCU_REG_STBY_MCU6);
  302. if (4 == (iData&0xff))/* wakeup */
  303. {
  304. iData = BOOT_RD32(STANDBY_STANDBY_MCU_REG_STBY_MCU7);
  305. s_ucBootType = (iData&0xff);
  306. BOOT_WT32(SW_DUMMY_JTAG, s_ucBootType);
  307. }
  308. return;
  309. }
  310. unsigned char Hv_Boot_Get_BootReason(void)
  311. {
  312. return s_ucBootType;
  313. }
  314. unsigned char Hv_Boot_Get_BootType(void)
  315. {
  316. return s_cAcFlag;
  317. }
  318. static void BootPwrOff(void)
  319. {
  320. /* E_MAILBOX_CMD_RISC_TO_PM_NORMAL */
  321. BOOT_WT32(STANDBY_STANDBY_MCU_REG_STBY_MCU10, 7);
  322. BOOT_WT32(STANDBY_STANDBY_MCU_REG_STBY_MCU15, 1);
  323. Hv_Boot_Wait_Ms(20);
  324. /* E_MAILBOX_CMD_RISC_TO_PM_POWER_OFF_ACK */
  325. BOOT_WT32(STANDBY_STANDBY_MCU_REG_STBY_MCU10, 5);
  326. BOOT_WT32(STANDBY_STANDBY_MCU_REG_STBY_MCU15, 1);
  327. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_WAR, ">>> poweroff\n");
  328. while(1);
  329. }
  330. void Hv_Boot_Check_SecondPowerOn(void)
  331. {
  332. unsigned int uiData = 0;
  333. unsigned int uiLoop = 0;
  334. unsigned int uiAddr = HV_FLASH_CONFIG_START_XIP+HV_FLASH_CONFIG_MONITOR_DATA_PART_START+HV_FLASH_CONFIG_TIMER_START;
  335. BOOT_R32_DECL_VAR();
  336. s_cAcFlag = BOOT_R32_FIELD(STANDBY_AON_REG_PMU_REG3, reg_first_start_flag);
  337. if (s_cAcFlag)
  338. {
  339. BOOT_W32_FIELD(STANDBY_AON_REG_PMU_REG3, reg_first_start_flag, 0);
  340. #if (HV_PROJECT_CONFIG_AC_POWER_STATE == 1)
  341. BootPwrOff();
  342. #elif (HV_PROJECT_CONFIG_AC_POWER_STATE == 2)
  343. return;
  344. #else
  345. ;
  346. #endif
  347. }
  348. else
  349. {
  350. return;
  351. }
  352. for (uiLoop = 0; uiLoop<4096; uiLoop+=16)
  353. {
  354. /* magic TIMD or HT7315 */
  355. if ((BOOT_RD32(uiAddr+uiLoop+4) != 0x54494D45)
  356. && (BOOT_RD32(uiAddr+uiLoop+4) != 0x48547315))
  357. {
  358. break;
  359. }
  360. uiData = BOOT_RD32(uiAddr+uiLoop+0xc);
  361. }
  362. if (8 == (uiData&0xff))/* poweroff */
  363. {
  364. BootPwrOff();
  365. }
  366. return;
  367. }
  368. int _start(void)
  369. {
  370. int iRet = 0;
  371. char cGpioIndex = 16;
  372. int iPqCompressSize = 0;
  373. char *pucAddr = NULL;
  374. #ifdef SW_DUMMY_DEBUG
  375. while(HV_RD32(SW_DUMMY_JTAG)==0x11223344);
  376. #endif
  377. mips_bissr(SR_CU1);
  378. Hv_Chip_DebugUartInit(115200);
  379. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_WAR, ">>> BOOT RISC0\n");
  380. /* find upgrade section. */
  381. if (*(char *)(HV_FLASH_CONFIG_START_XIP + HV_FLASH_CONFIG_PM_DATA_START + 4 + 5) == 0xaa)
  382. {
  383. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_WAR, ">>> user second part.\n");
  384. //g_uiFlashUpgradeOffset = HV_FLASH_CONFIG_BACK_SIZE;
  385. }
  386. #ifdef CONFIG_USER_WATCHDOG_ON
  387. Hv_Boot_WatchdogInit();
  388. #endif
  389. Hv_Boot_Check_BootReason();
  390. Hv_Boot_Check_SecondPowerOn();
  391. if (11 != s_ucBootType)
  392. {
  393. #if HV_BOARD_CONFIG_LED_R_POL
  394. BOOT_W32_FIELD(STANDBY_STANDBY_PERI_REG_PWM0, reg_pwm_pol, 0);
  395. #else
  396. BOOT_W32_FIELD(STANDBY_STANDBY_PERI_REG_PWM0, reg_pwm_pol, 1);
  397. #endif
  398. BOOT_W32_FIELD(STANDBY_STANDBY_PERI_REG_PWM0, reg_pwm_ch_en, 0);
  399. BOOT_W32_FIELD(STANDBY_STANDBY_PERI_REG_PWM0, reg_pwm_output_mode, 1);
  400. #if (HV_BOARD_CONFIG_GPIO_LED_B == 61)
  401. /* pin61-gpio21-bit16*/
  402. BOOT_W32_FIELD(RX_SH08_TOP_RX_CTRL_0, reg_gpio21_func_sel, 0);
  403. cGpioIndex = 16;
  404. #endif
  405. #if HV_BOARD_CONFIG_LED_B_POL
  406. BOOT_W32_FIELD(CPU_SYS_GPIO0_GPIO_OUT0_SET, gpio0_out_set, (1<<cGpioIndex));
  407. BOOT_W32_FIELD(CPU_SYS_GPIO0_GPIO_OE0_SET, gpio0_oe_set, (1<<cGpioIndex));
  408. #else
  409. BOOT_W32_FIELD(CPU_SYS_GPIO0_GPIO_OUT0_CLR, gpio0_out_clr, (1<<cGpioIndex));
  410. BOOT_W32_FIELD(CPU_SYS_GPIO0_GPIO_OE0_SET, gpio0_oe_set, (1<<cGpioIndex));
  411. #endif
  412. }
  413. Hv_Boot_InitDDR();
  414. Hv_Boot_Wait_Ms(1);
  415. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_INFO, ">>> boot_ddr_init over\n");
  416. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_INFO, ">>> copy_ddr_code_data...\n");
  417. #ifdef CONFIG_CODE_COMPRESSED
  418. extern void *_text_lma,*__text_start;
  419. extern void *__data_start;
  420. #ifdef CONFIG_USE_DMA
  421. Hv_Boot_DmaCopyFlashToDDR(1);
  422. #else
  423. Hv_Boot_CopyDdrCodeDataCompressed(1);
  424. #endif
  425. iRet = Hv_Boot_LzssDecompress((char *)DDR_TEMP_ADDR, ((char *)&__text_start), 1, 0);
  426. if ( iRet != 0)
  427. {
  428. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_INFO, ">>> decompress code error\n");
  429. }
  430. #else
  431. #ifdef CONFIG_USE_DMA
  432. Hv_Boot_DmaCopyFlashToDDR(0);
  433. #else
  434. Hv_Boot_CopyDdrCodeDataCompressed(0);
  435. #endif
  436. #endif
  437. #ifdef CONFIG_PQ_COMPRESSED
  438. #ifdef CONFIG_USE_DMA
  439. Hv_Boot_CopyPqFlashToDDR();
  440. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_DEBUG, ">>> decompress pq...\n");
  441. Hv_Boot_LzssDecompress((char *)DDR_TEMP_ADDR,((char *)HV_MEMORY_CONFIG_PQ_DATA_START), 1, 0);
  442. #endif
  443. #endif
  444. Hv_Boot_ClearBss();
  445. Hv_Boot_CopyLogoFlashToDDR();
  446. /* set stack to the symbol of __stack */
  447. __asm__ __volatile__ ("la $29, __stack");
  448. Hv_Boot_InitTlb();
  449. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_INFO, ">>> risc init\n");
  450. Hv_Vos_Init();
  451. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_WAR, ">>> enter main");
  452. iRet = main(0, 0);
  453. Hv_Boot_Print_String(BOOT_DEBUG_LEVEL_INFO, ">>> over\n");
  454. return iRet;
  455. }