amdgpu_sdma.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * Copyright 2018 Advanced Micro Devices, Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. */
  23. #ifndef __AMDGPU_SDMA_H__
  24. #define __AMDGPU_SDMA_H__
  25. /* max number of IP instances */
  26. #define AMDGPU_MAX_SDMA_INSTANCES 2
  27. enum amdgpu_sdma_irq {
  28. AMDGPU_SDMA_IRQ_TRAP0 = 0,
  29. AMDGPU_SDMA_IRQ_TRAP1,
  30. AMDGPU_SDMA_IRQ_LAST
  31. };
  32. struct amdgpu_sdma_instance {
  33. /* SDMA firmware */
  34. const struct firmware *fw;
  35. uint32_t fw_version;
  36. uint32_t feature_version;
  37. struct amdgpu_ring ring;
  38. bool burst_nop;
  39. };
  40. struct amdgpu_sdma {
  41. struct amdgpu_sdma_instance instance[AMDGPU_MAX_SDMA_INSTANCES];
  42. #ifdef CONFIG_DRM_AMDGPU_SI
  43. //SI DMA has a difference trap irq number for the second engine
  44. struct amdgpu_irq_src trap_irq_1;
  45. #endif
  46. struct amdgpu_irq_src trap_irq;
  47. struct amdgpu_irq_src illegal_inst_irq;
  48. int num_instances;
  49. uint32_t srbm_soft_reset;
  50. };
  51. /*
  52. * Provided by hw blocks that can move/clear data. e.g., gfx or sdma
  53. * But currently, we use sdma to move data.
  54. */
  55. struct amdgpu_buffer_funcs {
  56. /* maximum bytes in a single operation */
  57. uint32_t copy_max_bytes;
  58. /* number of dw to reserve per operation */
  59. unsigned copy_num_dw;
  60. /* used for buffer migration */
  61. void (*emit_copy_buffer)(struct amdgpu_ib *ib,
  62. /* src addr in bytes */
  63. uint64_t src_offset,
  64. /* dst addr in bytes */
  65. uint64_t dst_offset,
  66. /* number of byte to transfer */
  67. uint32_t byte_count);
  68. /* maximum bytes in a single operation */
  69. uint32_t fill_max_bytes;
  70. /* number of dw to reserve per operation */
  71. unsigned fill_num_dw;
  72. /* used for buffer clearing */
  73. void (*emit_fill_buffer)(struct amdgpu_ib *ib,
  74. /* value to write to memory */
  75. uint32_t src_data,
  76. /* dst addr in bytes */
  77. uint64_t dst_offset,
  78. /* number of byte to fill */
  79. uint32_t byte_count);
  80. };
  81. #define amdgpu_emit_copy_buffer(adev, ib, s, d, b) (adev)->mman.buffer_funcs->emit_copy_buffer((ib), (s), (d), (b))
  82. #define amdgpu_emit_fill_buffer(adev, ib, s, d, b) (adev)->mman.buffer_funcs->emit_fill_buffer((ib), (s), (d), (b))
  83. struct amdgpu_sdma_instance *
  84. amdgpu_get_sdma_instance(struct amdgpu_ring *ring);
  85. #endif