18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * Copyright 2014 Advanced Micro Devices, Inc. 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * Permission is hereby granted, free of charge, to any person obtaining a 58c2ecf20Sopenharmony_ci * copy of this software and associated documentation files (the "Software"), 68c2ecf20Sopenharmony_ci * to deal in the Software without restriction, including without limitation 78c2ecf20Sopenharmony_ci * the rights to use, copy, modify, merge, publish, distribute, sublicense, 88c2ecf20Sopenharmony_ci * and/or sell copies of the Software, and to permit persons to whom the 98c2ecf20Sopenharmony_ci * Software is furnished to do so, subject to the following conditions: 108c2ecf20Sopenharmony_ci * 118c2ecf20Sopenharmony_ci * The above copyright notice and this permission notice shall be included in 128c2ecf20Sopenharmony_ci * all copies or substantial portions of the Software. 138c2ecf20Sopenharmony_ci * 148c2ecf20Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 158c2ecf20Sopenharmony_ci * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 168c2ecf20Sopenharmony_ci * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 178c2ecf20Sopenharmony_ci * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 188c2ecf20Sopenharmony_ci * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 198c2ecf20Sopenharmony_ci * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 208c2ecf20Sopenharmony_ci * OTHER DEALINGS IN THE SOFTWARE. 218c2ecf20Sopenharmony_ci * 228c2ecf20Sopenharmony_ci */ 238c2ecf20Sopenharmony_ci 248c2ecf20Sopenharmony_ci#include <linux/slab.h> 258c2ecf20Sopenharmony_ci#include "kfd_priv.h" 268c2ecf20Sopenharmony_ci 278c2ecf20Sopenharmony_civoid print_queue_properties(struct queue_properties *q) 288c2ecf20Sopenharmony_ci{ 298c2ecf20Sopenharmony_ci if (!q) 308c2ecf20Sopenharmony_ci return; 318c2ecf20Sopenharmony_ci 328c2ecf20Sopenharmony_ci pr_debug("Printing queue properties:\n"); 338c2ecf20Sopenharmony_ci pr_debug("Queue Type: %u\n", q->type); 348c2ecf20Sopenharmony_ci pr_debug("Queue Size: %llu\n", q->queue_size); 358c2ecf20Sopenharmony_ci pr_debug("Queue percent: %u\n", q->queue_percent); 368c2ecf20Sopenharmony_ci pr_debug("Queue Address: 0x%llX\n", q->queue_address); 378c2ecf20Sopenharmony_ci pr_debug("Queue Id: %u\n", q->queue_id); 388c2ecf20Sopenharmony_ci pr_debug("Queue Process Vmid: %u\n", q->vmid); 398c2ecf20Sopenharmony_ci pr_debug("Queue Read Pointer: 0x%px\n", q->read_ptr); 408c2ecf20Sopenharmony_ci pr_debug("Queue Write Pointer: 0x%px\n", q->write_ptr); 418c2ecf20Sopenharmony_ci pr_debug("Queue Doorbell Pointer: 0x%p\n", q->doorbell_ptr); 428c2ecf20Sopenharmony_ci pr_debug("Queue Doorbell Offset: %u\n", q->doorbell_off); 438c2ecf20Sopenharmony_ci} 448c2ecf20Sopenharmony_ci 458c2ecf20Sopenharmony_civoid print_queue(struct queue *q) 468c2ecf20Sopenharmony_ci{ 478c2ecf20Sopenharmony_ci if (!q) 488c2ecf20Sopenharmony_ci return; 498c2ecf20Sopenharmony_ci pr_debug("Printing queue:\n"); 508c2ecf20Sopenharmony_ci pr_debug("Queue Type: %u\n", q->properties.type); 518c2ecf20Sopenharmony_ci pr_debug("Queue Size: %llu\n", q->properties.queue_size); 528c2ecf20Sopenharmony_ci pr_debug("Queue percent: %u\n", q->properties.queue_percent); 538c2ecf20Sopenharmony_ci pr_debug("Queue Address: 0x%llX\n", q->properties.queue_address); 548c2ecf20Sopenharmony_ci pr_debug("Queue Id: %u\n", q->properties.queue_id); 558c2ecf20Sopenharmony_ci pr_debug("Queue Process Vmid: %u\n", q->properties.vmid); 568c2ecf20Sopenharmony_ci pr_debug("Queue Read Pointer: 0x%px\n", q->properties.read_ptr); 578c2ecf20Sopenharmony_ci pr_debug("Queue Write Pointer: 0x%px\n", q->properties.write_ptr); 588c2ecf20Sopenharmony_ci pr_debug("Queue Doorbell Pointer: 0x%p\n", q->properties.doorbell_ptr); 598c2ecf20Sopenharmony_ci pr_debug("Queue Doorbell Offset: %u\n", q->properties.doorbell_off); 608c2ecf20Sopenharmony_ci pr_debug("Queue MQD Address: 0x%p\n", q->mqd); 618c2ecf20Sopenharmony_ci pr_debug("Queue MQD Gart: 0x%llX\n", q->gart_mqd_addr); 628c2ecf20Sopenharmony_ci pr_debug("Queue Process Address: 0x%p\n", q->process); 638c2ecf20Sopenharmony_ci pr_debug("Queue Device Address: 0x%p\n", q->device); 648c2ecf20Sopenharmony_ci} 658c2ecf20Sopenharmony_ci 668c2ecf20Sopenharmony_ciint init_queue(struct queue **q, const struct queue_properties *properties) 678c2ecf20Sopenharmony_ci{ 688c2ecf20Sopenharmony_ci struct queue *tmp_q; 698c2ecf20Sopenharmony_ci 708c2ecf20Sopenharmony_ci tmp_q = kzalloc(sizeof(*tmp_q), GFP_KERNEL); 718c2ecf20Sopenharmony_ci if (!tmp_q) 728c2ecf20Sopenharmony_ci return -ENOMEM; 738c2ecf20Sopenharmony_ci 748c2ecf20Sopenharmony_ci memcpy(&tmp_q->properties, properties, sizeof(*properties)); 758c2ecf20Sopenharmony_ci 768c2ecf20Sopenharmony_ci *q = tmp_q; 778c2ecf20Sopenharmony_ci return 0; 788c2ecf20Sopenharmony_ci} 798c2ecf20Sopenharmony_ci 808c2ecf20Sopenharmony_civoid uninit_queue(struct queue *q) 818c2ecf20Sopenharmony_ci{ 828c2ecf20Sopenharmony_ci kfree(q); 838c2ecf20Sopenharmony_ci} 84