mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
There could be two reasons why a resctrl feature might not be enabled on the platform 1. H/W might not support the feature 2. Even if the H/W supports it, the user might have disabled the feature through kernel command line arguments Hence, any resctrl unit test (like cmt, cat, mbm and mba) before starting the test will first check if the feature is enabled on the platform or not. If the feature isn't enabled, then the test returns with an error status. For example, if MBA isn't supported on a platform and if the user tries to run MBA, the output will look like this ok mounting resctrl to "/sys/fs/resctrl" not ok MBA: schemata change But, not supporting a feature isn't a test failure. So, instead of treating it as an error, use the SKIP directive of the TAP protocol. With the change, the output will look as below ok MBA # SKIP Hardware does not support MBA or MBA is disabled Suggested-by: Reinette Chatre <reinette.chatre@intel.com> Tested-by: Babu Moger <babu.moger@amd.com> Signed-off-by: Fenghua Yu <fenghua.yu@intel.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
257 lines
6 KiB
C
257 lines
6 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Resctrl tests
|
|
*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* Authors:
|
|
* Sai Praneeth Prakhya <sai.praneeth.prakhya@intel.com>,
|
|
* Fenghua Yu <fenghua.yu@intel.com>
|
|
*/
|
|
#include "resctrl.h"
|
|
|
|
#define BENCHMARK_ARGS 64
|
|
#define BENCHMARK_ARG_SIZE 64
|
|
|
|
bool is_amd;
|
|
|
|
void detect_amd(void)
|
|
{
|
|
FILE *inf = fopen("/proc/cpuinfo", "r");
|
|
char *res;
|
|
|
|
if (!inf)
|
|
return;
|
|
|
|
res = fgrep(inf, "vendor_id");
|
|
|
|
if (res) {
|
|
char *s = strchr(res, ':');
|
|
|
|
is_amd = s && !strcmp(s, ": AuthenticAMD\n");
|
|
free(res);
|
|
}
|
|
fclose(inf);
|
|
}
|
|
|
|
static void cmd_help(void)
|
|
{
|
|
printf("usage: resctrl_tests [-h] [-b \"benchmark_cmd [options]\"] [-t test list] [-n no_of_bits]\n");
|
|
printf("\t-b benchmark_cmd [options]: run specified benchmark for MBM, MBA and CMT\n");
|
|
printf("\t default benchmark is builtin fill_buf\n");
|
|
printf("\t-t test list: run tests specified in the test list, ");
|
|
printf("e.g. -t mbm, mba, cmt, cat\n");
|
|
printf("\t-n no_of_bits: run cache tests using specified no of bits in cache bit mask\n");
|
|
printf("\t-p cpu_no: specify CPU number to run the test. 1 is default\n");
|
|
printf("\t-h: help\n");
|
|
}
|
|
|
|
void tests_cleanup(void)
|
|
{
|
|
mbm_test_cleanup();
|
|
mba_test_cleanup();
|
|
cmt_test_cleanup();
|
|
cat_test_cleanup();
|
|
}
|
|
|
|
static void run_mbm_test(bool has_ben, char **benchmark_cmd, int span,
|
|
int cpu_no, char *bw_report)
|
|
{
|
|
int res;
|
|
|
|
ksft_print_msg("Starting MBM BW change ...\n");
|
|
|
|
if (!validate_resctrl_feature_request(MBM_STR)) {
|
|
ksft_test_result_skip("Hardware does not support MBM or MBM is disabled\n");
|
|
return;
|
|
}
|
|
|
|
if (!has_ben)
|
|
sprintf(benchmark_cmd[5], "%s", MBA_STR);
|
|
res = mbm_bw_change(span, cpu_no, bw_report, benchmark_cmd);
|
|
ksft_test_result(!res, "MBM: bw change\n");
|
|
mbm_test_cleanup();
|
|
}
|
|
|
|
static void run_mba_test(bool has_ben, char **benchmark_cmd, int span,
|
|
int cpu_no, char *bw_report)
|
|
{
|
|
int res;
|
|
|
|
ksft_print_msg("Starting MBA Schemata change ...\n");
|
|
|
|
if (!validate_resctrl_feature_request(MBA_STR)) {
|
|
ksft_test_result_skip("Hardware does not support MBA or MBA is disabled\n");
|
|
return;
|
|
}
|
|
|
|
if (!has_ben)
|
|
sprintf(benchmark_cmd[1], "%d", span);
|
|
res = mba_schemata_change(cpu_no, bw_report, benchmark_cmd);
|
|
ksft_test_result(!res, "MBA: schemata change\n");
|
|
mba_test_cleanup();
|
|
}
|
|
|
|
static void run_cmt_test(bool has_ben, char **benchmark_cmd, int cpu_no)
|
|
{
|
|
int res;
|
|
|
|
ksft_print_msg("Starting CMT test ...\n");
|
|
if (!validate_resctrl_feature_request(CMT_STR)) {
|
|
ksft_test_result_skip("Hardware does not support CMT or CMT is disabled\n");
|
|
return;
|
|
}
|
|
|
|
if (!has_ben)
|
|
sprintf(benchmark_cmd[5], "%s", CMT_STR);
|
|
res = cmt_resctrl_val(cpu_no, 5, benchmark_cmd);
|
|
ksft_test_result(!res, "CMT: test\n");
|
|
cmt_test_cleanup();
|
|
}
|
|
|
|
static void run_cat_test(int cpu_no, int no_of_bits)
|
|
{
|
|
int res;
|
|
|
|
ksft_print_msg("Starting CAT test ...\n");
|
|
|
|
if (!validate_resctrl_feature_request(CAT_STR)) {
|
|
ksft_test_result_skip("Hardware does not support CAT or CAT is disabled\n");
|
|
return;
|
|
}
|
|
|
|
res = cat_perf_miss_val(cpu_no, no_of_bits, "L3");
|
|
ksft_test_result(!res, "CAT: test\n");
|
|
cat_test_cleanup();
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
bool has_ben = false, mbm_test = true, mba_test = true, cmt_test = true;
|
|
int c, cpu_no = 1, span = 250, argc_new = argc, i, no_of_bits = 0;
|
|
char *benchmark_cmd[BENCHMARK_ARGS], bw_report[64], bm_type[64];
|
|
char benchmark_cmd_area[BENCHMARK_ARGS][BENCHMARK_ARG_SIZE];
|
|
int ben_ind, ben_count, tests = 0;
|
|
bool cat_test = true;
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
if (strcmp(argv[i], "-b") == 0) {
|
|
ben_ind = i + 1;
|
|
ben_count = argc - ben_ind;
|
|
argc_new = ben_ind - 1;
|
|
has_ben = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
while ((c = getopt(argc_new, argv, "ht:b:n:p:")) != -1) {
|
|
char *token;
|
|
|
|
switch (c) {
|
|
case 't':
|
|
token = strtok(optarg, ",");
|
|
|
|
mbm_test = false;
|
|
mba_test = false;
|
|
cmt_test = false;
|
|
cat_test = false;
|
|
while (token) {
|
|
if (!strncmp(token, MBM_STR, sizeof(MBM_STR))) {
|
|
mbm_test = true;
|
|
tests++;
|
|
} else if (!strncmp(token, MBA_STR, sizeof(MBA_STR))) {
|
|
mba_test = true;
|
|
tests++;
|
|
} else if (!strncmp(token, CMT_STR, sizeof(CMT_STR))) {
|
|
cmt_test = true;
|
|
tests++;
|
|
} else if (!strncmp(token, CAT_STR, sizeof(CAT_STR))) {
|
|
cat_test = true;
|
|
tests++;
|
|
} else {
|
|
printf("invalid argument\n");
|
|
|
|
return -1;
|
|
}
|
|
token = strtok(NULL, ":\t");
|
|
}
|
|
break;
|
|
case 'p':
|
|
cpu_no = atoi(optarg);
|
|
break;
|
|
case 'n':
|
|
no_of_bits = atoi(optarg);
|
|
if (no_of_bits <= 0) {
|
|
printf("Bail out! invalid argument for no_of_bits\n");
|
|
return -1;
|
|
}
|
|
break;
|
|
case 'h':
|
|
cmd_help();
|
|
|
|
return 0;
|
|
default:
|
|
printf("invalid argument\n");
|
|
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
ksft_print_header();
|
|
|
|
/*
|
|
* Typically we need root privileges, because:
|
|
* 1. We write to resctrl FS
|
|
* 2. We execute perf commands
|
|
*/
|
|
if (geteuid() != 0)
|
|
return ksft_exit_fail_msg("Not running as root, abort testing.\n");
|
|
|
|
/* Detect AMD vendor */
|
|
detect_amd();
|
|
|
|
if (has_ben) {
|
|
/* Extract benchmark command from command line. */
|
|
for (i = ben_ind; i < argc; i++) {
|
|
benchmark_cmd[i - ben_ind] = benchmark_cmd_area[i];
|
|
sprintf(benchmark_cmd[i - ben_ind], "%s", argv[i]);
|
|
}
|
|
benchmark_cmd[ben_count] = NULL;
|
|
} else {
|
|
/* If no benchmark is given by "-b" argument, use fill_buf. */
|
|
for (i = 0; i < 6; i++)
|
|
benchmark_cmd[i] = benchmark_cmd_area[i];
|
|
|
|
strcpy(benchmark_cmd[0], "fill_buf");
|
|
sprintf(benchmark_cmd[1], "%d", span);
|
|
strcpy(benchmark_cmd[2], "1");
|
|
strcpy(benchmark_cmd[3], "1");
|
|
strcpy(benchmark_cmd[4], "0");
|
|
strcpy(benchmark_cmd[5], "");
|
|
benchmark_cmd[6] = NULL;
|
|
}
|
|
|
|
sprintf(bw_report, "reads");
|
|
sprintf(bm_type, "fill_buf");
|
|
|
|
if (!check_resctrlfs_support())
|
|
return ksft_exit_fail_msg("resctrl FS does not exist\n");
|
|
|
|
filter_dmesg();
|
|
|
|
ksft_set_plan(tests ? : 4);
|
|
|
|
if (!is_amd && mbm_test)
|
|
run_mbm_test(has_ben, benchmark_cmd, span, cpu_no, bw_report);
|
|
|
|
if (!is_amd && mba_test)
|
|
run_mba_test(has_ben, benchmark_cmd, span, cpu_no, bw_report);
|
|
|
|
if (cmt_test)
|
|
run_cmt_test(has_ben, benchmark_cmd, cpu_no);
|
|
|
|
if (cat_test)
|
|
run_cat_test(cpu_no, no_of_bits);
|
|
|
|
return ksft_exit_pass();
|
|
}
|