adf_c3xxx_hw_data.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /*
  2. This file is provided under a dual BSD/GPLv2 license. When using or
  3. redistributing this file, you may do so under either license.
  4. GPL LICENSE SUMMARY
  5. Copyright(c) 2014 Intel Corporation.
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of version 2 of the GNU General Public License as
  8. published by the Free Software Foundation.
  9. This program is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. General Public License for more details.
  13. Contact Information:
  14. qat-linux@intel.com
  15. BSD LICENSE
  16. Copyright(c) 2014 Intel Corporation.
  17. Redistribution and use in source and binary forms, with or without
  18. modification, are permitted provided that the following conditions
  19. are met:
  20. * Redistributions of source code must retain the above copyright
  21. notice, this list of conditions and the following disclaimer.
  22. * Redistributions in binary form must reproduce the above copyright
  23. notice, this list of conditions and the following disclaimer in
  24. the documentation and/or other materials provided with the
  25. distribution.
  26. * Neither the name of Intel Corporation nor the names of its
  27. contributors may be used to endorse or promote products derived
  28. from this software without specific prior written permission.
  29. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  30. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  31. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  32. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  33. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  34. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  35. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  36. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  37. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  39. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  40. */
  41. #include <adf_accel_devices.h>
  42. #include <adf_common_drv.h>
  43. #include <adf_pf2vf_msg.h>
  44. #include "adf_c3xxx_hw_data.h"
  45. /* Worker thread to service arbiter mappings based on dev SKUs */
  46. static const u32 thrd_to_arb_map_6_me_sku[] = {
  47. 0x12222AAA, 0x11222AAA, 0x12222AAA,
  48. 0x11222AAA, 0x12222AAA, 0x11222AAA
  49. };
  50. static struct adf_hw_device_class c3xxx_class = {
  51. .name = ADF_C3XXX_DEVICE_NAME,
  52. .type = DEV_C3XXX,
  53. .instances = 0
  54. };
  55. static u32 get_accel_mask(u32 fuse)
  56. {
  57. return (~fuse) >> ADF_C3XXX_ACCELERATORS_REG_OFFSET &
  58. ADF_C3XXX_ACCELERATORS_MASK;
  59. }
  60. static u32 get_ae_mask(u32 fuse)
  61. {
  62. return (~fuse) & ADF_C3XXX_ACCELENGINES_MASK;
  63. }
  64. static u32 get_num_accels(struct adf_hw_device_data *self)
  65. {
  66. u32 i, ctr = 0;
  67. if (!self || !self->accel_mask)
  68. return 0;
  69. for (i = 0; i < ADF_C3XXX_MAX_ACCELERATORS; i++) {
  70. if (self->accel_mask & (1 << i))
  71. ctr++;
  72. }
  73. return ctr;
  74. }
  75. static u32 get_num_aes(struct adf_hw_device_data *self)
  76. {
  77. u32 i, ctr = 0;
  78. if (!self || !self->ae_mask)
  79. return 0;
  80. for (i = 0; i < ADF_C3XXX_MAX_ACCELENGINES; i++) {
  81. if (self->ae_mask & (1 << i))
  82. ctr++;
  83. }
  84. return ctr;
  85. }
  86. static u32 get_misc_bar_id(struct adf_hw_device_data *self)
  87. {
  88. return ADF_C3XXX_PMISC_BAR;
  89. }
  90. static u32 get_etr_bar_id(struct adf_hw_device_data *self)
  91. {
  92. return ADF_C3XXX_ETR_BAR;
  93. }
  94. static u32 get_sram_bar_id(struct adf_hw_device_data *self)
  95. {
  96. return 0;
  97. }
  98. static enum dev_sku_info get_sku(struct adf_hw_device_data *self)
  99. {
  100. int aes = get_num_aes(self);
  101. if (aes == 6)
  102. return DEV_SKU_4;
  103. return DEV_SKU_UNKNOWN;
  104. }
  105. static void adf_get_arbiter_mapping(struct adf_accel_dev *accel_dev,
  106. u32 const **arb_map_config)
  107. {
  108. switch (accel_dev->accel_pci_dev.sku) {
  109. case DEV_SKU_4:
  110. *arb_map_config = thrd_to_arb_map_6_me_sku;
  111. break;
  112. default:
  113. dev_err(&GET_DEV(accel_dev),
  114. "The configuration doesn't match any SKU");
  115. *arb_map_config = NULL;
  116. }
  117. }
  118. static u32 get_pf2vf_offset(u32 i)
  119. {
  120. return ADF_C3XXX_PF2VF_OFFSET(i);
  121. }
  122. static u32 get_vintmsk_offset(u32 i)
  123. {
  124. return ADF_C3XXX_VINTMSK_OFFSET(i);
  125. }
  126. static void adf_enable_error_correction(struct adf_accel_dev *accel_dev)
  127. {
  128. struct adf_hw_device_data *hw_device = accel_dev->hw_device;
  129. struct adf_bar *misc_bar = &GET_BARS(accel_dev)[ADF_C3XXX_PMISC_BAR];
  130. void __iomem *csr = misc_bar->virt_addr;
  131. unsigned int val, i;
  132. /* Enable Accel Engine error detection & correction */
  133. for (i = 0; i < hw_device->get_num_aes(hw_device); i++) {
  134. val = ADF_CSR_RD(csr, ADF_C3XXX_AE_CTX_ENABLES(i));
  135. val |= ADF_C3XXX_ENABLE_AE_ECC_ERR;
  136. ADF_CSR_WR(csr, ADF_C3XXX_AE_CTX_ENABLES(i), val);
  137. val = ADF_CSR_RD(csr, ADF_C3XXX_AE_MISC_CONTROL(i));
  138. val |= ADF_C3XXX_ENABLE_AE_ECC_PARITY_CORR;
  139. ADF_CSR_WR(csr, ADF_C3XXX_AE_MISC_CONTROL(i), val);
  140. }
  141. /* Enable shared memory error detection & correction */
  142. for (i = 0; i < hw_device->get_num_accels(hw_device); i++) {
  143. val = ADF_CSR_RD(csr, ADF_C3XXX_UERRSSMSH(i));
  144. val |= ADF_C3XXX_ERRSSMSH_EN;
  145. ADF_CSR_WR(csr, ADF_C3XXX_UERRSSMSH(i), val);
  146. val = ADF_CSR_RD(csr, ADF_C3XXX_CERRSSMSH(i));
  147. val |= ADF_C3XXX_ERRSSMSH_EN;
  148. ADF_CSR_WR(csr, ADF_C3XXX_CERRSSMSH(i), val);
  149. }
  150. }
  151. static void adf_enable_ints(struct adf_accel_dev *accel_dev)
  152. {
  153. void __iomem *addr;
  154. addr = (&GET_BARS(accel_dev)[ADF_C3XXX_PMISC_BAR])->virt_addr;
  155. /* Enable bundle and misc interrupts */
  156. ADF_CSR_WR(addr, ADF_C3XXX_SMIAPF0_MASK_OFFSET,
  157. ADF_C3XXX_SMIA0_MASK);
  158. ADF_CSR_WR(addr, ADF_C3XXX_SMIAPF1_MASK_OFFSET,
  159. ADF_C3XXX_SMIA1_MASK);
  160. }
  161. static int adf_pf_enable_vf2pf_comms(struct adf_accel_dev *accel_dev)
  162. {
  163. return 0;
  164. }
  165. void adf_init_hw_data_c3xxx(struct adf_hw_device_data *hw_data)
  166. {
  167. hw_data->dev_class = &c3xxx_class;
  168. hw_data->instance_id = c3xxx_class.instances++;
  169. hw_data->num_banks = ADF_C3XXX_ETR_MAX_BANKS;
  170. hw_data->num_accel = ADF_C3XXX_MAX_ACCELERATORS;
  171. hw_data->num_logical_accel = 1;
  172. hw_data->num_engines = ADF_C3XXX_MAX_ACCELENGINES;
  173. hw_data->tx_rx_gap = ADF_C3XXX_RX_RINGS_OFFSET;
  174. hw_data->tx_rings_mask = ADF_C3XXX_TX_RINGS_MASK;
  175. hw_data->alloc_irq = adf_isr_resource_alloc;
  176. hw_data->free_irq = adf_isr_resource_free;
  177. hw_data->enable_error_correction = adf_enable_error_correction;
  178. hw_data->get_accel_mask = get_accel_mask;
  179. hw_data->get_ae_mask = get_ae_mask;
  180. hw_data->get_num_accels = get_num_accels;
  181. hw_data->get_num_aes = get_num_aes;
  182. hw_data->get_sram_bar_id = get_sram_bar_id;
  183. hw_data->get_etr_bar_id = get_etr_bar_id;
  184. hw_data->get_misc_bar_id = get_misc_bar_id;
  185. hw_data->get_pf2vf_offset = get_pf2vf_offset;
  186. hw_data->get_vintmsk_offset = get_vintmsk_offset;
  187. hw_data->get_sku = get_sku;
  188. hw_data->fw_name = ADF_C3XXX_FW;
  189. hw_data->fw_mmp_name = ADF_C3XXX_MMP;
  190. hw_data->init_admin_comms = adf_init_admin_comms;
  191. hw_data->exit_admin_comms = adf_exit_admin_comms;
  192. hw_data->disable_iov = adf_disable_sriov;
  193. hw_data->send_admin_init = adf_send_admin_init;
  194. hw_data->init_arb = adf_init_arb;
  195. hw_data->exit_arb = adf_exit_arb;
  196. hw_data->get_arb_mapping = adf_get_arbiter_mapping;
  197. hw_data->enable_ints = adf_enable_ints;
  198. hw_data->enable_vf2pf_comms = adf_pf_enable_vf2pf_comms;
  199. hw_data->reset_device = adf_reset_flr;
  200. hw_data->min_iov_compat_ver = ADF_PFVF_COMPATIBILITY_VERSION;
  201. }
  202. void adf_clean_hw_data_c3xxx(struct adf_hw_device_data *hw_data)
  203. {
  204. hw_data->dev_class->instances--;
  205. }