mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-25 00:52:45 -04:00
Merge tag 'drm-next-2022-01-21' of git://anongit.freedesktop.org/drm/drm
Pull drm fixes from Dave Airlie: "Thanks to Daniel for taking care of things while I was out, just a set of merge window fixes that came in this week, two i915 display fixes and a bunch of misc amdgpu, along with a radeon regression fix. amdgpu: - SR-IOV fix - VCN harvest fix - Suspend/resume fixes - Tahiti fix - Enable GPU recovery on yellow carp radeon: - Fix error handling regression in radeon_driver_open_kms i915: - Update EHL display voltage swing table - Fix programming the ADL-P display TC voltage swing" * tag 'drm-next-2022-01-21' of git://anongit.freedesktop.org/drm/drm: drm/radeon: fix error handling in radeon_driver_open_kms drm/amd/amdgpu: fixing read wrong pf2vf data in SRIOV drm/amdgpu: apply vcn harvest quirk drm/i915/display/adlp: Implement new step in the TC voltage swing prog sequence drm/i915/display/ehl: Update voltage swing table drm/amd/display: Revert W/A for hard hangs on DCN20/DCN21 drm/amdgpu: drop flags check for CHIP_IP_DISCOVERY drm/amdgpu: Fix rejecting Tahiti GPUs drm/amdgpu: don't do resets on APUs which don't support it drm/amdgpu: invert the logic in amdgpu_device_should_recover_gpu() drm/amdgpu: Enable recovery on yellow carp
This commit is contained in:
@@ -38,7 +38,6 @@
|
||||
#include "clk/clk_11_0_0_offset.h"
|
||||
#include "clk/clk_11_0_0_sh_mask.h"
|
||||
|
||||
#include "irq/dcn20/irq_service_dcn20.h"
|
||||
|
||||
#undef FN
|
||||
#define FN(reg_name, field_name) \
|
||||
@@ -223,8 +222,6 @@ void dcn2_update_clocks(struct clk_mgr *clk_mgr_base,
|
||||
bool force_reset = false;
|
||||
bool p_state_change_support;
|
||||
int total_plane_count;
|
||||
int irq_src;
|
||||
uint32_t hpd_state;
|
||||
|
||||
if (dc->work_arounds.skip_clock_update)
|
||||
return;
|
||||
@@ -242,13 +239,7 @@ void dcn2_update_clocks(struct clk_mgr *clk_mgr_base,
|
||||
if (dc->res_pool->pp_smu)
|
||||
pp_smu = &dc->res_pool->pp_smu->nv_funcs;
|
||||
|
||||
for (irq_src = DC_IRQ_SOURCE_HPD1; irq_src <= DC_IRQ_SOURCE_HPD6; irq_src++) {
|
||||
hpd_state = dc_get_hpd_state_dcn20(dc->res_pool->irqs, irq_src);
|
||||
if (hpd_state)
|
||||
break;
|
||||
}
|
||||
|
||||
if (display_count == 0 && !hpd_state)
|
||||
if (display_count == 0)
|
||||
enter_display_off = true;
|
||||
|
||||
if (enter_display_off == safe_to_lower) {
|
||||
|
||||
@@ -42,7 +42,6 @@
|
||||
#include "clk/clk_10_0_2_sh_mask.h"
|
||||
#include "renoir_ip_offset.h"
|
||||
|
||||
#include "irq/dcn21/irq_service_dcn21.h"
|
||||
|
||||
/* Constants */
|
||||
|
||||
@@ -129,11 +128,9 @@ static void rn_update_clocks(struct clk_mgr *clk_mgr_base,
|
||||
struct dc_clocks *new_clocks = &context->bw_ctx.bw.dcn.clk;
|
||||
struct dc *dc = clk_mgr_base->ctx->dc;
|
||||
int display_count;
|
||||
int irq_src;
|
||||
bool update_dppclk = false;
|
||||
bool update_dispclk = false;
|
||||
bool dpp_clock_lowered = false;
|
||||
uint32_t hpd_state;
|
||||
|
||||
struct dmcu *dmcu = clk_mgr_base->ctx->dc->res_pool->dmcu;
|
||||
|
||||
@@ -150,14 +147,8 @@ static void rn_update_clocks(struct clk_mgr *clk_mgr_base,
|
||||
|
||||
display_count = rn_get_active_display_cnt_wa(dc, context);
|
||||
|
||||
for (irq_src = DC_IRQ_SOURCE_HPD1; irq_src <= DC_IRQ_SOURCE_HPD5; irq_src++) {
|
||||
hpd_state = dc_get_hpd_state_dcn21(dc->res_pool->irqs, irq_src);
|
||||
if (hpd_state)
|
||||
break;
|
||||
}
|
||||
|
||||
/* if we can go lower, go lower */
|
||||
if (display_count == 0 && !hpd_state) {
|
||||
if (display_count == 0) {
|
||||
rn_vbios_smu_set_dcn_low_power_state(clk_mgr, DCN_PWR_STATE_LOW_POWER);
|
||||
/* update power state */
|
||||
clk_mgr_base->clks.pwr_state = DCN_PWR_STATE_LOW_POWER;
|
||||
|
||||
@@ -132,31 +132,6 @@ enum dc_irq_source to_dal_irq_source_dcn20(
|
||||
}
|
||||
}
|
||||
|
||||
uint32_t dc_get_hpd_state_dcn20(struct irq_service *irq_service, enum dc_irq_source source)
|
||||
{
|
||||
const struct irq_source_info *info;
|
||||
uint32_t addr;
|
||||
uint32_t value;
|
||||
uint32_t current_status;
|
||||
|
||||
info = find_irq_source_info(irq_service, source);
|
||||
if (!info)
|
||||
return 0;
|
||||
|
||||
addr = info->status_reg;
|
||||
if (!addr)
|
||||
return 0;
|
||||
|
||||
value = dm_read_reg(irq_service->ctx, addr);
|
||||
current_status =
|
||||
get_reg_field_value(
|
||||
value,
|
||||
HPD0_DC_HPD_INT_STATUS,
|
||||
DC_HPD_SENSE);
|
||||
|
||||
return current_status;
|
||||
}
|
||||
|
||||
static bool hpd_ack(
|
||||
struct irq_service *irq_service,
|
||||
const struct irq_source_info *info)
|
||||
|
||||
@@ -31,6 +31,4 @@
|
||||
struct irq_service *dal_irq_service_dcn20_create(
|
||||
struct irq_service_init_data *init_data);
|
||||
|
||||
uint32_t dc_get_hpd_state_dcn20(struct irq_service *irq_service, enum dc_irq_source source);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -134,31 +134,6 @@ static enum dc_irq_source to_dal_irq_source_dcn21(struct irq_service *irq_servic
|
||||
return DC_IRQ_SOURCE_INVALID;
|
||||
}
|
||||
|
||||
uint32_t dc_get_hpd_state_dcn21(struct irq_service *irq_service, enum dc_irq_source source)
|
||||
{
|
||||
const struct irq_source_info *info;
|
||||
uint32_t addr;
|
||||
uint32_t value;
|
||||
uint32_t current_status;
|
||||
|
||||
info = find_irq_source_info(irq_service, source);
|
||||
if (!info)
|
||||
return 0;
|
||||
|
||||
addr = info->status_reg;
|
||||
if (!addr)
|
||||
return 0;
|
||||
|
||||
value = dm_read_reg(irq_service->ctx, addr);
|
||||
current_status =
|
||||
get_reg_field_value(
|
||||
value,
|
||||
HPD0_DC_HPD_INT_STATUS,
|
||||
DC_HPD_SENSE);
|
||||
|
||||
return current_status;
|
||||
}
|
||||
|
||||
static bool hpd_ack(
|
||||
struct irq_service *irq_service,
|
||||
const struct irq_source_info *info)
|
||||
|
||||
@@ -31,6 +31,4 @@
|
||||
struct irq_service *dal_irq_service_dcn21_create(
|
||||
struct irq_service_init_data *init_data);
|
||||
|
||||
uint32_t dc_get_hpd_state_dcn21(struct irq_service *irq_service, enum dc_irq_source source);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -79,7 +79,7 @@ void dal_irq_service_destroy(struct irq_service **irq_service)
|
||||
*irq_service = NULL;
|
||||
}
|
||||
|
||||
const struct irq_source_info *find_irq_source_info(
|
||||
static const struct irq_source_info *find_irq_source_info(
|
||||
struct irq_service *irq_service,
|
||||
enum dc_irq_source source)
|
||||
{
|
||||
|
||||
@@ -69,10 +69,6 @@ struct irq_service {
|
||||
const struct irq_service_funcs *funcs;
|
||||
};
|
||||
|
||||
const struct irq_source_info *find_irq_source_info(
|
||||
struct irq_service *irq_service,
|
||||
enum dc_irq_source source);
|
||||
|
||||
void dal_irq_service_construct(
|
||||
struct irq_service *irq_service,
|
||||
struct irq_service_init_data *init_data);
|
||||
|
||||
Reference in New Issue
Block a user