ip: Replace Sematics for Interface IP addresses
[vpp.git] / src / plugins / perfmon / perfmon_intel.h
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2019 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #ifndef _PERFMON_INTEL_H_
19 #define _PERFMON_INTEL_H_
20
21 #include <vppinfra/clib.h>
22 #include <vppinfra/format.h>
23
24 typedef struct
25 {
26   u8 event_code[2];
27   u8 umask;
28   char *event_name;
29 } perfmon_intel_pmc_event_t;
30
31 typedef struct
32 {
33   u8 model;
34   u8 stepping;
35   u8 has_stepping;
36 } perfmon_intel_pmc_cpu_model_t;
37
38 typedef struct
39 {
40   perfmon_intel_pmc_event_t *events;
41   perfmon_intel_pmc_cpu_model_t *models;
42   u32 n_events;
43   u32 n_models;
44 } perfmon_intel_pmc_registration_t;
45
46
47 void
48 perfmon_register_intel_pmc (perfmon_intel_pmc_cpu_model_t * m, int n_models,
49                             perfmon_intel_pmc_event_t * e, int n_events);
50
51 #define PERFMON_REGISTER_INTEL_PMC(m, e) \
52 static void __clib_constructor \
53 perfmon_register_intel_pmc_constructor() \
54 { \
55   perfmon_register_intel_pmc (m, ARRAY_LEN(m), e, ARRAY_LEN (e)); \
56 }
57
58 #endif /* _PERFMON_INTEL_H_ */
59
60 /*
61  * fd.io coding-style-patch-verification: ON
62  *
63  * Local Variables:
64  * eval: (c-set-style "gnu")
65  * End:
66  */