hv_boot_Common.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /**
  2. * @file hv_boot_Common.c
  3. * @brief boot common 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 "hv_chip_Config.h"
  20. #include "hv_boot_Common.h"
  21. char g_cBootString[32] = {0};
  22. static char* toStrHex(unsigned int uiVal)
  23. {
  24. int iIndex = 0;
  25. unsigned int uiTemp = uiVal;
  26. g_cBootString[0] = '0';
  27. g_cBootString[1] = 'x';
  28. for (iIndex = 0; iIndex < 8; iIndex++)
  29. {
  30. uiTemp = (uiVal >> ((7-iIndex) * 4)) & 0xf;
  31. if (uiTemp < 0xa)
  32. {
  33. g_cBootString[2+iIndex] = uiTemp + 0x30;
  34. } else {
  35. g_cBootString[2+iIndex] = 'A' + uiTemp - 0xa;
  36. }
  37. }
  38. g_cBootString[10] = '\n';
  39. g_cBootString[11] = '\0';
  40. return g_cBootString;
  41. }
  42. void Hv_Boot_PrintHex(unsigned int Level, unsigned int uiVal)
  43. {
  44. if (Level >= BOOT_DEBUG_CONTR_LEVELL)
  45. {
  46. Hv_Chip_DebugUartPuts(toStrHex(uiVal));
  47. }
  48. return;
  49. }
  50. void Hv_Boot_Print_String(unsigned int Level, const char *pcString)
  51. {
  52. if (Level >= BOOT_DEBUG_CONTR_LEVELL)
  53. {
  54. Hv_Chip_DebugUartPuts(pcString);
  55. }
  56. return;
  57. }
  58. void Hv_Boot_Wait_Us(unsigned int Us)
  59. {
  60. unsigned int uiCnt = Us * (HV_CHIP_CLK_CPU / 7000000);
  61. while (uiCnt--)
  62. {
  63. asm("nop");
  64. }
  65. return;
  66. }
  67. void Hv_Boot_Wait_Ms(unsigned int Ms)
  68. {
  69. unsigned int uiCnt = Ms * (HV_CHIP_CLK_CPU / 7000);
  70. while(uiCnt--)
  71. {
  72. asm("nop");
  73. }
  74. return;
  75. }