msm_cvp_platform.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/debugfs.h>
  6. #include <linux/dma-mapping.h>
  7. #include <linux/init.h>
  8. #include <linux/ioctl.h>
  9. #include <linux/list.h>
  10. #include <linux/module.h>
  11. #include <linux/of_platform.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/slab.h>
  14. #include <linux/types.h>
  15. #include <linux/version.h>
  16. #include <linux/io.h>
  17. #include <linux/of_fdt.h>
  18. #include "msm_cvp_internal.h"
  19. #include "msm_cvp_debug.h"
  20. #define DDR_TYPE_LPDDR4 0x6
  21. #define DDR_TYPE_LPDDR4X 0x7
  22. #define DDR_TYPE_LPDDR4Y 0x8
  23. #define DDR_TYPE_LPDDR5 0x9
  24. #define UBWC_CONFIG(mco, mlo, hbo, bslo, bso, rs, mc, ml, hbb, bsl, bsp) \
  25. { \
  26. .override_bit_info.max_channel_override = mco, \
  27. .override_bit_info.mal_length_override = mlo, \
  28. .override_bit_info.hb_override = hbo, \
  29. .override_bit_info.bank_swzl_level_override = bslo, \
  30. .override_bit_info.bank_spreading_override = bso, \
  31. .override_bit_info.reserved = rs, \
  32. .max_channels = mc, \
  33. .mal_length = ml, \
  34. .highest_bank_bit = hbb, \
  35. .bank_swzl_level = bsl, \
  36. .bank_spreading = bsp, \
  37. }
  38. static struct msm_cvp_common_data default_common_data[] = {
  39. {
  40. .key = "qcom,never-unload-fw",
  41. .value = 1,
  42. },
  43. };
  44. static struct msm_cvp_common_data sm8250_common_data[] = {
  45. {
  46. .key = "qcom,never-unload-fw",
  47. .value = 1,
  48. },
  49. {
  50. .key = "qcom,sw-power-collapse",
  51. .value = 1,
  52. },
  53. {
  54. .key = "qcom,domain-attr-non-fatal-faults",
  55. .value = 1,
  56. },
  57. {
  58. .key = "qcom,max-secure-instances",
  59. .value = 2, /*
  60. * As per design driver allows 3rd
  61. * instance as well since the secure
  62. * flags were updated later for the
  63. * current instance. Hence total
  64. * secure sessions would be
  65. * max-secure-instances + 1.
  66. */
  67. },
  68. {
  69. .key = "qcom,max-hw-load",
  70. .value = 3916800, /*
  71. * 1920x1088/256 MBs@480fps. It is less
  72. * any other usecases (ex:
  73. * 3840x2160@120fps, 4096x2160@96ps,
  74. * 7680x4320@30fps)
  75. */
  76. },
  77. {
  78. .key = "qcom,power-collapse-delay",
  79. .value = 3000,
  80. },
  81. {
  82. .key = "qcom,hw-resp-timeout",
  83. .value = 2000,
  84. },
  85. {
  86. .key = "qcom,dsp-resp-timeout",
  87. .value = 1000
  88. },
  89. {
  90. .key = "qcom,debug-timeout",
  91. .value = 0,
  92. }
  93. };
  94. static struct msm_cvp_common_data sm8350_common_data[] = {
  95. {
  96. .key = "qcom,auto-pil",
  97. .value = 1,
  98. },
  99. {
  100. .key = "qcom,never-unload-fw",
  101. .value = 1,
  102. },
  103. {
  104. .key = "qcom,sw-power-collapse",
  105. .value = 1,
  106. },
  107. {
  108. .key = "qcom,domain-attr-non-fatal-faults",
  109. .value = 1,
  110. },
  111. {
  112. .key = "qcom,max-secure-instances",
  113. .value = 2, /*
  114. * As per design driver allows 3rd
  115. * instance as well since the secure
  116. * flags were updated later for the
  117. * current instance. Hence total
  118. * secure sessions would be
  119. * max-secure-instances + 1.
  120. */
  121. },
  122. {
  123. .key = "qcom,max-hw-load",
  124. .value = 3916800, /*
  125. * 1920x1088/256 MBs@480fps. It is less
  126. * any other usecases (ex:
  127. * 3840x2160@120fps, 4096x2160@96ps,
  128. * 7680x4320@30fps)
  129. */
  130. },
  131. {
  132. .key = "qcom,power-collapse-delay",
  133. .value = 3000,
  134. },
  135. {
  136. .key = "qcom,hw-resp-timeout",
  137. .value = 2000,
  138. },
  139. {
  140. .key = "qcom,dsp-resp-timeout",
  141. .value = 1000
  142. },
  143. {
  144. .key = "qcom,debug-timeout",
  145. .value = 0,
  146. }
  147. };
  148. /* Default UBWC config for LPDDR5 */
  149. static struct msm_cvp_ubwc_config_data kona_ubwc_data[] = {
  150. UBWC_CONFIG(1, 1, 1, 0, 0, 0, 8, 32, 16, 0, 0),
  151. };
  152. static struct msm_cvp_platform_data default_data = {
  153. .common_data = default_common_data,
  154. .common_data_length = ARRAY_SIZE(default_common_data),
  155. .sku_version = 0,
  156. .vpu_ver = VPU_VERSION_5,
  157. .ubwc_config = 0x0,
  158. };
  159. static struct msm_cvp_platform_data sm8250_data = {
  160. .common_data = sm8250_common_data,
  161. .common_data_length = ARRAY_SIZE(sm8250_common_data),
  162. .sku_version = 0,
  163. .vpu_ver = VPU_VERSION_5,
  164. .ubwc_config = kona_ubwc_data,
  165. };
  166. static struct msm_cvp_platform_data sm8350_data = {
  167. .common_data = sm8350_common_data,
  168. .common_data_length = ARRAY_SIZE(sm8350_common_data),
  169. .sku_version = 0,
  170. .vpu_ver = VPU_VERSION_5,
  171. .ubwc_config = kona_ubwc_data,
  172. };
  173. static const struct of_device_id msm_cvp_dt_match[] = {
  174. {
  175. .compatible = "qcom,lahaina-cvp",
  176. .data = &sm8350_data,
  177. },
  178. {
  179. .compatible = "qcom,kona-cvp",
  180. .data = &sm8250_data,
  181. },
  182. {},
  183. };
  184. MODULE_DEVICE_TABLE(of, msm_cvp_dt_match);
  185. void *cvp_get_drv_data(struct device *dev)
  186. {
  187. struct msm_cvp_platform_data *driver_data;
  188. const struct of_device_id *match;
  189. uint32_t ddr_type = DDR_TYPE_LPDDR5;
  190. driver_data = &default_data;
  191. if (!IS_ENABLED(CONFIG_OF) || !dev->of_node)
  192. goto exit;
  193. match = of_match_node(msm_cvp_dt_match, dev->of_node);
  194. if (!match)
  195. return NULL;
  196. driver_data = (struct msm_cvp_platform_data *)match->data;
  197. if (!strcmp(match->compatible, "qcom,lahaina-cvp")) {
  198. ddr_type = of_fdt_get_ddrtype();
  199. if (ddr_type == -ENOENT) {
  200. dprintk(CVP_ERR,
  201. "Failed to get ddr type, use LPDDR5\n");
  202. }
  203. if (driver_data->ubwc_config &&
  204. (ddr_type == DDR_TYPE_LPDDR4 ||
  205. ddr_type == DDR_TYPE_LPDDR4X))
  206. driver_data->ubwc_config->highest_bank_bit = 15;
  207. dprintk(CVP_CORE, "DDR Type 0x%x hbb 0x%x\n",
  208. ddr_type, driver_data->ubwc_config ?
  209. driver_data->ubwc_config->highest_bank_bit : -1);
  210. }
  211. exit:
  212. return driver_data;
  213. }