@@ -1089,6 +1089,19 @@ static struct qos_preset {
QOS_PRESET("48_4_2", false, 10000, 60, 120, 0x02, 23),
QOS_PRESET("48_5_2", false, 7500, 45, 117, 0x02, 23),
QOS_PRESET("44_6_2", false, 10000, 60, 155, 0x02, 23),
+ /* QoS configuration support setting requirements for the UGG and UGT */
+ QOS_PRESET("16_1_gs", true, 7500, 15, 30, 0x02, 1),
+ QOS_PRESET("16_2_gs", true, 10000, 20, 40, 0x02, 1),
+ QOS_PRESET("32_1_gs", true, 7500, 15, 60, 0x02, 1),
+ QOS_PRESET("32_2_gs", true, 10000, 20, 80, 0x02, 1),
+ QOS_PRESET("48_1_gs", true, 7500, 15, 75, 0x02, 1),
+ QOS_PRESET("48_2_gs", true, 10000, 20, 100, 0x02, 1),
+ QOS_PRESET("32_1_gr", true, 7500, 15, 60, 0x02, 1),
+ QOS_PRESET("32_2_gr", true, 10000, 20, 80, 0x02, 1),
+ QOS_PRESET("48_1_gr", true, 7500, 15, 75, 0x02, 1),
+ QOS_PRESET("48_2_gr", true, 10000, 20, 100, 0x02, 1),
+ QOS_PRESET("48_3_gr", true, 7500, 15, 90, 0x02, 1),
+ QOS_PRESET("48_4_gr", true, 10000, 20, 120, 0x02, 1),
};
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This adds the following presets from GMAP: 16_1_gs 16_2_gs 32_1_gs 32_2_gs 48_1_gs 48_2_gs 32_1_gr 32_2_gr 48_1_gr 48_2_gr 48_3_gr 48_4_gr --- tools/isotest.c | 13 +++++++++++++ 1 file changed, 13 insertions(+)