validation_clks.memory_max_clock = 80000;
                        validation_clks.level = 0;
                }
+       } else if (adev->smu.funcs && adev->smu.funcs->get_max_high_clocks) {
+               if (smu_get_max_high_clocks(&adev->smu, &validation_clks)) {
+                       DRM_INFO("DM_PPLIB: Warning: using default validation clocks!\n");
+                       validation_clks.engine_max_clock = 72000;
+                       validation_clks.memory_max_clock = 80000;
+                       validation_clks.level = 0;
+               }
        }
 
        DRM_INFO("DM_PPLIB: Validation clocks:\n");
 
        int (*get_clock_by_type)(struct smu_context *smu,
                                 enum amd_pp_clock_type type,
                                 struct amd_pp_clocks *clocks);
+       int (*get_max_high_clocks)(struct smu_context *smu,
+                                  struct amd_pp_simple_clock_info *clocks);
 };
 
 #define smu_init_microcode(smu) \
        ((smu)->funcs->store_cc6_data ? (smu)->funcs->store_cc6_data((smu), (st), (cc6_dis), (pst_dis), (pst_sw_dis)) : 0)
 #define smu_get_clock_by_type(smu, type, clocks) \
        ((smu)->funcs->get_clock_by_type ? (smu)->funcs->get_clock_by_type((smu), (type), (clocks)) : 0)
+#define smu_get_max_high_clocks(smu, clocks) \
+       ((smu)->funcs->get_max_high_clocks ? (smu)->funcs->get_max_high_clocks((smu), (clocks)) : 0)
 
 extern int smu_get_atom_data_table(struct smu_context *smu, uint32_t table,
                                   uint16_t *size, uint8_t *frev, uint8_t *crev,