summaryrefslogtreecommitdiff
path: root/drivers/staging/nmf-cm/cm/engine/perfmeter/inc/perfmeter_type.h
blob: 8733c20b21b76ffd377dca37f5d4327835a69ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright (C) ST-Ericsson SA 2010
 * Author: Jean-Philippe FASSINO <jean-philippe.fassino@stericsson.com> for ST-Ericsson.
 * License terms:  GNU General Public License (GPL), version 2, with
 * user space exemption described in the top-level COPYING file in
 * the Linux kernel source tree.
 */
/*!
 * \brief Public Component Manager Performance Meter API type.
 *
 * This file contains the Component Manager API type for performance meter.
 *
 * \defgroup PERFMETER CM Monitoring API
 * \ingroup CM_USER_API
 */
#ifndef CM_COMMON_PERFMETER_TYPE_H_
#define CM_COMMON_PERFMETER_TYPE_H_

#include <cm/inc/cm_type.h>
/*!
 * \brief Description of mpc load structure.
 *
 * This contain mpc load value.
 *
 * \ingroup PERFMETER
 */
typedef struct {
    t_uint64 totalCounter;
    t_uint64 loadCounter;
} t_cm_mpc_load_counter;


#endif /* CM_COMMON_PERFMETER_TYPE_H_ */