• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0 OR MIT
2 /*
3  * Copyright 2018-2022 Advanced Micro Devices, Inc.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21  * OTHER DEALINGS IN THE SOFTWARE.
22  *
23  */
24 
25 #include "kfd_device_queue_manager.h"
26 #include "navi10_enum.h"
27 #include "gc/gc_10_1_0_offset.h"
28 #include "gc/gc_10_1_0_sh_mask.h"
29 
30 static int update_qpd_v10(struct device_queue_manager *dqm,
31 			 struct qcm_process_device *qpd);
32 static void init_sdma_vm_v10(struct device_queue_manager *dqm, struct queue *q,
33 			    struct qcm_process_device *qpd);
34 static bool set_cache_memory_policy_v10(struct device_queue_manager *dqm,
35 				   struct qcm_process_device *qpd,
36 				   enum cache_policy default_policy,
37 				   enum cache_policy alternate_policy,
38 				   void __user *alternate_aperture_base,
39 				   uint64_t alternate_aperture_size);
40 
device_queue_manager_init_v10(struct device_queue_manager_asic_ops * asic_ops)41 void device_queue_manager_init_v10(
42 	struct device_queue_manager_asic_ops *asic_ops)
43 {
44 	asic_ops->set_cache_memory_policy = set_cache_memory_policy_v10;
45 	asic_ops->update_qpd = update_qpd_v10;
46 	asic_ops->init_sdma_vm = init_sdma_vm_v10;
47 	asic_ops->mqd_manager_init = mqd_manager_init_v10;
48 }
49 
compute_sh_mem_bases_64bit(struct kfd_process_device * pdd)50 static uint32_t compute_sh_mem_bases_64bit(struct kfd_process_device *pdd)
51 {
52 	uint32_t shared_base = pdd->lds_base >> 48;
53 	uint32_t private_base = pdd->scratch_base >> 48;
54 
55 	return (shared_base << SH_MEM_BASES__SHARED_BASE__SHIFT) |
56 		private_base;
57 }
58 
set_cache_memory_policy_v10(struct device_queue_manager * dqm,struct qcm_process_device * qpd,enum cache_policy default_policy,enum cache_policy alternate_policy,void __user * alternate_aperture_base,uint64_t alternate_aperture_size)59 static bool set_cache_memory_policy_v10(struct device_queue_manager *dqm,
60 				   struct qcm_process_device *qpd,
61 				   enum cache_policy default_policy,
62 				   enum cache_policy alternate_policy,
63 				   void __user *alternate_aperture_base,
64 				   uint64_t alternate_aperture_size)
65 {
66 	qpd->sh_mem_config = (SH_MEM_ALIGNMENT_MODE_UNALIGNED <<
67 			      SH_MEM_CONFIG__ALIGNMENT_MODE__SHIFT) |
68 			      (3 << SH_MEM_CONFIG__INITIAL_INST_PREFETCH__SHIFT);
69 	qpd->sh_mem_ape1_limit = 0;
70 	qpd->sh_mem_ape1_base = 0;
71 	qpd->sh_mem_bases = compute_sh_mem_bases_64bit(qpd_to_pdd(qpd));
72 
73 	pr_debug("sh_mem_bases 0x%X\n", qpd->sh_mem_bases);
74 	return true;
75 }
76 
update_qpd_v10(struct device_queue_manager * dqm,struct qcm_process_device * qpd)77 static int update_qpd_v10(struct device_queue_manager *dqm,
78 			 struct qcm_process_device *qpd)
79 {
80 	return 0;
81 }
82 
init_sdma_vm_v10(struct device_queue_manager * dqm,struct queue * q,struct qcm_process_device * qpd)83 static void init_sdma_vm_v10(struct device_queue_manager *dqm, struct queue *q,
84 			    struct qcm_process_device *qpd)
85 {
86 	/* Not needed on SDMAv4 onwards any more */
87 	q->properties.sdma_vm_addr = 0;
88 }
89