Skip to content

Commit 06fbf84

Browse files
committed
Merge tag 'amd-drm-fixes-6.9-2024-05-10' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
amd-drm-fixes-6.9-2024-05-10: amdgpu: - DCN 3.5 fix - MST DSC fixes - S0i3 fix - S4 fix - HDP MMIO mapping fix - Fix a regression in visible vram handling amdkfd: - Spatial partition fix Signed-off-by: Dave Airlie <airlied@redhat.com> From: Alex Deucher <alexander.deucher@amd.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240510171110.1394940-1-alexander.deucher@amd.com
2 parents fa68a34 + 8d2c930 commit 06fbf84

File tree

7 files changed

+51
-18
lines changed

7 files changed

+51
-18
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ bool amdgpu_res_cpu_visible(struct amdgpu_device *adev,
427427

428428
amdgpu_res_first(res, 0, res->size, &cursor);
429429
while (cursor.remaining) {
430-
if ((cursor.start + cursor.size) >= adev->gmc.visible_vram_size)
430+
if ((cursor.start + cursor.size) > adev->gmc.visible_vram_size)
431431
return false;
432432
amdgpu_res_next(&cursor, cursor.size);
433433
}

drivers/gpu/drm/amd/amdkfd/kfd_chardev.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,7 @@ static int kfd_ioctl_alloc_memory_of_gpu(struct file *filep,
11391139
goto err_unlock;
11401140
}
11411141
offset = dev->adev->rmmio_remap.bus_addr;
1142-
if (!offset) {
1142+
if (!offset || (PAGE_SIZE > 4096)) {
11431143
err = -ENOMEM;
11441144
goto err_unlock;
11451145
}
@@ -2307,7 +2307,7 @@ static int criu_restore_memory_of_gpu(struct kfd_process_device *pdd,
23072307
return -EINVAL;
23082308
}
23092309
offset = pdd->dev->adev->rmmio_remap.bus_addr;
2310-
if (!offset) {
2310+
if (!offset || (PAGE_SIZE > 4096)) {
23112311
pr_err("amdgpu_amdkfd_get_mmio_remap_phys_addr failed\n");
23122312
return -ENOMEM;
23132313
}
@@ -3349,6 +3349,9 @@ static int kfd_mmio_mmap(struct kfd_node *dev, struct kfd_process *process,
33493349
if (vma->vm_end - vma->vm_start != PAGE_SIZE)
33503350
return -EINVAL;
33513351

3352+
if (PAGE_SIZE > 4096)
3353+
return -EINVAL;
3354+
33523355
address = dev->adev->rmmio_remap.bus_addr;
33533356

33543357
vm_flags_set(vma, VM_IO | VM_DONTCOPY | VM_DONTEXPAND | VM_NORESERVE |

drivers/gpu/drm/amd/amdkfd/kfd_topology.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1997,9 +1997,8 @@ int kfd_topology_add_device(struct kfd_node *gpu)
19971997
HSA_CAP_ASIC_REVISION_MASK);
19981998

19991999
dev->node_props.location_id = pci_dev_id(gpu->adev->pdev);
2000-
/* On multi-partition nodes, node id = location_id[31:28] */
2001-
if (gpu->kfd->num_nodes > 1)
2002-
dev->node_props.location_id |= (dev->gpu->node_id << 28);
2000+
if (KFD_GC_VERSION(dev->gpu->kfd) == IP_VERSION(9, 4, 3))
2001+
dev->node_props.location_id |= dev->gpu->node_id;
20032002

20042003
dev->node_props.domain = pci_domain_nr(gpu->adev->pdev->bus);
20052004
dev->node_props.max_engine_clk_fcompute =

drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,8 +1219,10 @@ static bool is_dsc_need_re_compute(
12191219
if (dc_link->type != dc_connection_mst_branch)
12201220
return false;
12211221

1222-
if (!(dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.fields.dsc_support.DSC_SUPPORT ||
1223-
dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.fields.dsc_support.DSC_PASSTHROUGH_SUPPORT))
1222+
/* add a check for older MST DSC with no virtual DPCDs */
1223+
if (needs_dsc_aux_workaround(dc_link) &&
1224+
(!(dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.fields.dsc_support.DSC_SUPPORT ||
1225+
dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.fields.dsc_support.DSC_PASSTHROUGH_SUPPORT)))
12241226
return false;
12251227

12261228
for (i = 0; i < MAX_PIPES; i++)
@@ -1240,7 +1242,15 @@ static bool is_dsc_need_re_compute(
12401242
continue;
12411243

12421244
aconnector = (struct amdgpu_dm_connector *) stream->dm_stream_context;
1243-
if (!aconnector)
1245+
if (!aconnector || !aconnector->dsc_aux)
1246+
continue;
1247+
1248+
/*
1249+
* check if cached virtual MST DSC caps are available and DSC is supported
1250+
* as per specifications in their Virtual DPCD registers.
1251+
*/
1252+
if (!(aconnector->dc_sink->dsc_caps.dsc_dec_caps.is_dsc_supported ||
1253+
aconnector->dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.fields.dsc_support.DSC_PASSTHROUGH_SUPPORT))
12441254
continue;
12451255

12461256
stream_on_link[new_stream_on_link_num] = aconnector;

drivers/gpu/drm/amd/display/dc/dml/dcn35/dcn35_fpu.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,9 @@ struct _vcs_dpi_soc_bounding_box_st dcn3_5_soc = {
195195
.dcn_downspread_percent = 0.5,
196196
.gpuvm_min_page_size_bytes = 4096,
197197
.hostvm_min_page_size_bytes = 4096,
198-
.do_urgent_latency_adjustment = 0,
198+
.do_urgent_latency_adjustment = 1,
199199
.urgent_latency_adjustment_fabric_clock_component_us = 0,
200-
.urgent_latency_adjustment_fabric_clock_reference_mhz = 0,
200+
.urgent_latency_adjustment_fabric_clock_reference_mhz = 3000,
201201
};
202202

203203
void dcn35_build_wm_range_table_fpu(struct clk_mgr *clk_mgr)

drivers/gpu/drm/amd/display/dc/hwss/dcn35/dcn35_hwseq.c

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -638,22 +638,43 @@ void dcn35_power_down_on_boot(struct dc *dc)
638638

639639
bool dcn35_apply_idle_power_optimizations(struct dc *dc, bool enable)
640640
{
641-
struct dc_link *edp_links[MAX_NUM_EDP];
642-
int i, edp_num;
643641
if (dc->debug.dmcub_emulation)
644642
return true;
645643

646644
if (enable) {
647-
dc_get_edp_links(dc, edp_links, &edp_num);
648-
if (edp_num == 0 || edp_num > 1)
649-
return false;
645+
uint32_t num_active_edp = 0;
646+
int i;
650647

651648
for (i = 0; i < dc->current_state->stream_count; ++i) {
652649
struct dc_stream_state *stream = dc->current_state->streams[i];
650+
struct dc_link *link = stream->link;
651+
bool is_psr = link && !link->panel_config.psr.disable_psr &&
652+
(link->psr_settings.psr_version == DC_PSR_VERSION_1 ||
653+
link->psr_settings.psr_version == DC_PSR_VERSION_SU_1);
654+
bool is_replay = link && link->replay_settings.replay_feature_enabled;
655+
656+
/* Ignore streams that disabled. */
657+
if (stream->dpms_off)
658+
continue;
659+
660+
/* Active external displays block idle optimizations. */
661+
if (!dc_is_embedded_signal(stream->signal))
662+
return false;
663+
664+
/* If not PWRSEQ0 can't enter idle optimizations */
665+
if (link && link->link_index != 0)
666+
return false;
653667

654-
if (!stream->dpms_off && !dc_is_embedded_signal(stream->signal))
668+
/* Check for panel power features required for idle optimizations. */
669+
if (!is_psr && !is_replay)
655670
return false;
671+
672+
num_active_edp += 1;
656673
}
674+
675+
/* If more than one active eDP then disallow. */
676+
if (num_active_edp > 1)
677+
return false;
657678
}
658679

659680
// TODO: review other cases when idle optimization is allowed

drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_4_ppt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ static int smu_v13_0_4_system_features_control(struct smu_context *smu, bool en)
226226
struct amdgpu_device *adev = smu->adev;
227227
int ret = 0;
228228

229-
if (!en && !adev->in_s0ix) {
229+
if (!en && adev->in_s4) {
230230
/* Adds a GFX reset as workaround just before sending the
231231
* MP1_UNLOAD message to prevent GC/RLC/PMFW from entering
232232
* an invalid state.

0 commit comments

Comments
 (0)