Symbol: sst_cmd
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
100
sst_cmd->data = data;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
102
hash_add(isst_hash, &sst_cmd->hnode, sst_cmd->cmd);
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
109
struct isst_cmd *sst_cmd;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
113
hash_for_each_safe(isst_hash, i, tmp, sst_cmd, hnode) {
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
114
hash_del(&sst_cmd->hnode);
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
115
kfree(sst_cmd);
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
138
struct isst_cmd *sst_cmd;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
144
hash_for_each_possible(isst_hash, sst_cmd, hnode, full_cmd) {
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
145
if (sst_cmd->cmd == full_cmd && sst_cmd->cpu == cpu &&
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
146
sst_cmd->mbox_cmd_type == mbox_cmd_type) {
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
147
sst_cmd->param = param;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
148
sst_cmd->data = data;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
162
struct isst_cmd *sst_cmd)
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
167
mbox_cmd.command = (sst_cmd->cmd & GENMASK_ULL(31, 16)) >> 16;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
168
mbox_cmd.sub_command = sst_cmd->cmd & GENMASK_ULL(15, 0);
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
169
mbox_cmd.parameter = sst_cmd->param;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
170
mbox_cmd.req_data = sst_cmd->data;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
171
mbox_cmd.logical_cpu = sst_cmd->cpu;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
184
struct isst_cmd *sst_cmd;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
187
hash_for_each(isst_hash, i, sst_cmd, hnode) {
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
190
if (sst_cmd->mbox_cmd_type) {
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
193
isst_mbox_resume_command(cb, sst_cmd);
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
195
wrmsrq_safe_on_cpu(sst_cmd->cpu, sst_cmd->cmd,
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
196
sst_cmd->data);
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
90
struct isst_cmd *sst_cmd;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
92
sst_cmd = kmalloc_obj(*sst_cmd);
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
93
if (!sst_cmd)
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
96
sst_cmd->cpu = cpu;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
97
sst_cmd->cmd = cmd;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
98
sst_cmd->mbox_cmd_type = mbox_cmd_type;
drivers/platform/x86/intel/speed_select_if/isst_if_common.c
99
sst_cmd->param = param;