~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/samples/coresight/coresight-cfg-sample.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 /*
  3  * Copyright(C) 2020 Linaro Limited. All rights reserved.
  4  * Author: Mike Leach <mike.leach@linaro.org>
  5  */
  6 
  7 #include "coresight-config.h"
  8 #include "coresight-syscfg.h"
  9 
 10 /* create an alternate autofdo configuration */
 11 
 12 /* we will provide 4 sets of preset parameter values */
 13 #define AFDO2_NR_PRESETS        4
 14 /* the total number of parameters in used features - strobing has 2 */
 15 #define AFDO2_NR_PARAM_SUM      2
 16 
 17 static const char *afdo2_ref_names[] = {
 18         "strobing",
 19 };
 20 
 21 /*
 22  * set of presets leaves strobing window constant while varying period to allow
 23  * experimentation with mark / space ratios for various workloads
 24  */
 25 static u64 afdo2_presets[AFDO2_NR_PRESETS][AFDO2_NR_PARAM_SUM] = {
 26         { 1000, 100 },
 27         { 1000, 1000 },
 28         { 1000, 5000 },
 29         { 1000, 10000 },
 30 };
 31 
 32 struct cscfg_config_desc afdo2 = {
 33         .name = "autofdo2",
 34         .description = "Setup ETMs with strobing for autofdo\n"
 35         "Supplied presets allow experimentation with mark-space ratio for various loads\n",
 36         .nr_feat_refs = ARRAY_SIZE(afdo2_ref_names),
 37         .feat_ref_names = afdo2_ref_names,
 38         .nr_presets = AFDO2_NR_PRESETS,
 39         .nr_total_params = AFDO2_NR_PARAM_SUM,
 40         .presets = &afdo2_presets[0][0],
 41 };
 42 
 43 static struct cscfg_feature_desc *sample_feats[] = {
 44         NULL
 45 };
 46 
 47 static struct cscfg_config_desc *sample_cfgs[] = {
 48         &afdo2,
 49         NULL
 50 };
 51 
 52 static struct cscfg_load_owner_info mod_owner = {
 53         .type = CSCFG_OWNER_MODULE,
 54         .owner_handle = THIS_MODULE,
 55 };
 56 
 57 /* module init and exit - just load and unload configs */
 58 static int __init cscfg_sample_init(void)
 59 {
 60         return cscfg_load_config_sets(sample_cfgs, sample_feats, &mod_owner);
 61 }
 62 
 63 static void __exit cscfg_sample_exit(void)
 64 {
 65         cscfg_unload_config_sets(&mod_owner);
 66 }
 67 
 68 module_init(cscfg_sample_init);
 69 module_exit(cscfg_sample_exit);
 70 
 71 MODULE_LICENSE("GPL v2");
 72 MODULE_AUTHOR("Mike Leach <mike.leach@linaro.org>");
 73 MODULE_DESCRIPTION("CoreSight Syscfg Example");
 74 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php