From 4ee045191d42267fd6a1348f356529ac20fb92ae Mon Sep 17 00:00:00 2001 From: Quentin Decaunes Date: Sun, 10 Mar 2019 10:17:28 +0100 Subject: [PATCH] See #7 Added fclock ryzenadj option. --- index.html | 18 ++++++++++++++++++ js/app.js | 2 ++ js/methods.js | 2 ++ js/options_description.json | 4 +++- 4 files changed, 25 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index cbc054b..060603f 100644 --- a/index.html +++ b/index.html @@ -71,6 +71,24 @@ +

Minimum transmission frequency (Mhz)

+
+
+ +
+
+ +
+
+

Maximum transmission frequency (Mhz)

+
+
+ +
+
+ +
+

diff --git a/js/app.js b/js/app.js index e084fea..d03c6fe 100644 --- a/js/app.js +++ b/js/app.js @@ -41,6 +41,8 @@ function applyRyzenSettings() { break; case "--tctl-temp=": + case "--max-fclk-frequency=": + case "--min-fclk-frequency=": value = value; break; diff --git a/js/methods.js b/js/methods.js index 05483e7..aaa9c18 100644 --- a/js/methods.js +++ b/js/methods.js @@ -322,6 +322,8 @@ function getCurrentSettings(keyType) { "--slow-limit=": document.getElementById('ppt_slow_limit_w').value, "--tctl-temp=": document.getElementById('temperature_limit_c').value, "--vrmmax-current=": document.getElementById('vrm_current_m_a').value, + "--min-fclk-frequency=": document.getElementById('min_fclk_frequency').value, + "--max-fclk-frequency=": document.getElementById('max_fclk_frequency').value, }; } else { var inputs = document.querySelectorAll('#controller-tab input'); diff --git a/js/options_description.json b/js/options_description.json index f8bafa0..9abfdaf 100644 --- a/js/options_description.json +++ b/js/options_description.json @@ -3,5 +3,7 @@ "ppt_fast_limit_w": "The amount of power the CPU can draw while boost levels on.", "ppt_slow_limit_w": "The amount of power the CPU can draw while boost levels off.", "temperature_limit_c": "The temperature the CPU can reach before boost levels off.", - "vrm_current_m_a": "The limit of current we let the motherboard deliver to the CPU." + "vrm_current_m_a": "The limit of current we let the motherboard deliver to the CPU.", + "max_fclk_frequency": "Fabric is AMD's marketing term for the bus connection that connects processor dies (GPU/CPU). This define the bus's max. clock limit.", + "min_fclk_frequency": "Fabric is AMD's marketing term for the bus connection that connects processor dies (GPU/CPU). This define the bus's min. clock limit." }