hal_srng.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865
  1. /*
  2. * Copyright (c) 2016-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include "hal_hw_headers.h"
  19. #include "hal_api.h"
  20. #include "target_type.h"
  21. #include "wcss_version.h"
  22. #include "qdf_module.h"
  23. #ifdef QCA_WIFI_QCA8074
  24. void hal_qca6290_attach(struct hal_soc *hal);
  25. #endif
  26. #ifdef QCA_WIFI_QCA8074
  27. void hal_qca8074_attach(struct hal_soc *hal);
  28. #endif
  29. #if defined(QCA_WIFI_QCA8074V2) || defined(QCA_WIFI_QCA6018)
  30. void hal_qca8074v2_attach(struct hal_soc *hal);
  31. #endif
  32. #ifdef QCA_WIFI_QCA6390
  33. void hal_qca6390_attach(struct hal_soc *hal);
  34. #endif
  35. #ifdef QCA_WIFI_QCA6490
  36. void hal_qca6490_attach(struct hal_soc *hal);
  37. #endif
  38. #ifdef QCA_WIFI_QCN9000
  39. void hal_qcn9000_attach(struct hal_soc *hal);
  40. #endif
  41. #ifdef ENABLE_VERBOSE_DEBUG
  42. bool is_hal_verbose_debug_enabled;
  43. #endif
  44. /**
  45. * hal_get_srng_ring_id() - get the ring id of a descriped ring
  46. * @hal: hal_soc data structure
  47. * @ring_type: type enum describing the ring
  48. * @ring_num: which ring of the ring type
  49. * @mac_id: which mac does the ring belong to (or 0 for non-lmac rings)
  50. *
  51. * Return: the ring id or -EINVAL if the ring does not exist.
  52. */
  53. static int hal_get_srng_ring_id(struct hal_soc *hal, int ring_type,
  54. int ring_num, int mac_id)
  55. {
  56. struct hal_hw_srng_config *ring_config =
  57. HAL_SRNG_CONFIG(hal, ring_type);
  58. int ring_id;
  59. if (ring_num >= ring_config->max_rings) {
  60. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_INFO,
  61. "%s: ring_num exceeded maximum no. of supported rings",
  62. __func__);
  63. /* TODO: This is a programming error. Assert if this happens */
  64. return -EINVAL;
  65. }
  66. if (ring_config->lmac_ring) {
  67. ring_id = ring_config->start_ring_id + ring_num +
  68. (mac_id * HAL_MAX_RINGS_PER_LMAC);
  69. } else {
  70. ring_id = ring_config->start_ring_id + ring_num;
  71. }
  72. return ring_id;
  73. }
  74. static struct hal_srng *hal_get_srng(struct hal_soc *hal, int ring_id)
  75. {
  76. /* TODO: Should we allocate srng structures dynamically? */
  77. return &(hal->srng_list[ring_id]);
  78. }
  79. #define HP_OFFSET_IN_REG_START 1
  80. #define OFFSET_FROM_HP_TO_TP 4
  81. static void hal_update_srng_hp_tp_address(struct hal_soc *hal_soc,
  82. int shadow_config_index,
  83. int ring_type,
  84. int ring_num)
  85. {
  86. struct hal_srng *srng;
  87. int ring_id;
  88. struct hal_hw_srng_config *ring_config =
  89. HAL_SRNG_CONFIG(hal_soc, ring_type);
  90. ring_id = hal_get_srng_ring_id(hal_soc, ring_type, ring_num, 0);
  91. if (ring_id < 0)
  92. return;
  93. srng = hal_get_srng(hal_soc, ring_id);
  94. if (ring_config->ring_dir == HAL_SRNG_DST_RING) {
  95. srng->u.dst_ring.tp_addr = SHADOW_REGISTER(shadow_config_index)
  96. + hal_soc->dev_base_addr;
  97. hal_debug("tp_addr=%pK dev base addr %pK index %u",
  98. srng->u.dst_ring.tp_addr, hal_soc->dev_base_addr,
  99. shadow_config_index);
  100. } else {
  101. srng->u.src_ring.hp_addr = SHADOW_REGISTER(shadow_config_index)
  102. + hal_soc->dev_base_addr;
  103. hal_debug("hp_addr=%pK dev base addr %pK index %u",
  104. srng->u.src_ring.hp_addr,
  105. hal_soc->dev_base_addr, shadow_config_index);
  106. }
  107. }
  108. QDF_STATUS hal_set_one_shadow_config(void *hal_soc,
  109. int ring_type,
  110. int ring_num)
  111. {
  112. uint32_t target_register;
  113. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  114. struct hal_hw_srng_config *srng_config = &hal->hw_srng_table[ring_type];
  115. int shadow_config_index = hal->num_shadow_registers_configured;
  116. if (shadow_config_index >= MAX_SHADOW_REGISTERS) {
  117. QDF_ASSERT(0);
  118. return QDF_STATUS_E_RESOURCES;
  119. }
  120. hal->num_shadow_registers_configured++;
  121. target_register = srng_config->reg_start[HP_OFFSET_IN_REG_START];
  122. target_register += (srng_config->reg_size[HP_OFFSET_IN_REG_START]
  123. *ring_num);
  124. /* if the ring is a dst ring, we need to shadow the tail pointer */
  125. if (srng_config->ring_dir == HAL_SRNG_DST_RING)
  126. target_register += OFFSET_FROM_HP_TO_TP;
  127. hal->shadow_config[shadow_config_index].addr = target_register;
  128. /* update hp/tp addr in the hal_soc structure*/
  129. hal_update_srng_hp_tp_address(hal_soc, shadow_config_index, ring_type,
  130. ring_num);
  131. hal_debug("target_reg %x, shadow register 0x%x shadow_index 0x%x, ring_type %d, ring num %d",
  132. target_register,
  133. SHADOW_REGISTER(shadow_config_index),
  134. shadow_config_index,
  135. ring_type, ring_num);
  136. return QDF_STATUS_SUCCESS;
  137. }
  138. qdf_export_symbol(hal_set_one_shadow_config);
  139. QDF_STATUS hal_construct_shadow_config(void *hal_soc)
  140. {
  141. int ring_type, ring_num;
  142. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  143. for (ring_type = 0; ring_type < MAX_RING_TYPES; ring_type++) {
  144. struct hal_hw_srng_config *srng_config =
  145. &hal->hw_srng_table[ring_type];
  146. if (ring_type == CE_SRC ||
  147. ring_type == CE_DST ||
  148. ring_type == CE_DST_STATUS)
  149. continue;
  150. if (srng_config->lmac_ring)
  151. continue;
  152. for (ring_num = 0; ring_num < srng_config->max_rings;
  153. ring_num++)
  154. hal_set_one_shadow_config(hal_soc, ring_type, ring_num);
  155. }
  156. return QDF_STATUS_SUCCESS;
  157. }
  158. qdf_export_symbol(hal_construct_shadow_config);
  159. void hal_get_shadow_config(void *hal_soc,
  160. struct pld_shadow_reg_v2_cfg **shadow_config,
  161. int *num_shadow_registers_configured)
  162. {
  163. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  164. *shadow_config = hal->shadow_config;
  165. *num_shadow_registers_configured =
  166. hal->num_shadow_registers_configured;
  167. }
  168. qdf_export_symbol(hal_get_shadow_config);
  169. static void hal_validate_shadow_register(struct hal_soc *hal,
  170. uint32_t *destination,
  171. uint32_t *shadow_address)
  172. {
  173. unsigned int index;
  174. uint32_t *shadow_0_offset = SHADOW_REGISTER(0) + hal->dev_base_addr;
  175. int destination_ba_offset =
  176. ((char *)destination) - (char *)hal->dev_base_addr;
  177. index = shadow_address - shadow_0_offset;
  178. if (index >= MAX_SHADOW_REGISTERS) {
  179. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  180. "%s: index %x out of bounds", __func__, index);
  181. goto error;
  182. } else if (hal->shadow_config[index].addr != destination_ba_offset) {
  183. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  184. "%s: sanity check failure, expected %x, found %x",
  185. __func__, destination_ba_offset,
  186. hal->shadow_config[index].addr);
  187. goto error;
  188. }
  189. return;
  190. error:
  191. qdf_print("%s: baddr %pK, desination %pK, shadow_address %pK s0offset %pK index %x",
  192. __func__, hal->dev_base_addr, destination, shadow_address,
  193. shadow_0_offset, index);
  194. QDF_BUG(0);
  195. return;
  196. }
  197. static void hal_target_based_configure(struct hal_soc *hal)
  198. {
  199. switch (hal->target_type) {
  200. #ifdef QCA_WIFI_QCA6290
  201. case TARGET_TYPE_QCA6290:
  202. hal->use_register_windowing = true;
  203. hal_qca6290_attach(hal);
  204. break;
  205. #endif
  206. #ifdef QCA_WIFI_QCA6390
  207. case TARGET_TYPE_QCA6390:
  208. hal->use_register_windowing = true;
  209. hal_qca6390_attach(hal);
  210. break;
  211. #endif
  212. #ifdef QCA_WIFI_QCA6490
  213. case TARGET_TYPE_QCA6490:
  214. hal->use_register_windowing = true;
  215. hal_qca6490_attach(hal);
  216. break;
  217. #endif
  218. #if defined(QCA_WIFI_QCA8074) && defined(WIFI_TARGET_TYPE_3_0)
  219. case TARGET_TYPE_QCA8074:
  220. hal_qca8074_attach(hal);
  221. break;
  222. #endif
  223. #if defined(QCA_WIFI_QCA8074V2)
  224. case TARGET_TYPE_QCA8074V2:
  225. hal_qca8074v2_attach(hal);
  226. break;
  227. #endif
  228. #if defined(QCA_WIFI_QCA6018)
  229. case TARGET_TYPE_QCA6018:
  230. hal_qca8074v2_attach(hal);
  231. break;
  232. #endif
  233. #ifdef QCA_WIFI_QCN9000
  234. case TARGET_TYPE_QCN9000:
  235. hal->use_register_windowing = true;
  236. hal_qcn9000_attach(hal);
  237. break;
  238. #endif
  239. default:
  240. break;
  241. }
  242. }
  243. uint32_t hal_get_target_type(hal_soc_handle_t hal_soc_hdl)
  244. {
  245. struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
  246. struct hif_target_info *tgt_info =
  247. hif_get_target_info_handle(hal_soc->hif_handle);
  248. return tgt_info->target_type;
  249. }
  250. qdf_export_symbol(hal_get_target_type);
  251. /**
  252. * hal_attach - Initialize HAL layer
  253. * @hif_handle: Opaque HIF handle
  254. * @qdf_dev: QDF device
  255. *
  256. * Return: Opaque HAL SOC handle
  257. * NULL on failure (if given ring is not available)
  258. *
  259. * This function should be called as part of HIF initialization (for accessing
  260. * copy engines). DP layer will get hal_soc handle using hif_get_hal_handle()
  261. *
  262. */
  263. void *hal_attach(struct hif_opaque_softc *hif_handle, qdf_device_t qdf_dev)
  264. {
  265. struct hal_soc *hal;
  266. int i;
  267. hal = qdf_mem_malloc(sizeof(*hal));
  268. if (!hal) {
  269. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  270. "%s: hal_soc allocation failed", __func__);
  271. goto fail0;
  272. }
  273. qdf_minidump_log(hal, sizeof(*hal), "hal_soc");
  274. hal->hif_handle = hif_handle;
  275. hal->dev_base_addr = hif_get_dev_ba(hif_handle);
  276. hal->qdf_dev = qdf_dev;
  277. hal->shadow_rdptr_mem_vaddr = (uint32_t *)qdf_mem_alloc_consistent(
  278. qdf_dev, qdf_dev->dev, sizeof(*(hal->shadow_rdptr_mem_vaddr)) *
  279. HAL_SRNG_ID_MAX, &(hal->shadow_rdptr_mem_paddr));
  280. if (!hal->shadow_rdptr_mem_paddr) {
  281. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  282. "%s: hal->shadow_rdptr_mem_paddr allocation failed",
  283. __func__);
  284. goto fail1;
  285. }
  286. qdf_mem_zero(hal->shadow_rdptr_mem_vaddr,
  287. sizeof(*(hal->shadow_rdptr_mem_vaddr)) * HAL_SRNG_ID_MAX);
  288. hal->shadow_wrptr_mem_vaddr =
  289. (uint32_t *)qdf_mem_alloc_consistent(qdf_dev, qdf_dev->dev,
  290. sizeof(*(hal->shadow_wrptr_mem_vaddr)) * HAL_MAX_LMAC_RINGS,
  291. &(hal->shadow_wrptr_mem_paddr));
  292. if (!hal->shadow_wrptr_mem_vaddr) {
  293. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  294. "%s: hal->shadow_wrptr_mem_vaddr allocation failed",
  295. __func__);
  296. goto fail2;
  297. }
  298. qdf_mem_zero(hal->shadow_wrptr_mem_vaddr,
  299. sizeof(*(hal->shadow_wrptr_mem_vaddr)) * HAL_MAX_LMAC_RINGS);
  300. for (i = 0; i < HAL_SRNG_ID_MAX; i++) {
  301. hal->srng_list[i].initialized = 0;
  302. hal->srng_list[i].ring_id = i;
  303. }
  304. qdf_spinlock_create(&hal->register_access_lock);
  305. hal->register_window = 0;
  306. hal->target_type = hal_get_target_type(hal_soc_to_hal_soc_handle(hal));
  307. hal_target_based_configure(hal);
  308. /**
  309. * Indicate Initialization of srngs to avoid force wake
  310. * as umac power collapse is not enabled yet
  311. */
  312. hal->init_phase = true;
  313. return (void *)hal;
  314. fail2:
  315. qdf_mem_free_consistent(qdf_dev, qdf_dev->dev,
  316. sizeof(*(hal->shadow_rdptr_mem_vaddr)) * HAL_SRNG_ID_MAX,
  317. hal->shadow_rdptr_mem_vaddr, hal->shadow_rdptr_mem_paddr, 0);
  318. fail1:
  319. qdf_mem_free(hal);
  320. fail0:
  321. return NULL;
  322. }
  323. qdf_export_symbol(hal_attach);
  324. /**
  325. * hal_mem_info - Retrieve hal memory base address
  326. *
  327. * @hal_soc: Opaque HAL SOC handle
  328. * @mem: pointer to structure to be updated with hal mem info
  329. */
  330. void hal_get_meminfo(hal_soc_handle_t hal_soc_hdl, struct hal_mem_info *mem)
  331. {
  332. struct hal_soc *hal = (struct hal_soc *)hal_soc_hdl;
  333. mem->dev_base_addr = (void *)hal->dev_base_addr;
  334. mem->shadow_rdptr_mem_vaddr = (void *)hal->shadow_rdptr_mem_vaddr;
  335. mem->shadow_wrptr_mem_vaddr = (void *)hal->shadow_wrptr_mem_vaddr;
  336. mem->shadow_rdptr_mem_paddr = (void *)hal->shadow_rdptr_mem_paddr;
  337. mem->shadow_wrptr_mem_paddr = (void *)hal->shadow_wrptr_mem_paddr;
  338. hif_read_phy_mem_base((void *)hal->hif_handle,
  339. (qdf_dma_addr_t *)&mem->dev_base_paddr);
  340. return;
  341. }
  342. qdf_export_symbol(hal_get_meminfo);
  343. /**
  344. * hal_detach - Detach HAL layer
  345. * @hal_soc: HAL SOC handle
  346. *
  347. * Return: Opaque HAL SOC handle
  348. * NULL on failure (if given ring is not available)
  349. *
  350. * This function should be called as part of HIF initialization (for accessing
  351. * copy engines). DP layer will get hal_soc handle using hif_get_hal_handle()
  352. *
  353. */
  354. extern void hal_detach(void *hal_soc)
  355. {
  356. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  357. qdf_mem_free_consistent(hal->qdf_dev, hal->qdf_dev->dev,
  358. sizeof(*(hal->shadow_rdptr_mem_vaddr)) * HAL_SRNG_ID_MAX,
  359. hal->shadow_rdptr_mem_vaddr, hal->shadow_rdptr_mem_paddr, 0);
  360. qdf_mem_free_consistent(hal->qdf_dev, hal->qdf_dev->dev,
  361. sizeof(*(hal->shadow_wrptr_mem_vaddr)) * HAL_MAX_LMAC_RINGS,
  362. hal->shadow_wrptr_mem_vaddr, hal->shadow_wrptr_mem_paddr, 0);
  363. qdf_minidump_remove(hal);
  364. qdf_mem_free(hal);
  365. return;
  366. }
  367. qdf_export_symbol(hal_detach);
  368. /**
  369. * hal_ce_dst_setup - Initialize CE destination ring registers
  370. * @hal_soc: HAL SOC handle
  371. * @srng: SRNG ring pointer
  372. */
  373. static inline void hal_ce_dst_setup(struct hal_soc *hal, struct hal_srng *srng,
  374. int ring_num)
  375. {
  376. uint32_t reg_val = 0;
  377. uint32_t reg_addr;
  378. struct hal_hw_srng_config *ring_config =
  379. HAL_SRNG_CONFIG(hal, CE_DST);
  380. /* set DEST_MAX_LENGTH according to ce assignment */
  381. reg_addr = HWIO_WFSS_CE_CHANNEL_DST_R0_DEST_CTRL_ADDR(
  382. ring_config->reg_start[R0_INDEX] +
  383. (ring_num * ring_config->reg_size[R0_INDEX]));
  384. reg_val = HAL_REG_READ(hal, reg_addr);
  385. reg_val &= ~HWIO_WFSS_CE_CHANNEL_DST_R0_DEST_CTRL_DEST_MAX_LENGTH_BMSK;
  386. reg_val |= srng->u.dst_ring.max_buffer_length &
  387. HWIO_WFSS_CE_CHANNEL_DST_R0_DEST_CTRL_DEST_MAX_LENGTH_BMSK;
  388. HAL_REG_WRITE(hal, reg_addr, reg_val);
  389. }
  390. /**
  391. * hal_reo_read_write_ctrl_ix - Read or write REO_DESTINATION_RING_CTRL_IX
  392. * @hal: HAL SOC handle
  393. * @read: boolean value to indicate if read or write
  394. * @ix0: pointer to store IX0 reg value
  395. * @ix1: pointer to store IX1 reg value
  396. * @ix2: pointer to store IX2 reg value
  397. * @ix3: pointer to store IX3 reg value
  398. */
  399. void hal_reo_read_write_ctrl_ix(hal_soc_handle_t hal_soc_hdl, bool read,
  400. uint32_t *ix0, uint32_t *ix1,
  401. uint32_t *ix2, uint32_t *ix3)
  402. {
  403. uint32_t reg_offset;
  404. struct hal_soc *hal = (struct hal_soc *)hal_soc_hdl;
  405. if (read) {
  406. if (ix0) {
  407. reg_offset =
  408. HWIO_REO_R0_DESTINATION_RING_CTRL_IX_0_ADDR(
  409. SEQ_WCSS_UMAC_REO_REG_OFFSET);
  410. *ix0 = HAL_REG_READ(hal, reg_offset);
  411. }
  412. if (ix1) {
  413. reg_offset =
  414. HWIO_REO_R0_DESTINATION_RING_CTRL_IX_1_ADDR(
  415. SEQ_WCSS_UMAC_REO_REG_OFFSET);
  416. *ix1 = HAL_REG_READ(hal, reg_offset);
  417. }
  418. if (ix2) {
  419. reg_offset =
  420. HWIO_REO_R0_DESTINATION_RING_CTRL_IX_2_ADDR(
  421. SEQ_WCSS_UMAC_REO_REG_OFFSET);
  422. *ix2 = HAL_REG_READ(hal, reg_offset);
  423. }
  424. if (ix3) {
  425. reg_offset =
  426. HWIO_REO_R0_DESTINATION_RING_CTRL_IX_3_ADDR(
  427. SEQ_WCSS_UMAC_REO_REG_OFFSET);
  428. *ix3 = HAL_REG_READ(hal, reg_offset);
  429. }
  430. } else {
  431. if (ix0) {
  432. reg_offset =
  433. HWIO_REO_R0_DESTINATION_RING_CTRL_IX_0_ADDR(
  434. SEQ_WCSS_UMAC_REO_REG_OFFSET);
  435. HAL_REG_WRITE_CONFIRM(hal, reg_offset, *ix0);
  436. }
  437. if (ix1) {
  438. reg_offset =
  439. HWIO_REO_R0_DESTINATION_RING_CTRL_IX_1_ADDR(
  440. SEQ_WCSS_UMAC_REO_REG_OFFSET);
  441. HAL_REG_WRITE(hal, reg_offset, *ix1);
  442. }
  443. if (ix2) {
  444. reg_offset =
  445. HWIO_REO_R0_DESTINATION_RING_CTRL_IX_2_ADDR(
  446. SEQ_WCSS_UMAC_REO_REG_OFFSET);
  447. HAL_REG_WRITE(hal, reg_offset, *ix2);
  448. }
  449. if (ix3) {
  450. reg_offset =
  451. HWIO_REO_R0_DESTINATION_RING_CTRL_IX_3_ADDR(
  452. SEQ_WCSS_UMAC_REO_REG_OFFSET);
  453. HAL_REG_WRITE(hal, reg_offset, *ix3);
  454. }
  455. }
  456. }
  457. /**
  458. * hal_srng_dst_set_hp_paddr() - Set physical address to dest ring head pointer
  459. * @srng: sring pointer
  460. * @paddr: physical address
  461. */
  462. void hal_srng_dst_set_hp_paddr(struct hal_srng *srng,
  463. uint64_t paddr)
  464. {
  465. SRNG_DST_REG_WRITE(srng, HP_ADDR_LSB,
  466. paddr & 0xffffffff);
  467. SRNG_DST_REG_WRITE(srng, HP_ADDR_MSB,
  468. paddr >> 32);
  469. }
  470. /**
  471. * hal_srng_dst_init_hp() - Initilaize destination ring head pointer
  472. * @srng: sring pointer
  473. * @vaddr: virtual address
  474. */
  475. void hal_srng_dst_init_hp(struct hal_srng *srng,
  476. uint32_t *vaddr)
  477. {
  478. if (!srng)
  479. return;
  480. srng->u.dst_ring.hp_addr = vaddr;
  481. SRNG_DST_REG_WRITE(srng, HP, srng->u.dst_ring.cached_hp);
  482. if (vaddr) {
  483. *srng->u.dst_ring.hp_addr = srng->u.dst_ring.cached_hp;
  484. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
  485. "hp_addr=%pK, cached_hp=%d, hp=%d",
  486. (void *)srng->u.dst_ring.hp_addr,
  487. srng->u.dst_ring.cached_hp,
  488. *srng->u.dst_ring.hp_addr);
  489. }
  490. }
  491. /**
  492. * hal_srng_hw_init - Private function to initialize SRNG HW
  493. * @hal_soc: HAL SOC handle
  494. * @srng: SRNG ring pointer
  495. */
  496. static inline void hal_srng_hw_init(struct hal_soc *hal,
  497. struct hal_srng *srng)
  498. {
  499. if (srng->ring_dir == HAL_SRNG_SRC_RING)
  500. hal_srng_src_hw_init(hal, srng);
  501. else
  502. hal_srng_dst_hw_init(hal, srng);
  503. }
  504. #ifdef CONFIG_SHADOW_V2
  505. #define ignore_shadow false
  506. #define CHECK_SHADOW_REGISTERS true
  507. #else
  508. #define ignore_shadow true
  509. #define CHECK_SHADOW_REGISTERS false
  510. #endif
  511. /**
  512. * hal_srng_setup - Initialize HW SRNG ring.
  513. * @hal_soc: Opaque HAL SOC handle
  514. * @ring_type: one of the types from hal_ring_type
  515. * @ring_num: Ring number if there are multiple rings of same type (staring
  516. * from 0)
  517. * @mac_id: valid MAC Id should be passed if ring type is one of lmac rings
  518. * @ring_params: SRNG ring params in hal_srng_params structure.
  519. * Callers are expected to allocate contiguous ring memory of size
  520. * 'num_entries * entry_size' bytes and pass the physical and virtual base
  521. * addresses through 'ring_base_paddr' and 'ring_base_vaddr' in
  522. * hal_srng_params structure. Ring base address should be 8 byte aligned
  523. * and size of each ring entry should be queried using the API
  524. * hal_srng_get_entrysize
  525. *
  526. * Return: Opaque pointer to ring on success
  527. * NULL on failure (if given ring is not available)
  528. */
  529. void *hal_srng_setup(void *hal_soc, int ring_type, int ring_num,
  530. int mac_id, struct hal_srng_params *ring_params)
  531. {
  532. int ring_id;
  533. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  534. struct hal_srng *srng;
  535. struct hal_hw_srng_config *ring_config =
  536. HAL_SRNG_CONFIG(hal, ring_type);
  537. void *dev_base_addr;
  538. int i;
  539. ring_id = hal_get_srng_ring_id(hal_soc, ring_type, ring_num, mac_id);
  540. if (ring_id < 0)
  541. return NULL;
  542. hal_verbose_debug("mac_id %d ring_id %d", mac_id, ring_id);
  543. srng = hal_get_srng(hal_soc, ring_id);
  544. if (srng->initialized) {
  545. hal_verbose_debug("Ring (ring_type, ring_num) already initialized");
  546. return NULL;
  547. }
  548. dev_base_addr = hal->dev_base_addr;
  549. srng->ring_id = ring_id;
  550. srng->ring_dir = ring_config->ring_dir;
  551. srng->ring_base_paddr = ring_params->ring_base_paddr;
  552. srng->ring_base_vaddr = ring_params->ring_base_vaddr;
  553. srng->entry_size = ring_config->entry_size;
  554. srng->num_entries = ring_params->num_entries;
  555. srng->ring_size = srng->num_entries * srng->entry_size;
  556. srng->ring_size_mask = srng->ring_size - 1;
  557. srng->msi_addr = ring_params->msi_addr;
  558. srng->msi_data = ring_params->msi_data;
  559. srng->intr_timer_thres_us = ring_params->intr_timer_thres_us;
  560. srng->intr_batch_cntr_thres_entries =
  561. ring_params->intr_batch_cntr_thres_entries;
  562. srng->hal_soc = hal_soc;
  563. for (i = 0 ; i < MAX_SRNG_REG_GROUPS; i++) {
  564. srng->hwreg_base[i] = dev_base_addr + ring_config->reg_start[i]
  565. + (ring_num * ring_config->reg_size[i]);
  566. }
  567. /* Zero out the entire ring memory */
  568. qdf_mem_zero(srng->ring_base_vaddr, (srng->entry_size *
  569. srng->num_entries) << 2);
  570. srng->flags = ring_params->flags;
  571. #ifdef BIG_ENDIAN_HOST
  572. /* TODO: See if we should we get these flags from caller */
  573. srng->flags |= HAL_SRNG_DATA_TLV_SWAP;
  574. srng->flags |= HAL_SRNG_MSI_SWAP;
  575. srng->flags |= HAL_SRNG_RING_PTR_SWAP;
  576. #endif
  577. if (srng->ring_dir == HAL_SRNG_SRC_RING) {
  578. srng->u.src_ring.hp = 0;
  579. srng->u.src_ring.reap_hp = srng->ring_size -
  580. srng->entry_size;
  581. srng->u.src_ring.tp_addr =
  582. &(hal->shadow_rdptr_mem_vaddr[ring_id]);
  583. srng->u.src_ring.low_threshold =
  584. ring_params->low_threshold * srng->entry_size;
  585. if (ring_config->lmac_ring) {
  586. /* For LMAC rings, head pointer updates will be done
  587. * through FW by writing to a shared memory location
  588. */
  589. srng->u.src_ring.hp_addr =
  590. &(hal->shadow_wrptr_mem_vaddr[ring_id -
  591. HAL_SRNG_LMAC1_ID_START]);
  592. srng->flags |= HAL_SRNG_LMAC_RING;
  593. } else if (ignore_shadow || (srng->u.src_ring.hp_addr == 0)) {
  594. srng->u.src_ring.hp_addr = SRNG_SRC_ADDR(srng, HP);
  595. if (CHECK_SHADOW_REGISTERS) {
  596. QDF_TRACE(QDF_MODULE_ID_TXRX,
  597. QDF_TRACE_LEVEL_ERROR,
  598. "%s: Ring (%d, %d) missing shadow config",
  599. __func__, ring_type, ring_num);
  600. }
  601. } else {
  602. hal_validate_shadow_register(hal,
  603. SRNG_SRC_ADDR(srng, HP),
  604. srng->u.src_ring.hp_addr);
  605. }
  606. } else {
  607. /* During initialization loop count in all the descriptors
  608. * will be set to zero, and HW will set it to 1 on completing
  609. * descriptor update in first loop, and increments it by 1 on
  610. * subsequent loops (loop count wraps around after reaching
  611. * 0xffff). The 'loop_cnt' in SW ring state is the expected
  612. * loop count in descriptors updated by HW (to be processed
  613. * by SW).
  614. */
  615. srng->u.dst_ring.loop_cnt = 1;
  616. srng->u.dst_ring.tp = 0;
  617. srng->u.dst_ring.hp_addr =
  618. &(hal->shadow_rdptr_mem_vaddr[ring_id]);
  619. if (ring_config->lmac_ring) {
  620. /* For LMAC rings, tail pointer updates will be done
  621. * through FW by writing to a shared memory location
  622. */
  623. srng->u.dst_ring.tp_addr =
  624. &(hal->shadow_wrptr_mem_vaddr[ring_id -
  625. HAL_SRNG_LMAC1_ID_START]);
  626. srng->flags |= HAL_SRNG_LMAC_RING;
  627. } else if (ignore_shadow || srng->u.dst_ring.tp_addr == 0) {
  628. srng->u.dst_ring.tp_addr = SRNG_DST_ADDR(srng, TP);
  629. if (CHECK_SHADOW_REGISTERS) {
  630. QDF_TRACE(QDF_MODULE_ID_TXRX,
  631. QDF_TRACE_LEVEL_ERROR,
  632. "%s: Ring (%d, %d) missing shadow config",
  633. __func__, ring_type, ring_num);
  634. }
  635. } else {
  636. hal_validate_shadow_register(hal,
  637. SRNG_DST_ADDR(srng, TP),
  638. srng->u.dst_ring.tp_addr);
  639. }
  640. }
  641. if (!(ring_config->lmac_ring)) {
  642. hal_srng_hw_init(hal, srng);
  643. if (ring_type == CE_DST) {
  644. srng->u.dst_ring.max_buffer_length = ring_params->max_buffer_length;
  645. hal_ce_dst_setup(hal, srng, ring_num);
  646. }
  647. }
  648. SRNG_LOCK_INIT(&srng->lock);
  649. srng->srng_event = 0;
  650. srng->initialized = true;
  651. return (void *)srng;
  652. }
  653. qdf_export_symbol(hal_srng_setup);
  654. /**
  655. * hal_srng_cleanup - Deinitialize HW SRNG ring.
  656. * @hal_soc: Opaque HAL SOC handle
  657. * @hal_srng: Opaque HAL SRNG pointer
  658. */
  659. void hal_srng_cleanup(void *hal_soc, hal_ring_handle_t hal_ring_hdl)
  660. {
  661. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  662. SRNG_LOCK_DESTROY(&srng->lock);
  663. srng->initialized = 0;
  664. }
  665. qdf_export_symbol(hal_srng_cleanup);
  666. /**
  667. * hal_srng_get_entrysize - Returns size of ring entry in bytes
  668. * @hal_soc: Opaque HAL SOC handle
  669. * @ring_type: one of the types from hal_ring_type
  670. *
  671. */
  672. uint32_t hal_srng_get_entrysize(void *hal_soc, int ring_type)
  673. {
  674. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  675. struct hal_hw_srng_config *ring_config =
  676. HAL_SRNG_CONFIG(hal, ring_type);
  677. return ring_config->entry_size << 2;
  678. }
  679. qdf_export_symbol(hal_srng_get_entrysize);
  680. /**
  681. * hal_srng_max_entries - Returns maximum possible number of ring entries
  682. * @hal_soc: Opaque HAL SOC handle
  683. * @ring_type: one of the types from hal_ring_type
  684. *
  685. * Return: Maximum number of entries for the given ring_type
  686. */
  687. uint32_t hal_srng_max_entries(void *hal_soc, int ring_type)
  688. {
  689. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  690. struct hal_hw_srng_config *ring_config =
  691. HAL_SRNG_CONFIG(hal, ring_type);
  692. return ring_config->max_size / ring_config->entry_size;
  693. }
  694. qdf_export_symbol(hal_srng_max_entries);
  695. enum hal_srng_dir hal_srng_get_dir(void *hal_soc, int ring_type)
  696. {
  697. struct hal_soc *hal = (struct hal_soc *)hal_soc;
  698. struct hal_hw_srng_config *ring_config =
  699. HAL_SRNG_CONFIG(hal, ring_type);
  700. return ring_config->ring_dir;
  701. }
  702. /**
  703. * hal_srng_dump - Dump ring status
  704. * @srng: hal srng pointer
  705. */
  706. void hal_srng_dump(struct hal_srng *srng)
  707. {
  708. if (srng->ring_dir == HAL_SRNG_SRC_RING) {
  709. hal_debug("=== SRC RING %d ===", srng->ring_id);
  710. hal_debug("hp %u, reap_hp %u, tp %u, cached tp %u",
  711. srng->u.src_ring.hp,
  712. srng->u.src_ring.reap_hp,
  713. *srng->u.src_ring.tp_addr,
  714. srng->u.src_ring.cached_tp);
  715. } else {
  716. hal_debug("=== DST RING %d ===", srng->ring_id);
  717. hal_debug("tp %u, hp %u, cached tp %u, loop_cnt %u",
  718. srng->u.dst_ring.tp,
  719. *srng->u.dst_ring.hp_addr,
  720. srng->u.dst_ring.cached_hp,
  721. srng->u.dst_ring.loop_cnt);
  722. }
  723. }
  724. /**
  725. * hal_get_srng_params - Retrieve SRNG parameters for a given ring from HAL
  726. *
  727. * @hal_soc: Opaque HAL SOC handle
  728. * @hal_ring: Ring pointer (Source or Destination ring)
  729. * @ring_params: SRNG parameters will be returned through this structure
  730. */
  731. extern void hal_get_srng_params(hal_soc_handle_t hal_soc_hdl,
  732. hal_ring_handle_t hal_ring_hdl,
  733. struct hal_srng_params *ring_params)
  734. {
  735. struct hal_srng *srng = (struct hal_srng *)hal_ring_hdl;
  736. int i =0;
  737. ring_params->ring_id = srng->ring_id;
  738. ring_params->ring_dir = srng->ring_dir;
  739. ring_params->entry_size = srng->entry_size;
  740. ring_params->ring_base_paddr = srng->ring_base_paddr;
  741. ring_params->ring_base_vaddr = srng->ring_base_vaddr;
  742. ring_params->num_entries = srng->num_entries;
  743. ring_params->msi_addr = srng->msi_addr;
  744. ring_params->msi_data = srng->msi_data;
  745. ring_params->intr_timer_thres_us = srng->intr_timer_thres_us;
  746. ring_params->intr_batch_cntr_thres_entries =
  747. srng->intr_batch_cntr_thres_entries;
  748. ring_params->low_threshold = srng->u.src_ring.low_threshold;
  749. ring_params->flags = srng->flags;
  750. ring_params->ring_id = srng->ring_id;
  751. for (i = 0 ; i < MAX_SRNG_REG_GROUPS; i++)
  752. ring_params->hwreg_base[i] = srng->hwreg_base[i];
  753. }
  754. qdf_export_symbol(hal_get_srng_params);
  755. #ifdef FORCE_WAKE
  756. void hal_set_init_phase(hal_soc_handle_t soc, bool init_phase)
  757. {
  758. struct hal_soc *hal_soc = (struct hal_soc *)soc;
  759. hal_soc->init_phase = init_phase;
  760. }
  761. #endif /* FORCE_WAKE */