mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
drm/amdgpu: add vcn_v2_0 ip dump support
Add support of vcn ip dump in the devcoredump for vcn_v2_0. Signed-off-by: Sunil Khatri <sunil.khatri@amd.com> Acked-by: Leo Liu <leo.liu@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
ef9f3b5fd9
commit
2239aaa204
@ -53,6 +53,42 @@
|
||||
#define mmUVD_LMI_RBC_IB_64BIT_BAR_LOW_INTERNAL_OFFSET 0x5a7
|
||||
#define mmUVD_RBC_IB_SIZE_INTERNAL_OFFSET 0x1e2
|
||||
|
||||
static const struct amdgpu_hwip_reg_entry vcn_reg_list_2_0[] = {
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_POWER_STATUS),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_STATUS),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_CONTEXT_ID),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_CONTEXT_ID2),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_GPCOM_VCPU_DATA0),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_GPCOM_VCPU_DATA1),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_GPCOM_VCPU_CMD),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_BASE_HI),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_BASE_LO),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_BASE_HI2),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_BASE_LO2),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_BASE_HI3),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_BASE_LO3),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_BASE_HI4),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_BASE_LO4),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_RPTR),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_WPTR),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_RPTR2),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_WPTR2),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_RPTR3),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_WPTR3),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_RPTR4),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_WPTR4),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_SIZE),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_SIZE2),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_SIZE3),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_RB_SIZE4),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_PGFSM_CONFIG),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_PGFSM_STATUS),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_DPG_LMA_CTL),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_DPG_LMA_DATA),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_DPG_LMA_MASK),
|
||||
SOC15_REG_ENTRY_STR(VCN, 0, mmUVD_DPG_PAUSE)
|
||||
};
|
||||
|
||||
static void vcn_v2_0_set_dec_ring_funcs(struct amdgpu_device *adev);
|
||||
static void vcn_v2_0_set_enc_ring_funcs(struct amdgpu_device *adev);
|
||||
static void vcn_v2_0_set_irq_funcs(struct amdgpu_device *adev);
|
||||
@ -96,6 +132,8 @@ static int vcn_v2_0_sw_init(void *handle)
|
||||
{
|
||||
struct amdgpu_ring *ring;
|
||||
int i, r;
|
||||
uint32_t reg_count = ARRAY_SIZE(vcn_reg_list_2_0);
|
||||
uint32_t *ptr;
|
||||
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
|
||||
volatile struct amdgpu_fw_shared *fw_shared;
|
||||
|
||||
@ -184,6 +222,15 @@ static int vcn_v2_0_sw_init(void *handle)
|
||||
if (amdgpu_vcnfw_log)
|
||||
amdgpu_vcn_fwlog_init(adev->vcn.inst);
|
||||
|
||||
/* Allocate memory for VCN IP Dump buffer */
|
||||
ptr = kcalloc(adev->vcn.num_vcn_inst * reg_count, sizeof(uint32_t), GFP_KERNEL);
|
||||
if (!ptr) {
|
||||
DRM_ERROR("Failed to allocate memory for VCN IP Dump\n");
|
||||
adev->vcn.ip_dump = NULL;
|
||||
} else {
|
||||
adev->vcn.ip_dump = ptr;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -213,6 +260,8 @@ static int vcn_v2_0_sw_fini(void *handle)
|
||||
|
||||
r = amdgpu_vcn_sw_fini(adev);
|
||||
|
||||
kfree(adev->vcn.ip_dump);
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
@ -1985,6 +2034,34 @@ static int vcn_v2_0_start_sriov(struct amdgpu_device *adev)
|
||||
return vcn_v2_0_start_mmsch(adev, &adev->virt.mm_table);
|
||||
}
|
||||
|
||||
static void vcn_v2_0_dump_ip_state(void *handle)
|
||||
{
|
||||
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
|
||||
int i, j;
|
||||
bool is_powered;
|
||||
uint32_t inst_off;
|
||||
uint32_t reg_count = ARRAY_SIZE(vcn_reg_list_2_0);
|
||||
|
||||
if (!adev->vcn.ip_dump)
|
||||
return;
|
||||
|
||||
for (i = 0; i < adev->vcn.num_vcn_inst; i++) {
|
||||
if (adev->vcn.harvest_config & (1 << i))
|
||||
continue;
|
||||
|
||||
inst_off = i * reg_count;
|
||||
/* mmUVD_POWER_STATUS is always readable and is first element of the array */
|
||||
adev->vcn.ip_dump[inst_off] = RREG32_SOC15(VCN, i, mmUVD_POWER_STATUS);
|
||||
is_powered = (adev->vcn.ip_dump[inst_off] &
|
||||
UVD_POWER_STATUS__UVD_POWER_STATUS_MASK) != 1;
|
||||
|
||||
if (is_powered)
|
||||
for (j = 1; j < reg_count; j++)
|
||||
adev->vcn.ip_dump[inst_off + j] =
|
||||
RREG32(SOC15_REG_ENTRY_OFFSET_INST(vcn_reg_list_2_0[j], i));
|
||||
}
|
||||
}
|
||||
|
||||
static const struct amd_ip_funcs vcn_v2_0_ip_funcs = {
|
||||
.name = "vcn_v2_0",
|
||||
.early_init = vcn_v2_0_early_init,
|
||||
@ -2003,7 +2080,7 @@ static const struct amd_ip_funcs vcn_v2_0_ip_funcs = {
|
||||
.post_soft_reset = NULL,
|
||||
.set_clockgating_state = vcn_v2_0_set_clockgating_state,
|
||||
.set_powergating_state = vcn_v2_0_set_powergating_state,
|
||||
.dump_ip_state = NULL,
|
||||
.dump_ip_state = vcn_v2_0_dump_ip_state,
|
||||
.print_ip_state = NULL,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user