1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
5 #ifndef CHANNEL_COMMANDS_H_
6 #define CHANNEL_COMMANDS_H_
15 /* --- Incoming messages --- */
19 #define CPU_POWER_CONNECT 2
21 #define PKT_POLICY_REMOVE 4
23 /* CPU Power Command Scaling */
24 #define CPU_POWER_SCALE_UP 1
25 #define CPU_POWER_SCALE_DOWN 2
26 #define CPU_POWER_SCALE_MAX 3
27 #define CPU_POWER_SCALE_MIN 4
28 #define CPU_POWER_ENABLE_TURBO 5
29 #define CPU_POWER_DISABLE_TURBO 6
31 /* CPU Power Queries */
32 #define CPU_POWER_QUERY_FREQ_LIST 7
33 #define CPU_POWER_QUERY_FREQ 8
34 #define CPU_POWER_QUERY_CAPS_LIST 9
35 #define CPU_POWER_QUERY_CAPS 10
37 /* --- Outgoing messages --- */
39 /* Generic Power Command Response */
40 #define CPU_POWER_CMD_ACK 1
41 #define CPU_POWER_CMD_NACK 2
43 /* CPU Power Query Responses */
44 #define CPU_POWER_FREQ_LIST 3
45 #define CPU_POWER_CAPS_LIST 4
50 #define VM_MAX_NAME_SZ 32
52 #define MAX_VCPU_PER_VM 8
54 struct t_boost_status {
58 struct timer_profile {
59 int busy_hours[HOURS];
60 int quiet_hours[HOURS];
61 int hours_to_use_traffic_profile[HOURS];
64 enum workload {HIGH, MEDIUM, LOW};
73 uint32_t min_packet_thresh;
74 uint32_t avg_max_packet_thresh;
75 uint32_t max_max_packet_thresh;
78 #define CORE_TYPE_VIRTUAL 0
79 #define CORE_TYPE_PHYSICAL 1
81 struct channel_packet {
82 uint64_t resource_id; /**< core_num, device */
83 uint32_t unit; /**< scale down/up/min/max */
84 uint32_t command; /**< Power, IO, etc */
85 char vm_name[VM_MAX_NAME_SZ];
87 uint64_t vfid[MAX_VFS];
88 int nb_mac_to_monitor;
89 struct traffic traffic_policy;
90 uint8_t vcpu_to_control[MAX_VCPU_PER_VM];
92 struct timer_profile timer_policy;
94 enum workload workload;
95 enum policy_to_use policy_to_use;
96 struct t_boost_status t_boost_status;
99 struct channel_packet_freq_list {
100 uint64_t resource_id; /**< core_num, device */
101 uint32_t unit; /**< scale down/up/min/max */
102 uint32_t command; /**< Power, IO, etc */
103 char vm_name[VM_MAX_NAME_SZ];
105 uint32_t freq_list[MAX_VCPU_PER_VM];
109 struct channel_packet_caps_list {
110 uint64_t resource_id; /**< core_num, device */
111 uint32_t unit; /**< scale down/up/min/max */
112 uint32_t command; /**< Power, IO, etc */
113 char vm_name[VM_MAX_NAME_SZ];
115 uint64_t turbo[MAX_VCPU_PER_VM];
116 uint64_t priority[MAX_VCPU_PER_VM];
125 #endif /* CHANNEL_COMMANDS_H_ */