kfd_queue.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * Copyright 2014 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. #include <linux/slab.h>
  24. #include "kfd_priv.h"
  25. void print_queue_properties(struct queue_properties *q)
  26. {
  27. if (!q)
  28. return;
  29. pr_debug("Printing queue properties:\n");
  30. pr_debug("Queue Type: %u\n", q->type);
  31. pr_debug("Queue Size: %llu\n", q->queue_size);
  32. pr_debug("Queue percent: %u\n", q->queue_percent);
  33. pr_debug("Queue Address: 0x%llX\n", q->queue_address);
  34. pr_debug("Queue Id: %u\n", q->queue_id);
  35. pr_debug("Queue Process Vmid: %u\n", q->vmid);
  36. pr_debug("Queue Read Pointer: 0x%px\n", q->read_ptr);
  37. pr_debug("Queue Write Pointer: 0x%px\n", q->write_ptr);
  38. pr_debug("Queue Doorbell Pointer: 0x%p\n", q->doorbell_ptr);
  39. pr_debug("Queue Doorbell Offset: %u\n", q->doorbell_off);
  40. }
  41. void print_queue(struct queue *q)
  42. {
  43. if (!q)
  44. return;
  45. pr_debug("Printing queue:\n");
  46. pr_debug("Queue Type: %u\n", q->properties.type);
  47. pr_debug("Queue Size: %llu\n", q->properties.queue_size);
  48. pr_debug("Queue percent: %u\n", q->properties.queue_percent);
  49. pr_debug("Queue Address: 0x%llX\n", q->properties.queue_address);
  50. pr_debug("Queue Id: %u\n", q->properties.queue_id);
  51. pr_debug("Queue Process Vmid: %u\n", q->properties.vmid);
  52. pr_debug("Queue Read Pointer: 0x%px\n", q->properties.read_ptr);
  53. pr_debug("Queue Write Pointer: 0x%px\n", q->properties.write_ptr);
  54. pr_debug("Queue Doorbell Pointer: 0x%p\n", q->properties.doorbell_ptr);
  55. pr_debug("Queue Doorbell Offset: %u\n", q->properties.doorbell_off);
  56. pr_debug("Queue MQD Address: 0x%p\n", q->mqd);
  57. pr_debug("Queue MQD Gart: 0x%llX\n", q->gart_mqd_addr);
  58. pr_debug("Queue Process Address: 0x%p\n", q->process);
  59. pr_debug("Queue Device Address: 0x%p\n", q->device);
  60. }
  61. int init_queue(struct queue **q, const struct queue_properties *properties)
  62. {
  63. struct queue *tmp_q;
  64. tmp_q = kzalloc(sizeof(*tmp_q), GFP_KERNEL);
  65. if (!tmp_q)
  66. return -ENOMEM;
  67. memcpy(&tmp_q->properties, properties, sizeof(*properties));
  68. *q = tmp_q;
  69. return 0;
  70. }
  71. void uninit_queue(struct queue *q)
  72. {
  73. kfree(q);
  74. }