tile_cache.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <errno.h>
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <stdbool.h>
  10. #include <string.h>
  11. #include <os_common_api.h>
  12. #include "tile_cache.h"
  13. #define CONFIG_TILE_CACHE_LOOP_MODE 1
  14. __aligned(32) __in_section_unique(tile.bss.cache)
  15. static tile_cache_item_t tile_cache[CONFIG_TILE_CACHE_NUM];
  16. static bool cache_init = false;
  17. #ifdef CONFIG_TILE_CACHE_LOOP_MODE
  18. static uint16_t current_index = 0;
  19. #endif
  20. #ifdef CONFIG_CACHE_PROFILE
  21. static int total_cnt = 0;
  22. static int hit_cnt = 0;
  23. #endif
  24. int tile_cache_init(void)
  25. {
  26. for (int i = 0 ; i < CONFIG_TILE_CACHE_NUM; i++) {
  27. tile_cache[i].cache_valid = 0;
  28. tile_cache[i].pic_addr = 0;
  29. tile_cache[i].cache_ref_cnt = 0;
  30. }
  31. current_index = 0;
  32. return 0;
  33. }
  34. __ramfunc int tile_cache_is_valid(tile_cache_item_t * cache_item)
  35. {
  36. if (!cache_item)
  37. return 0;
  38. return cache_item->cache_valid;
  39. }
  40. __ramfunc int tile_cache_set_valid(tile_cache_item_t *cache_item, const uint8_t *pic_src, uint16_t tile_index, uint16_t tile_size)
  41. {
  42. if (!cache_item)
  43. return -EINVAL;
  44. cache_item->pic_addr = pic_src;
  45. cache_item->tile_index = tile_index;
  46. cache_item->tile_size = tile_size;
  47. cache_item->cache_valid = 1;
  48. cache_item->cache_ref_cnt = 0;
  49. return 0;
  50. }
  51. #ifdef CONFIG_TILE_CACHE_LOOP_MODE
  52. __ramfunc tile_cache_item_t *tile_cache_get(const uint8_t *pic_src, uint16_t tile_index)
  53. {
  54. if (!cache_init) {
  55. tile_cache_init();
  56. cache_init = true;
  57. }
  58. tile_cache_item_t *replace_cache_item = &tile_cache[current_index];
  59. if (++current_index >= CONFIG_TILE_CACHE_NUM) {
  60. current_index = 0;
  61. }
  62. replace_cache_item->cache_valid = 0;
  63. return replace_cache_item;
  64. }
  65. #else
  66. __ramfunc tile_cache_item_t *tile_cache_get(const uint8_t *pic_src, uint16_t tile_index)
  67. {
  68. if (!cache_init) {
  69. tile_cache_init();
  70. cache_init = true;
  71. }
  72. tile_cache_item_t *new_cache_item = NULL;
  73. tile_cache_item_t *replace_cache_item = &tile_cache[0];
  74. #ifdef CONFIG_CACHE_PROFILE
  75. int replace_cache_index = 0;
  76. #endif
  77. #ifdef CONFIG_CACHE_PROFILE
  78. total_cnt ++;
  79. printk("cache hit %d %% \n",hit_cnt * 100 / total_cnt);
  80. printk("\n");
  81. for (int i = 0 ; i < CONFIG_TILE_CACHE_NUM; i++) {
  82. printk(" %d ",tile_cache[i].cache_ref_cnt);
  83. }
  84. printk("\n");
  85. #endif
  86. for (int i = 0 ; i < CONFIG_TILE_CACHE_NUM; i++) {
  87. if (tile_cache[i].cache_valid && tile_cache[i].pic_addr == pic_src
  88. && tile_cache[i].tile_index == tile_index) {
  89. new_cache_item = &tile_cache[i];
  90. #ifdef CONFIG_CACHE_PROFILE
  91. hit_cnt++;
  92. #endif
  93. } else {
  94. if (!tile_cache[i].cache_valid) {
  95. new_cache_item = &tile_cache[i];
  96. printk("new cache %d \n",i);
  97. } else {
  98. if (replace_cache_item->cache_ref_cnt < tile_cache[i].cache_ref_cnt) {
  99. replace_cache_item = &tile_cache[i];
  100. #ifdef CONFIG_CACHE_PROFILE
  101. replace_cache_index = i;
  102. #endif
  103. }
  104. tile_cache[i].cache_ref_cnt += 1;
  105. }
  106. }
  107. }
  108. if (new_cache_item) {
  109. return new_cache_item;
  110. } else if (replace_cache_item) {
  111. replace_cache_item->cache_valid = 0;
  112. #ifdef CONFIG_CACHE_PROFILE
  113. printk("replace cache %d \n",replace_cache_index);
  114. #endif
  115. return replace_cache_item;
  116. }
  117. return NULL;
  118. }
  119. #endif