* [PATCH] drm/amdgpu: update uvd_v6_0_ring_vm_funcs to use new nop packet
@ 2018-06-28 18:37 Alex Deucher
[not found] ` <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
0 siblings, 1 reply; 15+ messages in thread
From: Alex Deucher @ 2018-06-28 18:37 UTC (permalink / raw)
To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher
Was missed when updating the uvd 6 module.
Fixes: 1aac3c9180 (drm/amdgpu: fix insert nop for UVD6 ring)
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
---
drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
index 1df1c6115341..8ee1c2eaaa14 100644
--- a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
@@ -1569,7 +1569,6 @@ static const struct amdgpu_ring_funcs uvd_v6_0_ring_phys_funcs = {
static const struct amdgpu_ring_funcs uvd_v6_0_ring_vm_funcs = {
.type = AMDGPU_RING_TYPE_UVD,
.align_mask = 0xf,
- .nop = PACKET0(mmUVD_NO_OP, 0),
.support_64bit_ptrs = false,
.get_rptr = uvd_v6_0_ring_get_rptr,
.get_wptr = uvd_v6_0_ring_get_wptr,
@@ -1587,7 +1586,7 @@ static const struct amdgpu_ring_funcs uvd_v6_0_ring_vm_funcs = {
.emit_hdp_flush = uvd_v6_0_ring_emit_hdp_flush,
.test_ring = uvd_v6_0_ring_test_ring,
.test_ib = amdgpu_uvd_ring_test_ib,
- .insert_nop = amdgpu_ring_insert_nop,
+ .insert_nop = uvd_v6_0_ring_insert_nop,
.pad_ib = amdgpu_ring_generic_pad_ib,
.begin_use = amdgpu_uvd_ring_begin_use,
.end_use = amdgpu_uvd_ring_end_use,
--
2.13.6
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
^ permalink raw reply related [flat|nested] 15+ messages in thread[parent not found: <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* [PATCH] drm/amdgpu: fix swapped emit_ib_size in vce3 [not found] ` <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2018-06-28 18:37 ` Alex Deucher [not found] ` <20180628183804.9846-2-alexander.deucher-5C7GfCeVMHo@public.gmane.org> 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pm: fix display count in non-DC path Alex Deucher ` (5 subsequent siblings) 6 siblings, 1 reply; 15+ messages in thread From: Alex Deucher @ 2018-06-28 18:37 UTC (permalink / raw) To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher The phys and vm versions had the values swapped. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> --- drivers/gpu/drm/amd/amdgpu/vce_v3_0.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/vce_v3_0.c b/drivers/gpu/drm/amd/amdgpu/vce_v3_0.c index 23927cdfbc23..99604d0262ad 100644 --- a/drivers/gpu/drm/amd/amdgpu/vce_v3_0.c +++ b/drivers/gpu/drm/amd/amdgpu/vce_v3_0.c @@ -900,7 +900,7 @@ static const struct amdgpu_ring_funcs vce_v3_0_ring_phys_funcs = { .emit_frame_size = 4 + /* vce_v3_0_emit_pipeline_sync */ 6, /* amdgpu_vce_ring_emit_fence x1 no user fence */ - .emit_ib_size = 5, /* vce_v3_0_ring_emit_ib */ + .emit_ib_size = 4, /* amdgpu_vce_ring_emit_ib */ .emit_ib = amdgpu_vce_ring_emit_ib, .emit_fence = amdgpu_vce_ring_emit_fence, .test_ring = amdgpu_vce_ring_test_ring, @@ -924,7 +924,7 @@ static const struct amdgpu_ring_funcs vce_v3_0_ring_vm_funcs = { 6 + /* vce_v3_0_emit_vm_flush */ 4 + /* vce_v3_0_emit_pipeline_sync */ 6 + 6, /* amdgpu_vce_ring_emit_fence x2 vm fence */ - .emit_ib_size = 4, /* amdgpu_vce_ring_emit_ib */ + .emit_ib_size = 5, /* vce_v3_0_ring_emit_ib */ .emit_ib = vce_v3_0_ring_emit_ib, .emit_vm_flush = vce_v3_0_emit_vm_flush, .emit_pipeline_sync = vce_v3_0_emit_pipeline_sync, -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <20180628183804.9846-2-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* Re: [PATCH] drm/amdgpu: fix swapped emit_ib_size in vce3 [not found] ` <20180628183804.9846-2-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2018-06-29 1:26 ` Zhang, Jerry (Junwei) 0 siblings, 0 replies; 15+ messages in thread From: Zhang, Jerry (Junwei) @ 2018-06-29 1:26 UTC (permalink / raw) To: Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher On 06/29/2018 02:37 AM, Alex Deucher wrote: > The phys and vm versions had the values swapped. > > Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Nice catch. Reviewed-by: Junwei Zhang <Jerry.Zhang@amd.com> > --- > drivers/gpu/drm/amd/amdgpu/vce_v3_0.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/amd/amdgpu/vce_v3_0.c b/drivers/gpu/drm/amd/amdgpu/vce_v3_0.c > index 23927cdfbc23..99604d0262ad 100644 > --- a/drivers/gpu/drm/amd/amdgpu/vce_v3_0.c > +++ b/drivers/gpu/drm/amd/amdgpu/vce_v3_0.c > @@ -900,7 +900,7 @@ static const struct amdgpu_ring_funcs vce_v3_0_ring_phys_funcs = { > .emit_frame_size = > 4 + /* vce_v3_0_emit_pipeline_sync */ > 6, /* amdgpu_vce_ring_emit_fence x1 no user fence */ > - .emit_ib_size = 5, /* vce_v3_0_ring_emit_ib */ > + .emit_ib_size = 4, /* amdgpu_vce_ring_emit_ib */ > .emit_ib = amdgpu_vce_ring_emit_ib, > .emit_fence = amdgpu_vce_ring_emit_fence, > .test_ring = amdgpu_vce_ring_test_ring, > @@ -924,7 +924,7 @@ static const struct amdgpu_ring_funcs vce_v3_0_ring_vm_funcs = { > 6 + /* vce_v3_0_emit_vm_flush */ > 4 + /* vce_v3_0_emit_pipeline_sync */ > 6 + 6, /* amdgpu_vce_ring_emit_fence x2 vm fence */ > - .emit_ib_size = 4, /* amdgpu_vce_ring_emit_ib */ > + .emit_ib_size = 5, /* vce_v3_0_ring_emit_ib */ > .emit_ib = vce_v3_0_ring_emit_ib, > .emit_vm_flush = vce_v3_0_emit_vm_flush, > .emit_pipeline_sync = vce_v3_0_emit_pipeline_sync, > _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH] drm/amdgpu/pm: fix display count in non-DC path [not found] ` <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org> 2018-06-28 18:37 ` [PATCH] drm/amdgpu: fix swapped emit_ib_size in vce3 Alex Deucher @ 2018-06-28 18:38 ` Alex Deucher [not found] ` <20180628183804.9846-3-alexander.deucher-5C7GfCeVMHo@public.gmane.org> 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: add missing byte swapping in process_pptables_v1_0.c Alex Deucher ` (4 subsequent siblings) 6 siblings, 1 reply; 15+ messages in thread From: Alex Deucher @ 2018-06-28 18:38 UTC (permalink / raw) To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher new_active_crtcs is a bitmask, new_active_crtc_count is the actual count. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> --- drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c index a003fd881a89..f1404adc3a90 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c @@ -1959,7 +1959,7 @@ void amdgpu_pm_compute_clocks(struct amdgpu_device *adev) if (!amdgpu_device_has_dc_support(adev)) { mutex_lock(&adev->pm.mutex); amdgpu_dpm_get_active_displays(adev); - adev->pm.pm_display_cfg.num_display = adev->pm.dpm.new_active_crtcs; + adev->pm.pm_display_cfg.num_display = adev->pm.dpm.new_active_crtc_count; adev->pm.pm_display_cfg.vrefresh = amdgpu_dpm_get_vrefresh(adev); adev->pm.pm_display_cfg.min_vblank_time = amdgpu_dpm_get_vblank_time(adev); /* we have issues with mclk switching with refresh rates over 120 hz on the non-DC code. */ -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <20180628183804.9846-3-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* Re: [PATCH] drm/amdgpu/pm: fix display count in non-DC path [not found] ` <20180628183804.9846-3-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2018-06-29 0:22 ` Zhu, Rex 0 siblings, 0 replies; 15+ messages in thread From: Zhu, Rex @ 2018-06-29 0:22 UTC (permalink / raw) To: Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander [-- Attachment #1.1: Type: text/plain, Size: 2206 bytes --] Reviewed-by: Rex Zhu <Rex.Zhu-5C7GfCeVMHo@public.gmane.org> Best Regards Rex ________________________________ From: amd-gfx <amd-gfx-bounces-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org> on behalf of Alex Deucher <alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Sent: Friday, June 29, 2018 2:38 AM To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander Subject: [PATCH] drm/amdgpu/pm: fix display count in non-DC path new_active_crtcs is a bitmask, new_active_crtc_count is the actual count. Signed-off-by: Alex Deucher <alexander.deucher-5C7GfCeVMHo@public.gmane.org> --- drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c index a003fd881a89..f1404adc3a90 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c @@ -1959,7 +1959,7 @@ void amdgpu_pm_compute_clocks(struct amdgpu_device *adev) if (!amdgpu_device_has_dc_support(adev)) { mutex_lock(&adev->pm.mutex); amdgpu_dpm_get_active_displays(adev); - adev->pm.pm_display_cfg.num_display = adev->pm.dpm.new_active_crtcs; + adev->pm.pm_display_cfg.num_display = adev->pm.dpm.new_active_crtc_count; adev->pm.pm_display_cfg.vrefresh = amdgpu_dpm_get_vrefresh(adev); adev->pm.pm_display_cfg.min_vblank_time = amdgpu_dpm_get_vblank_time(adev); /* we have issues with mclk switching with refresh rates over 120 hz on the non-DC code. */ -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx amd-gfx Info Page - freedesktop.org<https://lists.freedesktop.org/mailman/listinfo/amd-gfx> lists.freedesktop.org Subscribing to amd-gfx: Subscribe to amd-gfx by filling out the following form. Use of all freedesktop.org lists is subject to our Code of Conduct. [-- Attachment #1.2: Type: text/html, Size: 6420 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH] drm/amdgpu/pp: add missing byte swapping in process_pptables_v1_0.c [not found] ` <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org> 2018-06-28 18:37 ` [PATCH] drm/amdgpu: fix swapped emit_ib_size in vce3 Alex Deucher 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pm: fix display count in non-DC path Alex Deucher @ 2018-06-28 18:38 ` Alex Deucher [not found] ` <20180628183804.9846-4-alexander.deucher-5C7GfCeVMHo@public.gmane.org> 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: fix endian swapping in atomctrl_get_voltage_range Alex Deucher ` (3 subsequent siblings) 6 siblings, 1 reply; 15+ messages in thread From: Alex Deucher @ 2018-06-28 18:38 UTC (permalink / raw) To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher Values need to be swapped on big endian. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> --- drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c b/drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c index 35bd9870ab10..4e1fd5393845 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c @@ -183,10 +183,10 @@ static int get_vddc_lookup_table( ATOM_Tonga_Voltage_Lookup_Record, entries, vddc_lookup_pp_tables, i); record->us_calculated = 0; - record->us_vdd = atom_record->usVdd; - record->us_cac_low = atom_record->usCACLow; - record->us_cac_mid = atom_record->usCACMid; - record->us_cac_high = atom_record->usCACHigh; + record->us_vdd = le16_to_cpu(atom_record->usVdd); + record->us_cac_low = le16_to_cpu(atom_record->usCACLow); + record->us_cac_mid = le16_to_cpu(atom_record->usCACMid); + record->us_cac_high = le16_to_cpu(atom_record->usCACHigh); } *lookup_table = table; -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <20180628183804.9846-4-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* Re: [PATCH] drm/amdgpu/pp: add missing byte swapping in process_pptables_v1_0.c [not found] ` <20180628183804.9846-4-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2018-06-29 0:22 ` Zhu, Rex 0 siblings, 0 replies; 15+ messages in thread From: Zhu, Rex @ 2018-06-29 0:22 UTC (permalink / raw) To: Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander [-- Attachment #1.1: Type: text/plain, Size: 2372 bytes --] Reviewed-by: Rex Zhu <Rex.Zhu-5C7GfCeVMHo@public.gmane.org> Best Regards Rex ________________________________ From: amd-gfx <amd-gfx-bounces-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org> on behalf of Alex Deucher <alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Sent: Friday, June 29, 2018 2:38 AM To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander Subject: [PATCH] drm/amdgpu/pp: add missing byte swapping in process_pptables_v1_0.c Values need to be swapped on big endian. Signed-off-by: Alex Deucher <alexander.deucher-5C7GfCeVMHo@public.gmane.org> --- drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c b/drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c index 35bd9870ab10..4e1fd5393845 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c @@ -183,10 +183,10 @@ static int get_vddc_lookup_table( ATOM_Tonga_Voltage_Lookup_Record, entries, vddc_lookup_pp_tables, i); record->us_calculated = 0; - record->us_vdd = atom_record->usVdd; - record->us_cac_low = atom_record->usCACLow; - record->us_cac_mid = atom_record->usCACMid; - record->us_cac_high = atom_record->usCACHigh; + record->us_vdd = le16_to_cpu(atom_record->usVdd); + record->us_cac_low = le16_to_cpu(atom_record->usCACLow); + record->us_cac_mid = le16_to_cpu(atom_record->usCACMid); + record->us_cac_high = le16_to_cpu(atom_record->usCACHigh); } *lookup_table = table; -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx amd-gfx Info Page - freedesktop.org<https://lists.freedesktop.org/mailman/listinfo/amd-gfx> lists.freedesktop.org Subscribing to amd-gfx: Subscribe to amd-gfx by filling out the following form. Use of all freedesktop.org lists is subject to our Code of Conduct. [-- Attachment #1.2: Type: text/html, Size: 6885 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH] drm/amdgpu/pp: fix endian swapping in atomctrl_get_voltage_range [not found] ` <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org> ` (2 preceding siblings ...) 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: add missing byte swapping in process_pptables_v1_0.c Alex Deucher @ 2018-06-28 18:38 ` Alex Deucher [not found] ` <20180628183804.9846-5-alexander.deucher-5C7GfCeVMHo@public.gmane.org> 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_init_dpm_defaults Alex Deucher ` (2 subsequent siblings) 6 siblings, 1 reply; 15+ messages in thread From: Alex Deucher @ 2018-06-28 18:38 UTC (permalink / raw) To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher Need to swap before doing arthimetic on the values. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> --- drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c b/drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c index 7047e29755c3..01dc46dc9c8a 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c @@ -1544,14 +1544,14 @@ void atomctrl_get_voltage_range(struct pp_hwmgr *hwmgr, uint32_t *max_vddc, switch (hwmgr->chip_id) { case CHIP_TONGA: case CHIP_FIJI: - *max_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_3 *)profile)->ulMaxVddc/4); - *min_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_3 *)profile)->ulMinVddc/4); + *max_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_3 *)profile)->ulMaxVddc) / 4; + *min_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_3 *)profile)->ulMinVddc) / 4; return; case CHIP_POLARIS11: case CHIP_POLARIS10: case CHIP_POLARIS12: - *max_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_6 *)profile)->ulMaxVddc/100); - *min_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_6 *)profile)->ulMinVddc/100); + *max_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_6 *)profile)->ulMaxVddc) / 100; + *min_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_6 *)profile)->ulMinVddc) / 100; return; default: break; -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <20180628183804.9846-5-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* Re: [PATCH] drm/amdgpu/pp: fix endian swapping in atomctrl_get_voltage_range [not found] ` <20180628183804.9846-5-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2018-06-29 0:21 ` Zhu, Rex 0 siblings, 0 replies; 15+ messages in thread From: Zhu, Rex @ 2018-06-29 0:21 UTC (permalink / raw) To: Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander [-- Attachment #1.1: Type: text/plain, Size: 2823 bytes --] Reviewed-by: Rex Zhu <Rex.Zhu-5C7GfCeVMHo@public.gmane.org> Best Regards Rex ________________________________ From: amd-gfx <amd-gfx-bounces-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org> on behalf of Alex Deucher <alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Sent: Friday, June 29, 2018 2:38 AM To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander Subject: [PATCH] drm/amdgpu/pp: fix endian swapping in atomctrl_get_voltage_range Need to swap before doing arthimetic on the values. Signed-off-by: Alex Deucher <alexander.deucher-5C7GfCeVMHo@public.gmane.org> --- drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c b/drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c index 7047e29755c3..01dc46dc9c8a 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c @@ -1544,14 +1544,14 @@ void atomctrl_get_voltage_range(struct pp_hwmgr *hwmgr, uint32_t *max_vddc, switch (hwmgr->chip_id) { case CHIP_TONGA: case CHIP_FIJI: - *max_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_3 *)profile)->ulMaxVddc/4); - *min_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_3 *)profile)->ulMinVddc/4); + *max_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_3 *)profile)->ulMaxVddc) / 4; + *min_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_3 *)profile)->ulMinVddc) / 4; return; case CHIP_POLARIS11: case CHIP_POLARIS10: case CHIP_POLARIS12: - *max_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_6 *)profile)->ulMaxVddc/100); - *min_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_6 *)profile)->ulMinVddc/100); + *max_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_6 *)profile)->ulMaxVddc) / 100; + *min_vddc = le32_to_cpu(((ATOM_ASIC_PROFILING_INFO_V3_6 *)profile)->ulMinVddc) / 100; return; default: break; -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx amd-gfx Info Page - freedesktop.org<https://lists.freedesktop.org/mailman/listinfo/amd-gfx> lists.freedesktop.org Subscribing to amd-gfx: Subscribe to amd-gfx by filling out the following form. Use of all freedesktop.org lists is subject to our Code of Conduct. [-- Attachment #1.2: Type: text/html, Size: 7998 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_init_dpm_defaults [not found] ` <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org> ` (3 preceding siblings ...) 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: fix endian swapping in atomctrl_get_voltage_range Alex Deucher @ 2018-06-28 18:38 ` Alex Deucher [not found] ` <20180628183804.9846-6-alexander.deucher-5C7GfCeVMHo@public.gmane.org> 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_get_pp_table_entry_callback_func_v1 Alex Deucher 2018-06-29 14:57 ` [PATCH] drm/amdgpu: update uvd_v6_0_ring_vm_funcs to use new nop packet Alex Deucher 6 siblings, 1 reply; 15+ messages in thread From: Alex Deucher @ 2018-06-28 18:38 UTC (permalink / raw) To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher Should be mclk rather than sclk. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> --- drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c index de295b7442b7..e5c27d12aa49 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c @@ -1578,7 +1578,7 @@ static void smu7_init_dpm_defaults(struct pp_hwmgr *hwmgr) data->current_profile_setting.sclk_up_hyst = 0; data->current_profile_setting.sclk_down_hyst = 100; data->current_profile_setting.sclk_activity = SMU7_SCLK_TARGETACTIVITY_DFLT; - data->current_profile_setting.bupdate_sclk = 1; + data->current_profile_setting.bupdate_mclk = 1; data->current_profile_setting.mclk_up_hyst = 0; data->current_profile_setting.mclk_down_hyst = 100; data->current_profile_setting.mclk_activity = SMU7_MCLK_TARGETACTIVITY_DFLT; -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <20180628183804.9846-6-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* Re: [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_init_dpm_defaults [not found] ` <20180628183804.9846-6-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2018-06-29 0:21 ` Zhu, Rex 0 siblings, 0 replies; 15+ messages in thread From: Zhu, Rex @ 2018-06-29 0:21 UTC (permalink / raw) To: Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander [-- Attachment #1.1: Type: text/plain, Size: 2071 bytes --] Reviewed-by: Rex Zhu <Rex.Zhu-5C7GfCeVMHo@public.gmane.org> Best Regards Rex ________________________________ From: amd-gfx <amd-gfx-bounces-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org> on behalf of Alex Deucher <alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Sent: Friday, June 29, 2018 2:38 AM To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander Subject: [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_init_dpm_defaults Should be mclk rather than sclk. Signed-off-by: Alex Deucher <alexander.deucher-5C7GfCeVMHo@public.gmane.org> --- drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c index de295b7442b7..e5c27d12aa49 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c @@ -1578,7 +1578,7 @@ static void smu7_init_dpm_defaults(struct pp_hwmgr *hwmgr) data->current_profile_setting.sclk_up_hyst = 0; data->current_profile_setting.sclk_down_hyst = 100; data->current_profile_setting.sclk_activity = SMU7_SCLK_TARGETACTIVITY_DFLT; - data->current_profile_setting.bupdate_sclk = 1; + data->current_profile_setting.bupdate_mclk = 1; data->current_profile_setting.mclk_up_hyst = 0; data->current_profile_setting.mclk_down_hyst = 100; data->current_profile_setting.mclk_activity = SMU7_MCLK_TARGETACTIVITY_DFLT; -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx amd-gfx Info Page - freedesktop.org<https://lists.freedesktop.org/mailman/listinfo/amd-gfx> lists.freedesktop.org Subscribing to amd-gfx: Subscribe to amd-gfx by filling out the following form. Use of all freedesktop.org lists is subject to our Code of Conduct. [-- Attachment #1.2: Type: text/html, Size: 5679 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_get_pp_table_entry_callback_func_v1 [not found] ` <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org> ` (4 preceding siblings ...) 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_init_dpm_defaults Alex Deucher @ 2018-06-28 18:38 ` Alex Deucher [not found] ` <20180628183804.9846-7-alexander.deucher-5C7GfCeVMHo@public.gmane.org> 2018-06-29 14:57 ` [PATCH] drm/amdgpu: update uvd_v6_0_ring_vm_funcs to use new nop packet Alex Deucher 6 siblings, 1 reply; 15+ messages in thread From: Alex Deucher @ 2018-06-28 18:38 UTC (permalink / raw) To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher Should be using PCIELaneLow for the low clock level. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> --- drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c index e5c27d12aa49..077b79938528 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c @@ -3183,7 +3183,7 @@ static int smu7_get_pp_table_entry_callback_func_v1(struct pp_hwmgr *hwmgr, performance_level->pcie_gen = get_pcie_gen_support(data->pcie_gen_cap, state_entry->ucPCIEGenLow); performance_level->pcie_lane = get_pcie_lane_support(data->pcie_lane_cap, - state_entry->ucPCIELaneHigh); + state_entry->ucPCIELaneLow); performance_level = &(smu7_power_state->performance_levels [smu7_power_state->performance_level_count++]); -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
[parent not found: <20180628183804.9846-7-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* Re: [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_get_pp_table_entry_callback_func_v1 [not found] ` <20180628183804.9846-7-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2018-06-29 0:21 ` Zhu, Rex 0 siblings, 0 replies; 15+ messages in thread From: Zhu, Rex @ 2018-06-29 0:21 UTC (permalink / raw) To: Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander [-- Attachment #1.1: Type: text/plain, Size: 2071 bytes --] Reviewed-by: Rex Zhu <Rex.Zhu-5C7GfCeVMHo@public.gmane.org> Best Regards Rex ________________________________ From: amd-gfx <amd-gfx-bounces-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org> on behalf of Alex Deucher <alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Sent: Friday, June 29, 2018 2:38 AM To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander Subject: [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_get_pp_table_entry_callback_func_v1 Should be using PCIELaneLow for the low clock level. Signed-off-by: Alex Deucher <alexander.deucher-5C7GfCeVMHo@public.gmane.org> --- drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c index e5c27d12aa49..077b79938528 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c @@ -3183,7 +3183,7 @@ static int smu7_get_pp_table_entry_callback_func_v1(struct pp_hwmgr *hwmgr, performance_level->pcie_gen = get_pcie_gen_support(data->pcie_gen_cap, state_entry->ucPCIEGenLow); performance_level->pcie_lane = get_pcie_lane_support(data->pcie_lane_cap, - state_entry->ucPCIELaneHigh); + state_entry->ucPCIELaneLow); performance_level = &(smu7_power_state->performance_levels [smu7_power_state->performance_level_count++]); -- 2.13.6 _______________________________________________ amd-gfx mailing list amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx amd-gfx Info Page - freedesktop.org<https://lists.freedesktop.org/mailman/listinfo/amd-gfx> lists.freedesktop.org Subscribing to amd-gfx: Subscribe to amd-gfx by filling out the following form. Use of all freedesktop.org lists is subject to our Code of Conduct. [-- Attachment #1.2: Type: text/html, Size: 5979 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH] drm/amdgpu: update uvd_v6_0_ring_vm_funcs to use new nop packet [not found] ` <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org> ` (5 preceding siblings ...) 2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_get_pp_table_entry_callback_func_v1 Alex Deucher @ 2018-06-29 14:57 ` Alex Deucher [not found] ` <CADnq5_PcCJ8cc0OSu5ghb+iiWUXOJp_fjJS9mSrvoPZs2Krkmg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 6 siblings, 1 reply; 15+ messages in thread From: Alex Deucher @ 2018-06-29 14:57 UTC (permalink / raw) To: amd-gfx list; +Cc: Alex Deucher Ping? On Thu, Jun 28, 2018 at 2:37 PM, Alex Deucher <alexdeucher@gmail.com> wrote: > Was missed when updating the uvd 6 module. > > Fixes: 1aac3c9180 (drm/amdgpu: fix insert nop for UVD6 ring) > Signed-off-by: Alex Deucher <alexander.deucher@amd.com> > --- > drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c > index 1df1c6115341..8ee1c2eaaa14 100644 > --- a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c > +++ b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c > @@ -1569,7 +1569,6 @@ static const struct amdgpu_ring_funcs uvd_v6_0_ring_phys_funcs = { > static const struct amdgpu_ring_funcs uvd_v6_0_ring_vm_funcs = { > .type = AMDGPU_RING_TYPE_UVD, > .align_mask = 0xf, > - .nop = PACKET0(mmUVD_NO_OP, 0), > .support_64bit_ptrs = false, > .get_rptr = uvd_v6_0_ring_get_rptr, > .get_wptr = uvd_v6_0_ring_get_wptr, > @@ -1587,7 +1586,7 @@ static const struct amdgpu_ring_funcs uvd_v6_0_ring_vm_funcs = { > .emit_hdp_flush = uvd_v6_0_ring_emit_hdp_flush, > .test_ring = uvd_v6_0_ring_test_ring, > .test_ib = amdgpu_uvd_ring_test_ib, > - .insert_nop = amdgpu_ring_insert_nop, > + .insert_nop = uvd_v6_0_ring_insert_nop, > .pad_ib = amdgpu_ring_generic_pad_ib, > .begin_use = amdgpu_uvd_ring_begin_use, > .end_use = amdgpu_uvd_ring_end_use, > -- > 2.13.6 > _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <CADnq5_PcCJ8cc0OSu5ghb+iiWUXOJp_fjJS9mSrvoPZs2Krkmg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] drm/amdgpu: update uvd_v6_0_ring_vm_funcs to use new nop packet [not found] ` <CADnq5_PcCJ8cc0OSu5ghb+iiWUXOJp_fjJS9mSrvoPZs2Krkmg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2018-06-29 21:21 ` Leo Liu 0 siblings, 0 replies; 15+ messages in thread From: Leo Liu @ 2018-06-29 21:21 UTC (permalink / raw) To: Alex Deucher, amd-gfx list; +Cc: Alex Deucher Have this patch overlooked. This is a good catch. Reviewed-by: Leo Liu <leo.liu@amd.com> On 2018-06-29 10:57 AM, Alex Deucher wrote: > Ping? > > On Thu, Jun 28, 2018 at 2:37 PM, Alex Deucher <alexdeucher@gmail.com> wrote: >> Was missed when updating the uvd 6 module. >> >> Fixes: 1aac3c9180 (drm/amdgpu: fix insert nop for UVD6 ring) >> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> >> --- >> drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c | 3 +-- >> 1 file changed, 1 insertion(+), 2 deletions(-) >> >> diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c >> index 1df1c6115341..8ee1c2eaaa14 100644 >> --- a/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c >> +++ b/drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c >> @@ -1569,7 +1569,6 @@ static const struct amdgpu_ring_funcs uvd_v6_0_ring_phys_funcs = { >> static const struct amdgpu_ring_funcs uvd_v6_0_ring_vm_funcs = { >> .type = AMDGPU_RING_TYPE_UVD, >> .align_mask = 0xf, >> - .nop = PACKET0(mmUVD_NO_OP, 0), >> .support_64bit_ptrs = false, >> .get_rptr = uvd_v6_0_ring_get_rptr, >> .get_wptr = uvd_v6_0_ring_get_wptr, >> @@ -1587,7 +1586,7 @@ static const struct amdgpu_ring_funcs uvd_v6_0_ring_vm_funcs = { >> .emit_hdp_flush = uvd_v6_0_ring_emit_hdp_flush, >> .test_ring = uvd_v6_0_ring_test_ring, >> .test_ib = amdgpu_uvd_ring_test_ib, >> - .insert_nop = amdgpu_ring_insert_nop, >> + .insert_nop = uvd_v6_0_ring_insert_nop, >> .pad_ib = amdgpu_ring_generic_pad_ib, >> .begin_use = amdgpu_uvd_ring_begin_use, >> .end_use = amdgpu_uvd_ring_end_use, >> -- >> 2.13.6 >> > _______________________________________________ > amd-gfx mailing list > amd-gfx@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/amd-gfx _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2018-06-29 21:21 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-28 18:37 [PATCH] drm/amdgpu: update uvd_v6_0_ring_vm_funcs to use new nop packet Alex Deucher
[not found] ` <20180628183804.9846-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2018-06-28 18:37 ` [PATCH] drm/amdgpu: fix swapped emit_ib_size in vce3 Alex Deucher
[not found] ` <20180628183804.9846-2-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2018-06-29 1:26 ` Zhang, Jerry (Junwei)
2018-06-28 18:38 ` [PATCH] drm/amdgpu/pm: fix display count in non-DC path Alex Deucher
[not found] ` <20180628183804.9846-3-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2018-06-29 0:22 ` Zhu, Rex
2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: add missing byte swapping in process_pptables_v1_0.c Alex Deucher
[not found] ` <20180628183804.9846-4-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2018-06-29 0:22 ` Zhu, Rex
2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: fix endian swapping in atomctrl_get_voltage_range Alex Deucher
[not found] ` <20180628183804.9846-5-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2018-06-29 0:21 ` Zhu, Rex
2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_init_dpm_defaults Alex Deucher
[not found] ` <20180628183804.9846-6-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2018-06-29 0:21 ` Zhu, Rex
2018-06-28 18:38 ` [PATCH] drm/amdgpu/pp: fix copy paste typo in smu7_get_pp_table_entry_callback_func_v1 Alex Deucher
[not found] ` <20180628183804.9846-7-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2018-06-29 0:21 ` Zhu, Rex
2018-06-29 14:57 ` [PATCH] drm/amdgpu: update uvd_v6_0_ring_vm_funcs to use new nop packet Alex Deucher
[not found] ` <CADnq5_PcCJ8cc0OSu5ghb+iiWUXOJp_fjJS9mSrvoPZs2Krkmg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-06-29 21:21 ` Leo Liu
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.