hv_comm_FlashConfig.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /**
  2. * @file hv_comm_FlashConfig.h
  3. * @brief Header file of Project.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. *
  10. *
  11. @ endverbatim
  12. *
  13. * @author HiView SoC Software Team
  14. * @version 1.0.0
  15. * @date 2023-04-25
  16. */
  17. #ifndef __HV_COMM_FLASH_CONFIG_H__
  18. #define __HV_COMM_FLASH_CONFIG_H__
  19. /* *********
  20. FLASH_N25Q:0
  21. FLASH_MT25:1
  22. FLASH_P25Q:2
  23. FLASH_W25Q:3
  24. FLASH_GD25:4
  25. FLASH_MX25:5
  26. ***********/
  27. #define HV_FLASH_CONFIG_TYPE 3
  28. #define CONFIG_DB_USERDATA 1
  29. #define HV_FLASH_CONFIG_PM_PART_SIZE (36*1024)
  30. #define HV_FLASH_CONFIG_PM_DATA_START (28*1024)
  31. #define HV_FLASH_CONFIG_SUPERBLOCK_START (32*1024)
  32. #define HV_FLASH_CONFIG_BOOT_SIZE (60*1024*2)
  33. #define HV_FLASH_CONFIG_PRECODE_SIZE (HV_FLASH_CONFIG_PM_PART_SIZE + HV_FLASH_CONFIG_BOOT_SIZE)
  34. /* 4MB flash compress */
  35. #define CONFIG_CODE_COMPRESSED
  36. #define CONFIG_PQ_COMPRESSED
  37. #define HV_FLASH_CONFIG_CODE_PART_SIZE (1304*1024)
  38. #define HV_FLASH_CONFIG_LOGO_PART_SIZE (128*1024)
  39. #define HV_FLASH_CONFIG_TIMER_START (0*1024)
  40. #define HV_FLASH_CONFIG_USERDATA_START (4*1024)
  41. #define HV_FLASH_CONFIG_USERBACK_START (8*1024)
  42. #define HV_FLASH_CONFIG_SYSTEMDATA_START (12*1024)
  43. #define HV_FLASH_CONFIG_FACDATA_START (16*1024)
  44. #define HV_FLASH_CONFIG_PANEL_START (20*1024)
  45. #define HV_FLASH_CONFIG_GAMMA_START (24*1024)
  46. #define HV_FLASH_CONFIG_DPEDID_START (40*1024)
  47. #define HV_FLASH_CONFIG_HDMIEDID_START (48*1024)
  48. #define HV_FLASH_CONFIG_HDCP_START (56*1024)
  49. #define HV_FLASH_CONFIG_DIAGDATA_START (60*1024)
  50. #define HV_FLASH_CONFIG_PQ_DATA_PART_SIZE (396*1024)
  51. #define HV_FLASH_CONFIG_BACK_SIZE (0x218000)
  52. #define HV_FLASH_CONFIG_START_XIP 0xbfc00000
  53. #define HV_FLASH_CONFIG_START 0x0
  54. #define HV_FLASH_CONFIG_LOGO_PART_START (HV_FLASH_CONFIG_START + HV_FLASH_CONFIG_PRECODE_SIZE + HV_FLASH_CONFIG_CODE_PART_SIZE)
  55. #define HV_FLASH_CONFIG_PQ_DATA_PART_START (HV_FLASH_CONFIG_LOGO_PART_START+ HV_FLASH_CONFIG_LOGO_PART_SIZE)
  56. #define HV_FLASH_CONFIG_MONITOR_DATA_PART_START (HV_FLASH_CONFIG_PQ_DATA_PART_START + HV_FLASH_CONFIG_PQ_DATA_PART_SIZE)
  57. #endif