drm/amd/display: configure dc hw resource for DCN 3.1.6
authorPrike Liang <Prike.Liang@amd.com>
Mon, 17 Jan 2022 07:21:29 +0000 (15:21 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 17 Feb 2022 20:45:17 +0000 (15:45 -0500)
- set DC version
- add construct/destroy dc clock management function
- register dcn interrupt handler

Signed-off-by: Prike Liang <Prike.Liang@amd.com>
Reviewed-by: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_hdcp.c
drivers/gpu/drm/amd/display/dc/bios/command_table_helper2.c
drivers/gpu/drm/amd/display/dc/clk_mgr/clk_mgr.c
drivers/gpu/drm/amd/display/dc/core/dc_resource.c
drivers/gpu/drm/amd/display/dc/gpio/hw_factory.c
drivers/gpu/drm/amd/display/dc/gpio/hw_translate.c
drivers/gpu/drm/amd/display/include/dal_asic_id.h
drivers/gpu/drm/amd/display/include/dal_types.h

index e2de457ac56cc4c298d70558b9153f750c515146..749ab9231bce0c0e177d49011541ee4913f8ac3a 100644 (file)
@@ -114,6 +114,8 @@ MODULE_FIRMWARE(FIRMWARE_DIMGREY_CAVEFISH_DMUB);
 MODULE_FIRMWARE(FIRMWARE_BEIGE_GOBY_DMUB);
 #define FIRMWARE_YELLOW_CARP_DMUB "amdgpu/yellow_carp_dmcub.bin"
 MODULE_FIRMWARE(FIRMWARE_YELLOW_CARP_DMUB);
+#define FIRMWARE_DCN316_DMUB "amdgpu/dcn_3_1_6_dmcub.bin"
+MODULE_FIRMWARE(FIRMWARE_DCN316_DMUB);
 
 #define FIRMWARE_RAVEN_DMCU            "amdgpu/raven_dmcu.bin"
 MODULE_FIRMWARE(FIRMWARE_RAVEN_DMCU);
@@ -1801,6 +1803,7 @@ static int load_dmcu_fw(struct amdgpu_device *adev)
                case IP_VERSION(3, 0, 1):
                case IP_VERSION(3, 1, 2):
                case IP_VERSION(3, 1, 3):
+               case IP_VERSION(3, 1, 6):
                        return 0;
                default:
                        break;
@@ -1916,6 +1919,10 @@ static int dm_dmub_sw_init(struct amdgpu_device *adev)
                dmub_asic = (adev->external_rev_id == YELLOW_CARP_B0) ? DMUB_ASIC_DCN31B : DMUB_ASIC_DCN31;
                fw_name_dmub = FIRMWARE_YELLOW_CARP_DMUB;
                break;
+       case IP_VERSION(3, 1, 6):
+               dmub_asic = DMUB_ASIC_DCN31B;
+               fw_name_dmub = FIRMWARE_DCN316_DMUB;
+               break;
 
        default:
                /* ASIC doesn't support DMUB. */
@@ -4224,6 +4231,7 @@ static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
        case IP_VERSION(3, 0, 0):
        case IP_VERSION(3, 1, 2):
        case IP_VERSION(3, 1, 3):
+       case IP_VERSION(3, 1, 6):
        case IP_VERSION(2, 1, 0):
                if (register_outbox_irq_handlers(dm->adev)) {
                        DRM_ERROR("DM: Failed to initialize IRQ\n");
@@ -4240,6 +4248,7 @@ static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
                switch (adev->ip_versions[DCE_HWIP][0]) {
                case IP_VERSION(3, 1, 2):
                case IP_VERSION(3, 1, 3):
+               case IP_VERSION(3, 1, 6):
                        psr_feature_enabled = true;
                        break;
                default:
@@ -4357,6 +4366,7 @@ static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
                case IP_VERSION(3, 0, 1):
                case IP_VERSION(3, 1, 2):
                case IP_VERSION(3, 1, 3):
+               case IP_VERSION(3, 1, 6):
                        if (dcn10_register_irq_handlers(dm->adev)) {
                                DRM_ERROR("DM: Failed to initialize IRQ\n");
                                goto fail;
@@ -4542,6 +4552,7 @@ static int dm_early_init(void *handle)
                case IP_VERSION(2, 1, 0):
                case IP_VERSION(3, 1, 2):
                case IP_VERSION(3, 1, 3):
+               case IP_VERSION(3, 1, 6):
                        adev->mode_info.num_crtc = 4;
                        adev->mode_info.num_hpd = 4;
                        adev->mode_info.num_dig = 4;
@@ -5214,6 +5225,7 @@ get_plane_modifiers(const struct amdgpu_device *adev, unsigned int plane_type, u
        case AMDGPU_FAMILY_NV:
        case AMDGPU_FAMILY_VGH:
        case AMDGPU_FAMILY_YC:
+       case AMDGPU_FAMILY_GC_10_3_7:
                if (adev->ip_versions[GC_HWIP][0] >= IP_VERSION(10, 3, 0))
                        add_gfx10_3_modifiers(adev, mods, &size, &capacity);
                else
@@ -6180,7 +6192,7 @@ static void apply_dsc_policy_for_stream(struct amdgpu_dm_connector *aconnector,
        if (stream->link && stream->link->local_sink)
                max_dsc_target_bpp_limit_override =
                        stream->link->local_sink->edid_caps.panel_patch.max_dsc_target_bpp_limit;
-       
+
        /* Set DSC policy according to dsc_clock_en */
        dc_dsc_policy_set_enable_dsc_when_not_needed(
                aconnector->dsc_settings.dsc_force_enable == DSC_CLK_FORCE_ENABLE);
index 5bfdc66b5867c3ea8c862e3b223e1c6abd2bbfb4..8709827b69ad12eecf037a7678d3e347de83a934 100644 (file)
@@ -663,7 +663,8 @@ struct hdcp_workqueue *hdcp_create_workqueue(struct amdgpu_device *adev, struct
                INIT_DELAYED_WORK(&hdcp_work[i].property_validate_dwork, event_property_validate);
 
                hdcp_work[i].hdcp.config.psp.handle = &adev->psp;
-               if (dc->ctx->dce_version == DCN_VERSION_3_1)
+               if (dc->ctx->dce_version == DCN_VERSION_3_1 ||
+                   dc->ctx->dce_version == DCN_VERSION_3_16)
                        hdcp_work[i].hdcp.config.psp.caps.dtm_v3_supported = 1;
                hdcp_work[i].hdcp.config.ddc.handle = dc_get_link_at_index(dc, i);
                hdcp_work[i].hdcp.config.ddc.funcs.write_i2c = lp_write_i2c;
index eedc553f340e41f34d385952335f19b52ea55e78..d0fcfb15843678567021652266dca2bc4c6fa8ac 100644 (file)
@@ -76,6 +76,7 @@ bool dal_bios_parser_init_cmd_tbl_helper2(
        case DCN_VERSION_3_02:
        case DCN_VERSION_3_03:
        case DCN_VERSION_3_1:
+       case DCN_VERSION_3_16:
                *h = dal_cmd_tbl_helper_dce112_get_table2();
                return true;
 #endif
index 9200c8ce02ba917d6dc2a8b71645d2cf3776f9fa..a707d07d51973f1cec3790155bab68b0ba0aa515 100644 (file)
@@ -278,7 +278,8 @@ struct clk_mgr *dc_clk_mgr_create(struct dc_context *ctx, struct pp_smu_funcs *p
                        return &clk_mgr->base.base;
                }
                break;
-       case FAMILY_YELLOW_CARP: {
+       case FAMILY_YELLOW_CARP:
+       case AMDGPU_FAMILY_GC_10_3_7:{
                struct clk_mgr_dcn31 *clk_mgr = kzalloc(sizeof(*clk_mgr), GFP_KERNEL);
 
                if (clk_mgr == NULL) {
@@ -322,6 +323,7 @@ void dc_destroy_clk_mgr(struct clk_mgr *clk_mgr_base)
                break;
 
        case FAMILY_YELLOW_CARP:
+       case AMDGPU_FAMILY_GC_10_3_7:
                        dcn31_clk_mgr_destroy(clk_mgr);
                break;
 
index 0d0df7271732cc6bc77ebda0d6eedcf651f5f5e8..7c00ee2dc18abe0ba297a08a0c8fdcd1d5faa5c0 100644 (file)
@@ -155,6 +155,10 @@ enum dce_version resource_parse_asic_id(struct hw_asic_id asic_id)
                if (ASICREV_IS_YELLOW_CARP(asic_id.hw_internal_rev))
                        dc_version = DCN_VERSION_3_1;
                break;
+       case AMDGPU_FAMILY_GC_10_3_7:
+               if (ASICREV_IS_GC_10_3_7(asic_id.hw_internal_rev))
+                       dc_version = DCN_VERSION_3_16;
+               break;
 #endif
 
        default:
index 5029d4e42dbf82c3053dcad1dabb5fed5a1209ab..c9ee212b2e80ba2648f2b39ce590b7ac63622fc9 100644 (file)
@@ -114,6 +114,7 @@ bool dal_hw_factory_init(
        case DCN_VERSION_3_02:
        case DCN_VERSION_3_03:
        case DCN_VERSION_3_1:
+       case DCN_VERSION_3_16:
                dal_hw_factory_dcn30_init(factory);
                return true;
 #endif
index 904bd30bed6857a929c755a1764e84faa74d19b5..42adba630125243e99f17c4a8bf2b9daeaab7c50 100644 (file)
@@ -109,6 +109,7 @@ bool dal_hw_translate_init(
        case DCN_VERSION_3_02:
        case DCN_VERSION_3_03:
        case DCN_VERSION_3_1:
+       case DCN_VERSION_3_16:
                dal_hw_translate_dcn30_init(translate);
                return true;
 #endif
index e672be6327cb351bde94b738ef7d9be9d9d7c253..79f6a9ddb4bdca9d0b608a274c350ee0f969cdcf 100644 (file)
@@ -227,7 +227,6 @@ enum {
 #endif
 
 #define FAMILY_YELLOW_CARP                     146
-
 #define YELLOW_CARP_A0 0x01
 #define YELLOW_CARP_B0 0x20
 #define YELLOW_CARP_UNKNOWN 0xFF
@@ -236,6 +235,11 @@ enum {
 #define ASICREV_IS_YELLOW_CARP(eChipRev) ((eChipRev >= YELLOW_CARP_A0) && (eChipRev < YELLOW_CARP_UNKNOWN))
 #endif
 
+#define AMDGPU_FAMILY_GC_10_3_7                151
+#define GC_10_3_7_A0 0x01
+#define GC_10_3_7_UNKNOWN 0xFF
+
+#define ASICREV_IS_GC_10_3_7(eChipRev) ((eChipRev >= GC_10_3_7_A0) && (eChipRev < GC_10_3_7_UNKNOWN))
 
 /*
  * ASIC chip ID
index 012b7c61798ca4a8832f854fa8308cd0fc90f14b..8ddb25519880b8a55de729343f3111777fafad3b 100644 (file)
@@ -57,6 +57,7 @@ enum dce_version {
        DCN_VERSION_3_02,
        DCN_VERSION_3_03,
        DCN_VERSION_3_1,
+       DCN_VERSION_3_16,
        DCN_VERSION_MAX
 };