struct nouveau_pm_profile;
 struct nouveau_pm_profile_func {
+       void (*destroy)(struct nouveau_pm_profile *);
+       void (*init)(struct nouveau_pm_profile *);
+       void (*fini)(struct nouveau_pm_profile *);
        struct nouveau_pm_level *(*select)(struct nouveau_pm_profile *);
 };
 
 
        struct nouveau_pm_profile *profile_ac;
        struct nouveau_pm_profile *profile_dc;
+       struct nouveau_pm_profile *profile;
        struct list_head profiles;
 
        struct nouveau_pm_level boot;
 
        else
                profile = pm->profile_dc;
 
+       if (profile != pm->profile) {
+               pm->profile->func->fini(pm->profile);
+               pm->profile = profile;
+               pm->profile->func->init(pm->profile);
+       }
+
        /* select performance level based on profile */
        perflvl = profile->func->select(profile);
 
        return 0;
 }
 
+static void
+nouveau_pm_static_dummy(struct nouveau_pm_profile *profile)
+{
+}
+
 static struct nouveau_pm_level *
 nouveau_pm_static_select(struct nouveau_pm_profile *profile)
 {
 }
 
 const struct nouveau_pm_profile_func nouveau_pm_static_profile_func = {
+       .destroy = nouveau_pm_static_dummy,
+       .init = nouveau_pm_static_dummy,
+       .fini = nouveau_pm_static_dummy,
        .select = nouveau_pm_static_select,
 };
 
 
        pm->profile_ac = &pm->boot.profile;
        pm->profile_dc = &pm->boot.profile;
+       pm->profile = &pm->boot.profile;
        pm->cur = &pm->boot;
 
        /* add performance levels from vbios */
 {
        struct drm_nouveau_private *dev_priv = dev->dev_private;
        struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
+       struct nouveau_pm_profile *profile, *tmp;
+
+       list_for_each_entry_safe(profile, tmp, &pm->profiles, head) {
+               list_del(&profile->head);
+               profile->func->destroy(profile);
+       }
 
        if (pm->cur != &pm->boot)
                nouveau_pm_perflvl_set(dev, &pm->boot);