2 * Copyright 2018 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
24 #include <linux/list.h>
26 #include "amdgpu_xgmi.h"
29 static DEFINE_MUTEX(xgmi_mutex
);
31 #define AMDGPU_MAX_XGMI_HIVE 8
32 #define AMDGPU_MAX_XGMI_DEVICE_PER_HIVE 4
34 static struct amdgpu_hive_info xgmi_hives
[AMDGPU_MAX_XGMI_HIVE
];
35 static unsigned hive_count
= 0;
38 void *amdgpu_xgmi_hive_try_lock(struct amdgpu_hive_info
*hive
)
40 return &hive
->device_list
;
43 struct amdgpu_hive_info
*amdgpu_get_xgmi_hive(struct amdgpu_device
*adev
, int lock
)
46 struct amdgpu_hive_info
*tmp
;
48 if (!adev
->gmc
.xgmi
.hive_id
)
51 mutex_lock(&xgmi_mutex
);
53 for (i
= 0 ; i
< hive_count
; ++i
) {
55 if (tmp
->hive_id
== adev
->gmc
.xgmi
.hive_id
) {
57 mutex_lock(&tmp
->hive_lock
);
58 mutex_unlock(&xgmi_mutex
);
62 if (i
>= AMDGPU_MAX_XGMI_HIVE
) {
63 mutex_unlock(&xgmi_mutex
);
67 /* initialize new hive if not exist */
68 tmp
= &xgmi_hives
[hive_count
++];
69 tmp
->hive_id
= adev
->gmc
.xgmi
.hive_id
;
70 INIT_LIST_HEAD(&tmp
->device_list
);
71 mutex_init(&tmp
->hive_lock
);
72 mutex_init(&tmp
->reset_lock
);
74 mutex_lock(&tmp
->hive_lock
);
76 mutex_unlock(&xgmi_mutex
);
81 int amdgpu_xgmi_update_topology(struct amdgpu_hive_info
*hive
, struct amdgpu_device
*adev
)
85 /* Each psp need to set the latest topology */
86 ret
= psp_xgmi_set_topology_info(&adev
->psp
,
88 &hive
->topology_info
);
91 "XGMI: Set topology failure on device %llx, hive %llx, ret %d",
92 adev
->gmc
.xgmi
.node_id
,
93 adev
->gmc
.xgmi
.hive_id
, ret
);
98 int amdgpu_xgmi_add_device(struct amdgpu_device
*adev
)
100 struct psp_xgmi_topology_info
*hive_topology
;
101 struct amdgpu_hive_info
*hive
;
102 struct amdgpu_xgmi
*entry
;
103 struct amdgpu_device
*tmp_adev
= NULL
;
105 int count
= 0, ret
= -EINVAL
;
107 if (!adev
->gmc
.xgmi
.supported
)
110 ret
= psp_xgmi_get_node_id(&adev
->psp
, &adev
->gmc
.xgmi
.node_id
);
113 "XGMI: Failed to get node id\n");
117 ret
= psp_xgmi_get_hive_id(&adev
->psp
, &adev
->gmc
.xgmi
.hive_id
);
120 "XGMI: Failed to get hive id\n");
124 hive
= amdgpu_get_xgmi_hive(adev
, 1);
128 "XGMI: node 0x%llx, can not match hive 0x%llx in the hive list.\n",
129 adev
->gmc
.xgmi
.node_id
, adev
->gmc
.xgmi
.hive_id
);
133 hive_topology
= &hive
->topology_info
;
135 list_add_tail(&adev
->gmc
.xgmi
.head
, &hive
->device_list
);
136 list_for_each_entry(entry
, &hive
->device_list
, head
)
137 hive_topology
->nodes
[count
++].node_id
= entry
->node_id
;
138 hive
->number_devices
= count
;
140 /* Each psp need to get the latest topology */
141 list_for_each_entry(tmp_adev
, &hive
->device_list
, gmc
.xgmi
.head
) {
142 ret
= psp_xgmi_get_topology_info(&tmp_adev
->psp
, count
, hive_topology
);
144 dev_err(tmp_adev
->dev
,
145 "XGMI: Get topology failure on device %llx, hive %llx, ret %d",
146 tmp_adev
->gmc
.xgmi
.node_id
,
147 tmp_adev
->gmc
.xgmi
.hive_id
, ret
);
148 /* To do : continue with some node failed or disable the whole hive */
153 list_for_each_entry(tmp_adev
, &hive
->device_list
, gmc
.xgmi
.head
) {
154 ret
= amdgpu_xgmi_update_topology(hive
, tmp_adev
);
159 dev_info(adev
->dev
, "XGMI: Add node %d, hive 0x%llx.\n",
160 adev
->gmc
.xgmi
.physical_node_id
, adev
->gmc
.xgmi
.hive_id
);
162 mutex_unlock(&hive
->hive_lock
);
167 void amdgpu_xgmi_remove_device(struct amdgpu_device
*adev
)
169 struct amdgpu_hive_info
*hive
;
171 if (!adev
->gmc
.xgmi
.supported
)
174 hive
= amdgpu_get_xgmi_hive(adev
, 1);
178 if (!(hive
->number_devices
--)) {
179 mutex_destroy(&hive
->hive_lock
);
180 mutex_destroy(&hive
->reset_lock
);
182 mutex_unlock(&hive
->hive_lock
);