Fix memory clock quirks #162

This commit is contained in:
NGnius (Graham) 2024-06-29 11:12:31 -04:00
parent ec02a65571
commit cb2fd1dcc7
2 changed files with 4 additions and 1 deletions

View file

@ -82,6 +82,7 @@ impl GenericGpuLimit {
extras: super::LimitExtras { extras: super::LimitExtras {
experiments: false, experiments: false,
quirks: vec![ quirks: vec![
"pp_dpm_fclk-reversed".to_owned(),
"pp_dpm_fclk-static".to_owned(), "pp_dpm_fclk-static".to_owned(),
].into_iter().collect(), ].into_iter().collect(),
} }
@ -93,6 +94,7 @@ impl GenericGpuLimit {
sd.memory_clock_step = Some(200); sd.memory_clock_step = Some(200);
sd.extras.quirks.insert("clock-autodetect".to_owned()); sd.extras.quirks.insert("clock-autodetect".to_owned());
sd.extras.quirks.remove("pp_dpm_fclk-static"); sd.extras.quirks.remove("pp_dpm_fclk-static");
sd.extras.quirks.remove("pp_dpm_fclk-reversed");
sd sd
} }

View file

@ -602,7 +602,8 @@
"extras": { "extras": {
"experiments": false, "experiments": false,
"quirks": [ "quirks": [
"pp_dpm_fclk-static" "pp_dpm_fclk-static",
"pp_dpm_fclk-reversed"
] ]
} }
} }