/*
* Copyright (c) 2013, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Intel Corporation nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _NUMATOP_CMD_H
#define _NUMATOP_CMD_H
#include <sys/types.h>
#include <inttypes.h>
#include "types.h"
#include "win.h"
#ifdef __cplusplus
extern "C" {
#endif
#define CMD_HOME_CHAR 'h'
#define CMD_REFRESH_CHAR 'r'
#define CMD_QUIT_CHAR 'q'
#define CMD_BACK_CHAR 'b'
#define CMD_LATENCY_CHAR 'l'
#define CMD_IR_NORMALIZE_CHAR 'i'
#define CMD_NODE_OVERVIEW_CHAR 'n'
#define CMD_1_CHAR '1'
#define CMD_2_CHAR '2'
#define CMD_3_CHAR '3'
#define CMD_4_CHAR '4'
#define CMD_5_CHAR '5'
#define CMD_CALLCHAIN_CHAR 'c'
#define CMD_ACCDST_CHAR 'd'
#define CMD_MAP_GET_CHAR 'm'
#define CMD_MAP_STOP_CHAR 's'
#define CMD_PQOS_CMT_CHAR 'o'
#define CMD_PQOS_MBM_CHAR 'p'
typedef enum {
CMD_INVALID_ID = 0,
CMD_HOME_ID,
CMD_IR_NORMALIZE_ID,
CMD_MONITOR_ID,
CMD_LWP_ID,
CMD_LAT_ID,
CMD_LATNODE_ID,
CMD_NODE_OVERVIEW_ID,
CMD_NODE_DETAIL_ID,
CMD_CALLCHAIN_ID,
CMD_LLCALLCHAIN_ID,
CMD_ACCDST_ID,
CMD_MAP_GET_ID,
CMD_MAP_STOP_ID,
CMD_1_ID,
CMD_2_ID,
CMD_3_ID,
CMD_4_ID,
CMD_5_ID,
CMD_REFRESH_ID,
CMD_QUIT_ID,
CMD_BACK_ID,
CMD_RESIZE_ID,
CMD_PQOS_CMT_ID,
CMD_PQOS_MBM_ID,
} cmd_id_t;
#define CMD_NUM 25
typedef struct _cmd_home {
cmd_id_t id;
} cmd_home_t;
typedef struct _cmd_ir_normalize {
cmd_id_t id;
} cmd_ir_normalize_t;
typedef struct _cmd_monitor {
cmd_id_t id;
pid_t pid;
int lwpid;
} cmd_monitor_t;
typedef struct _cmd_lwp {
cmd_id_t id;
pid_t pid;
} cmd_lwp_t;
typedef struct _cmd_lat {
cmd_id_t id;
pid_t pid;
int lwpid;
} cmd_lat_t;
typedef struct _cmd_latnode {
cmd_id_t id;
pid_t pid;
int lwpid;
uint64_t addr;
uint64_t size;
} cmd_latnode_t;
typedef struct _cmd_accdst {
cmd_id_t id;
pid_t pid;
int lwpid;
} cmd_accdst_t;
typedef struct _cmd_node_overview {
cmd_id_t id;
} cmd_node_overview_t;
typedef struct _cmd_node_detail {
cmd_id_t id;
int nid;
} cmd_node_detail_t;
typedef struct _cmd_callchain {
cmd_id_t id;
pid_t pid;
int lwpid;
} cmd_callchain_t;
typedef struct _cmd_llcallchain {
cmd_id_t id;
pid_t pid;
int lwpid;
uint64_t addr;
uint64_t size;
char desc[WIN_DESCBUF_SIZE];
} cmd_llcallchain_t;
typedef struct _cmd_pqos_cmt {
cmd_id_t id;
pid_t pid;
int lwpid;
int flags;
} cmd_pqos_cmt_t;
typedef struct _cmd_pqos_mbm {
cmd_id_t id;
pid_t pid;
int lwpid;
int flags;
} cmd_pqos_mbm_t;
typedef union _cmd {
cmd_home_t home;
cmd_ir_normalize_t ir_normalize;
cmd_monitor_t monitor;
cmd_lwp_t lwp;
cmd_lat_t lat;
cmd_latnode_t latnode;
cmd_node_overview_t node_list;
cmd_node_detail_t node_detail;
cmd_callchain_t callchain;
cmd_llcallchain_t llcallchain;
cmd_accdst_t accdst;
cmd_pqos_cmt_t pqos_cmt;
cmd_pqos_mbm_t pqos_mbm;
} cmd_t;
typedef int (*pfn_switch_preop_t)(cmd_t *, boolean_t *);
typedef int (*pfn_switch_op_t)(cmd_t *, boolean_t);
typedef struct _switch {
pfn_switch_preop_t preop;
pfn_switch_op_t op;
} switch_t;
#define CMD_ID_SET(cmd_addr, id) \
(*(int *)(cmd_addr) = (id))
#define CMD_ID(cmd_addr) \
(*(int *)(cmd_addr))
#define CMD_LWP(cmd) \
((cmd_lwp_t *)(cmd))
#define CMD_LAT(cmd) \
((cmd_lat_t *)(cmd))
#define CMD_LATNODE(cmd) \
((cmd_latnode_t *)(cmd))
#define CMD_ACCDST(cmd) \
((cmd_accdst_t *)(cmd))
#define CMD_MONITOR(cmd) \
((cmd_monitor_t *)(cmd))
#define CMD_NODE_DETAIL(cmd) \
((cmd_node_detail_t *)(cmd))
#define CMD_CALLCHAIN(cmd) \
((cmd_callchain_t *)(cmd))
#define CMD_LLCALLCHAIN(cmd) \
((cmd_llcallchain_t *)(cmd))
#define CMD_PQOS_CMT(cmd) \
((cmd_pqos_cmt_t *)(cmd))
#define CMD_PQOS_MBM(cmd) \
((cmd_pqos_mbm_t *)(cmd))
#define CMD_UNCOREQPI(cmd) \
((cmd_uncoreqpi_t *)(cmd))
extern void switch_table_init(void);
extern int cmd_id_get(char);
extern void cmd_execute(cmd_t *, boolean_t *);
extern int op_refresh(cmd_t *, boolean_t);
extern int op_page_next(cmd_t *, boolean_t);
#ifdef __cplusplus
}
#endif
#endif /* _NUMATOP_CMD_H */