Searched refs:pid_param (Results 1 – 3 of 3) sorted by relevance
268 struct wf_pid_param pid_param; in wf_smu_create_sys_fans() local300 pid_param.gd = param->gd; in wf_smu_create_sys_fans()301 pid_param.gp = param->gp; in wf_smu_create_sys_fans()302 pid_param.gr = param->gr; in wf_smu_create_sys_fans()303 pid_param.interval = WF_SMU_SYS_FANS_INTERVAL; in wf_smu_create_sys_fans()304 pid_param.history_len = WF_SMU_SYS_FANS_HISTORY_SIZE; in wf_smu_create_sys_fans()305 pid_param.itarget = param->itarget; in wf_smu_create_sys_fans()306 pid_param.min = wf_control_get_min(fan_system); in wf_smu_create_sys_fans()307 pid_param.max = wf_control_get_max(fan_system); in wf_smu_create_sys_fans()309 pid_param.min = in wf_smu_create_sys_fans()[all …]
511 struct wf_pid_param pid_param; in pm121_create_sys_fans() local543 pid_param.gd = PM121_SYS_GD; in pm121_create_sys_fans()544 pid_param.gp = param->gp; in pm121_create_sys_fans()545 pid_param.gr = PM121_SYS_GR; in pm121_create_sys_fans()546 pid_param.interval = PM121_SYS_INTERVAL; in pm121_create_sys_fans()547 pid_param.history_len = PM121_SYS_HISTORY_SIZE; in pm121_create_sys_fans()548 pid_param.itarget = param->itarget; in pm121_create_sys_fans()551 pid_param.min = control->ops->get_min(control); in pm121_create_sys_fans()552 pid_param.max = control->ops->get_max(control); in pm121_create_sys_fans()558 pid_param.min = 0; in pm121_create_sys_fans()[all …]
145 struct wf_cpu_pid_param pid_param; in wf_smu_create_cpu_fans() local178 pid_param.interval = WF_SMU_CPU_FANS_INTERVAL; in wf_smu_create_cpu_fans()179 pid_param.history_len = piddata->history_len; in wf_smu_create_cpu_fans()180 if (pid_param.history_len > WF_CPU_PID_MAX_HISTORY) { in wf_smu_create_cpu_fans()183 pid_param.history_len = WF_CPU_PID_MAX_HISTORY; in wf_smu_create_cpu_fans()185 pid_param.gd = piddata->gd; in wf_smu_create_cpu_fans()186 pid_param.gp = piddata->gp; in wf_smu_create_cpu_fans()187 pid_param.gr = piddata->gr / pid_param.history_len; in wf_smu_create_cpu_fans()193 pid_param.tmax = tmax; in wf_smu_create_cpu_fans()194 pid_param.ttarget = tmax - tdelta; in wf_smu_create_cpu_fans()[all …]