2 * Copyright 2022 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 "amdgpu_xcp.h"
25 #include "amdgpu_drv.h"
27 #include <drm/drm_drv.h>
28 #include "../amdxcp/amdgpu_xcp_drv.h"
30 static int __amdgpu_xcp_run(struct amdgpu_xcp_mgr *xcp_mgr,
31 struct amdgpu_xcp_ip *xcp_ip, int xcp_state)
33 int (*run_func)(void *handle, uint32_t inst_mask);
36 if (!xcp_ip || !xcp_ip->valid || !xcp_ip->ip_funcs)
42 case AMDGPU_XCP_PREPARE_SUSPEND:
43 run_func = xcp_ip->ip_funcs->prepare_suspend;
45 case AMDGPU_XCP_SUSPEND:
46 run_func = xcp_ip->ip_funcs->suspend;
48 case AMDGPU_XCP_PREPARE_RESUME:
49 run_func = xcp_ip->ip_funcs->prepare_resume;
51 case AMDGPU_XCP_RESUME:
52 run_func = xcp_ip->ip_funcs->resume;
57 ret = run_func(xcp_mgr->adev, xcp_ip->inst_mask);
62 static int amdgpu_xcp_run_transition(struct amdgpu_xcp_mgr *xcp_mgr, int xcp_id,
65 struct amdgpu_xcp_ip *xcp_ip;
66 struct amdgpu_xcp *xcp;
69 if (xcp_id >= MAX_XCP || !xcp_mgr->xcp[xcp_id].valid)
72 xcp = &xcp_mgr->xcp[xcp_id];
73 for (i = 0; i < AMDGPU_XCP_MAX_BLOCKS; ++i) {
75 ret = __amdgpu_xcp_run(xcp_mgr, xcp_ip, state);
83 int amdgpu_xcp_prepare_suspend(struct amdgpu_xcp_mgr *xcp_mgr, int xcp_id)
85 return amdgpu_xcp_run_transition(xcp_mgr, xcp_id,
86 AMDGPU_XCP_PREPARE_SUSPEND);
89 int amdgpu_xcp_suspend(struct amdgpu_xcp_mgr *xcp_mgr, int xcp_id)
91 return amdgpu_xcp_run_transition(xcp_mgr, xcp_id, AMDGPU_XCP_SUSPEND);
94 int amdgpu_xcp_prepare_resume(struct amdgpu_xcp_mgr *xcp_mgr, int xcp_id)
96 return amdgpu_xcp_run_transition(xcp_mgr, xcp_id,
97 AMDGPU_XCP_PREPARE_RESUME);
100 int amdgpu_xcp_resume(struct amdgpu_xcp_mgr *xcp_mgr, int xcp_id)
102 return amdgpu_xcp_run_transition(xcp_mgr, xcp_id, AMDGPU_XCP_RESUME);
105 static void __amdgpu_xcp_add_block(struct amdgpu_xcp_mgr *xcp_mgr, int xcp_id,
106 struct amdgpu_xcp_ip *ip)
108 struct amdgpu_xcp *xcp;
113 xcp = &xcp_mgr->xcp[xcp_id];
114 xcp->ip[ip->ip_id] = *ip;
115 xcp->ip[ip->ip_id].valid = true;
120 int amdgpu_xcp_init(struct amdgpu_xcp_mgr *xcp_mgr, int num_xcps, int mode)
122 struct amdgpu_device *adev = xcp_mgr->adev;
123 struct amdgpu_xcp_ip ip;
127 if (!num_xcps || num_xcps > MAX_XCP)
130 xcp_mgr->mode = mode;
132 for (i = 0; i < MAX_XCP; ++i)
133 xcp_mgr->xcp[i].valid = false;
135 /* This is needed for figuring out memory id of xcp */
136 xcp_mgr->num_xcp_per_mem_partition = num_xcps / xcp_mgr->adev->gmc.num_mem_partitions;
138 for (i = 0; i < num_xcps; ++i) {
139 for (j = AMDGPU_XCP_GFXHUB; j < AMDGPU_XCP_MAX_BLOCKS; ++j) {
140 ret = xcp_mgr->funcs->get_ip_details(xcp_mgr, i, j,
145 __amdgpu_xcp_add_block(xcp_mgr, i, &ip);
148 xcp_mgr->xcp[i].id = i;
150 if (xcp_mgr->funcs->get_xcp_mem_id) {
151 ret = xcp_mgr->funcs->get_xcp_mem_id(
152 xcp_mgr, &xcp_mgr->xcp[i], &mem_id);
156 xcp_mgr->xcp[i].mem_id = mem_id;
160 xcp_mgr->num_xcps = num_xcps;
161 amdgpu_xcp_update_partition_sched_list(adev);
166 static int __amdgpu_xcp_switch_partition_mode(struct amdgpu_xcp_mgr *xcp_mgr,
169 int ret, curr_mode, num_xcps = 0;
171 if (!xcp_mgr->funcs || !xcp_mgr->funcs->switch_partition_mode)
174 mutex_lock(&xcp_mgr->xcp_lock);
176 curr_mode = xcp_mgr->mode;
177 /* State set to transient mode */
178 xcp_mgr->mode = AMDGPU_XCP_MODE_TRANS;
180 ret = xcp_mgr->funcs->switch_partition_mode(xcp_mgr, mode, &num_xcps);
183 /* Failed, get whatever mode it's at now */
184 if (xcp_mgr->funcs->query_partition_mode)
185 xcp_mgr->mode = amdgpu_xcp_query_partition_mode(
186 xcp_mgr, AMDGPU_XCP_FL_LOCKED);
188 xcp_mgr->mode = curr_mode;
194 mutex_unlock(&xcp_mgr->xcp_lock);
199 int amdgpu_xcp_switch_partition_mode(struct amdgpu_xcp_mgr *xcp_mgr, int mode)
201 if (!xcp_mgr || mode == AMDGPU_XCP_MODE_NONE)
204 if (xcp_mgr->mode == mode)
207 return __amdgpu_xcp_switch_partition_mode(xcp_mgr, mode);
210 int amdgpu_xcp_restore_partition_mode(struct amdgpu_xcp_mgr *xcp_mgr)
212 if (!xcp_mgr || xcp_mgr->mode == AMDGPU_XCP_MODE_NONE)
215 return __amdgpu_xcp_switch_partition_mode(xcp_mgr, xcp_mgr->mode);
218 int amdgpu_xcp_query_partition_mode(struct amdgpu_xcp_mgr *xcp_mgr, u32 flags)
222 if (!amdgpu_sriov_vf(xcp_mgr->adev) &&
223 xcp_mgr->mode == AMDGPU_XCP_MODE_NONE)
224 return xcp_mgr->mode;
226 if (!xcp_mgr->funcs || !xcp_mgr->funcs->query_partition_mode)
227 return xcp_mgr->mode;
229 if (!(flags & AMDGPU_XCP_FL_LOCKED))
230 mutex_lock(&xcp_mgr->xcp_lock);
231 mode = xcp_mgr->funcs->query_partition_mode(xcp_mgr);
233 /* First time query for VF, set the mode here */
234 if (amdgpu_sriov_vf(xcp_mgr->adev) &&
235 xcp_mgr->mode == AMDGPU_XCP_MODE_NONE)
236 xcp_mgr->mode = mode;
238 if (xcp_mgr->mode != AMDGPU_XCP_MODE_TRANS && mode != xcp_mgr->mode)
241 "Cached partition mode %d not matching with device mode %d",
242 xcp_mgr->mode, mode);
244 if (!(flags & AMDGPU_XCP_FL_LOCKED))
245 mutex_unlock(&xcp_mgr->xcp_lock);
250 static int amdgpu_xcp_dev_alloc(struct amdgpu_device *adev)
252 struct drm_device *p_ddev;
253 struct drm_device *ddev;
256 ddev = adev_to_drm(adev);
258 /* xcp #0 shares drm device setting with adev */
259 adev->xcp_mgr->xcp->ddev = ddev;
261 for (i = 1; i < MAX_XCP; i++) {
262 ret = amdgpu_xcp_drm_dev_alloc(&p_ddev);
263 if (ret == -ENOSPC) {
265 "Skip xcp node #%d when out of drm node resource.", i);
271 /* Redirect all IOCTLs to the primary device */
272 adev->xcp_mgr->xcp[i].rdev = p_ddev->render->dev;
273 adev->xcp_mgr->xcp[i].pdev = p_ddev->primary->dev;
274 adev->xcp_mgr->xcp[i].driver = (struct drm_driver *)p_ddev->driver;
275 adev->xcp_mgr->xcp[i].vma_offset_manager = p_ddev->vma_offset_manager;
276 p_ddev->render->dev = ddev;
277 p_ddev->primary->dev = ddev;
278 p_ddev->vma_offset_manager = ddev->vma_offset_manager;
279 p_ddev->driver = &amdgpu_partition_driver;
280 adev->xcp_mgr->xcp[i].ddev = p_ddev;
286 int amdgpu_xcp_mgr_init(struct amdgpu_device *adev, int init_mode,
288 struct amdgpu_xcp_mgr_funcs *xcp_funcs)
290 struct amdgpu_xcp_mgr *xcp_mgr;
292 if (!xcp_funcs || !xcp_funcs->get_ip_details)
295 xcp_mgr = kzalloc(sizeof(*xcp_mgr), GFP_KERNEL);
300 xcp_mgr->adev = adev;
301 xcp_mgr->funcs = xcp_funcs;
302 xcp_mgr->mode = init_mode;
303 mutex_init(&xcp_mgr->xcp_lock);
305 if (init_mode != AMDGPU_XCP_MODE_NONE)
306 amdgpu_xcp_init(xcp_mgr, init_num_xcps, init_mode);
308 adev->xcp_mgr = xcp_mgr;
310 return amdgpu_xcp_dev_alloc(adev);
313 int amdgpu_xcp_get_partition(struct amdgpu_xcp_mgr *xcp_mgr,
314 enum AMDGPU_XCP_IP_BLOCK ip, int instance)
316 struct amdgpu_xcp *xcp;
319 if (ip >= AMDGPU_XCP_MAX_BLOCKS)
322 for (i = 0; i < xcp_mgr->num_xcps; ++i) {
323 xcp = &xcp_mgr->xcp[i];
324 if ((xcp->valid) && (xcp->ip[ip].valid) &&
325 (xcp->ip[ip].inst_mask & BIT(instance)))
335 int amdgpu_xcp_get_inst_details(struct amdgpu_xcp *xcp,
336 enum AMDGPU_XCP_IP_BLOCK ip,
339 if (!xcp->valid || !inst_mask || !(xcp->ip[ip].valid))
342 *inst_mask = xcp->ip[ip].inst_mask;
347 int amdgpu_xcp_dev_register(struct amdgpu_device *adev,
348 const struct pci_device_id *ent)
355 for (i = 1; i < MAX_XCP; i++) {
356 if (!adev->xcp_mgr->xcp[i].ddev)
359 ret = drm_dev_register(adev->xcp_mgr->xcp[i].ddev, ent->driver_data);
367 void amdgpu_xcp_dev_unplug(struct amdgpu_device *adev)
369 struct drm_device *p_ddev;
375 for (i = 1; i < MAX_XCP; i++) {
376 if (!adev->xcp_mgr->xcp[i].ddev)
379 p_ddev = adev->xcp_mgr->xcp[i].ddev;
380 drm_dev_unplug(p_ddev);
381 p_ddev->render->dev = adev->xcp_mgr->xcp[i].rdev;
382 p_ddev->primary->dev = adev->xcp_mgr->xcp[i].pdev;
383 p_ddev->driver = adev->xcp_mgr->xcp[i].driver;
384 p_ddev->vma_offset_manager = adev->xcp_mgr->xcp[i].vma_offset_manager;
388 int amdgpu_xcp_open_device(struct amdgpu_device *adev,
389 struct amdgpu_fpriv *fpriv,
390 struct drm_file *file_priv)
397 fpriv->xcp_id = AMDGPU_XCP_NO_PARTITION;
398 for (i = 0; i < MAX_XCP; ++i) {
399 if (!adev->xcp_mgr->xcp[i].ddev)
402 if (file_priv->minor == adev->xcp_mgr->xcp[i].ddev->render) {
403 if (adev->xcp_mgr->xcp[i].valid == FALSE) {
404 dev_err(adev->dev, "renderD%d partition %d not valid!",
405 file_priv->minor->index, i);
408 dev_dbg(adev->dev, "renderD%d partition %d opened!",
409 file_priv->minor->index, i);
415 fpriv->vm.mem_id = fpriv->xcp_id == AMDGPU_XCP_NO_PARTITION ? -1 :
416 adev->xcp_mgr->xcp[fpriv->xcp_id].mem_id;
420 void amdgpu_xcp_release_sched(struct amdgpu_device *adev,
421 struct amdgpu_ctx_entity *entity)
423 struct drm_gpu_scheduler *sched;
424 struct amdgpu_ring *ring;
429 sched = entity->entity.rq->sched;
431 ring = to_amdgpu_ring(entity->entity.rq->sched);
432 atomic_dec(&adev->xcp_mgr->xcp[ring->xcp_id].ref_cnt);
436 #define XCP_CFG_SYSFS_RES_ATTR_SHOW(_name) \
437 static ssize_t amdgpu_xcp_res_sysfs_##_name##_show( \
438 struct amdgpu_xcp_res_details *xcp_res, char *buf) \
440 return sysfs_emit(buf, "%d\n", xcp_res->_name); \
443 struct amdgpu_xcp_res_sysfs_attribute {
444 struct attribute attr;
445 ssize_t (*show)(struct amdgpu_xcp_res_details *xcp_res, char *buf);
448 #define XCP_CFG_SYSFS_RES_ATTR(_name) \
449 struct amdgpu_xcp_res_sysfs_attribute xcp_res_sysfs_attr_##_name = { \
450 .attr = { .name = __stringify(_name), .mode = 0400 }, \
451 .show = amdgpu_xcp_res_sysfs_##_name##_show, \
454 XCP_CFG_SYSFS_RES_ATTR_SHOW(num_inst)
455 XCP_CFG_SYSFS_RES_ATTR(num_inst);
456 XCP_CFG_SYSFS_RES_ATTR_SHOW(num_shared)
457 XCP_CFG_SYSFS_RES_ATTR(num_shared);
459 #define XCP_CFG_SYSFS_RES_ATTR_PTR(_name) xcp_res_sysfs_attr_##_name.attr
461 static struct attribute *xcp_cfg_res_sysfs_attrs[] = {
462 &XCP_CFG_SYSFS_RES_ATTR_PTR(num_inst),
463 &XCP_CFG_SYSFS_RES_ATTR_PTR(num_shared), NULL
466 static const char *xcp_desc[] = {
467 [AMDGPU_SPX_PARTITION_MODE] = "SPX",
468 [AMDGPU_DPX_PARTITION_MODE] = "DPX",
469 [AMDGPU_TPX_PARTITION_MODE] = "TPX",
470 [AMDGPU_QPX_PARTITION_MODE] = "QPX",
471 [AMDGPU_CPX_PARTITION_MODE] = "CPX",
474 static const char *nps_desc[] = {
475 [UNKNOWN_MEMORY_PARTITION_MODE] = "UNKNOWN",
476 [AMDGPU_NPS1_PARTITION_MODE] = "NPS1",
477 [AMDGPU_NPS2_PARTITION_MODE] = "NPS2",
478 [AMDGPU_NPS3_PARTITION_MODE] = "NPS3",
479 [AMDGPU_NPS4_PARTITION_MODE] = "NPS4",
480 [AMDGPU_NPS6_PARTITION_MODE] = "NPS6",
481 [AMDGPU_NPS8_PARTITION_MODE] = "NPS8",
484 ATTRIBUTE_GROUPS(xcp_cfg_res_sysfs);
486 #define to_xcp_attr(x) \
487 container_of(x, struct amdgpu_xcp_res_sysfs_attribute, attr)
488 #define to_xcp_res(x) container_of(x, struct amdgpu_xcp_res_details, kobj)
490 static ssize_t xcp_cfg_res_sysfs_attr_show(struct kobject *kobj,
491 struct attribute *attr, char *buf)
493 struct amdgpu_xcp_res_sysfs_attribute *attribute;
494 struct amdgpu_xcp_res_details *xcp_res;
496 attribute = to_xcp_attr(attr);
497 xcp_res = to_xcp_res(kobj);
499 if (!attribute->show)
502 return attribute->show(xcp_res, buf);
505 static const struct sysfs_ops xcp_cfg_res_sysfs_ops = {
506 .show = xcp_cfg_res_sysfs_attr_show,
509 static const struct kobj_type xcp_cfg_res_sysfs_ktype = {
510 .sysfs_ops = &xcp_cfg_res_sysfs_ops,
511 .default_groups = xcp_cfg_res_sysfs_groups,
514 const char *xcp_res_names[] = {
515 [AMDGPU_XCP_RES_XCC] = "xcc",
516 [AMDGPU_XCP_RES_DMA] = "dma",
517 [AMDGPU_XCP_RES_DEC] = "dec",
518 [AMDGPU_XCP_RES_JPEG] = "jpeg",
521 static int amdgpu_xcp_get_res_info(struct amdgpu_xcp_mgr *xcp_mgr,
523 struct amdgpu_xcp_cfg *xcp_cfg)
525 if (xcp_mgr->funcs && xcp_mgr->funcs->get_xcp_res_info)
526 return xcp_mgr->funcs->get_xcp_res_info(xcp_mgr, mode, xcp_cfg);
531 #define to_xcp_cfg(x) container_of(x, struct amdgpu_xcp_cfg, kobj)
532 static ssize_t supported_xcp_configs_show(struct kobject *kobj,
533 struct kobj_attribute *attr, char *buf)
535 struct amdgpu_xcp_cfg *xcp_cfg = to_xcp_cfg(kobj);
536 struct amdgpu_xcp_mgr *xcp_mgr = xcp_cfg->xcp_mgr;
540 if (!xcp_mgr || !xcp_mgr->supp_xcp_modes)
541 return sysfs_emit(buf, "Not supported\n");
543 for_each_inst(mode, xcp_mgr->supp_xcp_modes) {
544 size += sysfs_emit_at(buf, size, "%s%s", sep, xcp_desc[mode]);
548 size += sysfs_emit_at(buf, size, "\n");
553 static ssize_t supported_nps_configs_show(struct kobject *kobj,
554 struct kobj_attribute *attr, char *buf)
556 struct amdgpu_xcp_cfg *xcp_cfg = to_xcp_cfg(kobj);
560 if (!xcp_cfg || !xcp_cfg->compatible_nps_modes)
561 return sysfs_emit(buf, "Not supported\n");
563 for_each_inst(mode, xcp_cfg->compatible_nps_modes) {
564 size += sysfs_emit_at(buf, size, "%s%s", sep, nps_desc[mode]);
568 size += sysfs_emit_at(buf, size, "\n");
573 static ssize_t xcp_config_show(struct kobject *kobj,
574 struct kobj_attribute *attr, char *buf)
576 struct amdgpu_xcp_cfg *xcp_cfg = to_xcp_cfg(kobj);
578 return sysfs_emit(buf, "%s\n",
579 amdgpu_gfx_compute_mode_desc(xcp_cfg->mode));
582 static ssize_t xcp_config_store(struct kobject *kobj,
583 struct kobj_attribute *attr,
584 const char *buf, size_t size)
586 struct amdgpu_xcp_cfg *xcp_cfg = to_xcp_cfg(kobj);
589 if (!strncasecmp("SPX", buf, strlen("SPX")))
590 mode = AMDGPU_SPX_PARTITION_MODE;
591 else if (!strncasecmp("DPX", buf, strlen("DPX")))
592 mode = AMDGPU_DPX_PARTITION_MODE;
593 else if (!strncasecmp("TPX", buf, strlen("TPX")))
594 mode = AMDGPU_TPX_PARTITION_MODE;
595 else if (!strncasecmp("QPX", buf, strlen("QPX")))
596 mode = AMDGPU_QPX_PARTITION_MODE;
597 else if (!strncasecmp("CPX", buf, strlen("CPX")))
598 mode = AMDGPU_CPX_PARTITION_MODE;
602 r = amdgpu_xcp_get_res_info(xcp_cfg->xcp_mgr, mode, xcp_cfg);
607 xcp_cfg->mode = mode;
611 static struct kobj_attribute xcp_cfg_sysfs_mode =
612 __ATTR_RW_MODE(xcp_config, 0644);
614 static void xcp_cfg_sysfs_release(struct kobject *kobj)
616 struct amdgpu_xcp_cfg *xcp_cfg = to_xcp_cfg(kobj);
621 static const struct kobj_type xcp_cfg_sysfs_ktype = {
622 .release = xcp_cfg_sysfs_release,
623 .sysfs_ops = &kobj_sysfs_ops,
626 static struct kobj_attribute supp_part_sysfs_mode =
627 __ATTR_RO(supported_xcp_configs);
629 static struct kobj_attribute supp_nps_sysfs_mode =
630 __ATTR_RO(supported_nps_configs);
632 static const struct attribute *xcp_attrs[] = {
633 &supp_part_sysfs_mode.attr,
634 &xcp_cfg_sysfs_mode.attr,
638 void amdgpu_xcp_cfg_sysfs_init(struct amdgpu_device *adev)
640 struct amdgpu_xcp_res_details *xcp_res;
641 struct amdgpu_xcp_cfg *xcp_cfg;
642 int i, r, j, rid, mode;
647 xcp_cfg = kzalloc(sizeof(*xcp_cfg), GFP_KERNEL);
650 xcp_cfg->xcp_mgr = adev->xcp_mgr;
652 r = kobject_init_and_add(&xcp_cfg->kobj, &xcp_cfg_sysfs_ktype,
653 &adev->dev->kobj, "compute_partition_config");
657 r = sysfs_create_files(&xcp_cfg->kobj, xcp_attrs);
661 if (adev->gmc.supported_nps_modes != 0) {
662 r = sysfs_create_file(&xcp_cfg->kobj, &supp_nps_sysfs_mode.attr);
664 sysfs_remove_files(&xcp_cfg->kobj, xcp_attrs);
669 mode = (xcp_cfg->xcp_mgr->mode ==
670 AMDGPU_UNKNOWN_COMPUTE_PARTITION_MODE) ?
671 AMDGPU_SPX_PARTITION_MODE :
672 xcp_cfg->xcp_mgr->mode;
673 r = amdgpu_xcp_get_res_info(xcp_cfg->xcp_mgr, mode, xcp_cfg);
675 sysfs_remove_file(&xcp_cfg->kobj, &supp_nps_sysfs_mode.attr);
676 sysfs_remove_files(&xcp_cfg->kobj, xcp_attrs);
680 xcp_cfg->mode = mode;
681 for (i = 0; i < xcp_cfg->num_res; i++) {
682 xcp_res = &xcp_cfg->xcp_res[i];
684 r = kobject_init_and_add(&xcp_res->kobj,
685 &xcp_cfg_res_sysfs_ktype,
686 &xcp_cfg->kobj, "%s",
692 adev->xcp_mgr->xcp_cfg = xcp_cfg;
695 for (j = 0; j < i; j++) {
696 xcp_res = &xcp_cfg->xcp_res[i];
697 kobject_put(&xcp_res->kobj);
700 sysfs_remove_file(&xcp_cfg->kobj, &supp_nps_sysfs_mode.attr);
701 sysfs_remove_files(&xcp_cfg->kobj, xcp_attrs);
703 kobject_put(&xcp_cfg->kobj);
706 void amdgpu_xcp_cfg_sysfs_fini(struct amdgpu_device *adev)
708 struct amdgpu_xcp_res_details *xcp_res;
709 struct amdgpu_xcp_cfg *xcp_cfg;
715 xcp_cfg = adev->xcp_mgr->xcp_cfg;
716 for (i = 0; i < xcp_cfg->num_res; i++) {
717 xcp_res = &xcp_cfg->xcp_res[i];
718 kobject_put(&xcp_res->kobj);
721 sysfs_remove_file(&xcp_cfg->kobj, &supp_nps_sysfs_mode.attr);
722 sysfs_remove_files(&xcp_cfg->kobj, xcp_attrs);
723 kobject_put(&xcp_cfg->kobj);