Searched refs:cpu_duty_offset (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/sys/dev/acpica/
H A Dacpi_throttle.c90 static uint32_t cpu_duty_offset; /* Offset in P_CNT of throttle val. */ variable
246 cpu_duty_offset = AcpiGbl_FADT.DutyOffset;
253 duty_end = cpu_duty_offset + cpu_duty_width - 1;
259 if (cpu_duty_offset <= 4 && duty_end >= 4) {
398 clk_val = (CPU_MAX_SPEED - 1) << cpu_duty_offset;
400 p_cnt |= (speed << cpu_duty_offset);
424 clk_val = (p_cnt >> cpu_duty_offset) & (CPU_MAX_SPEED - 1);

Completed in 59 milliseconds