Displaying 2 results from an estimated 2 matches for "signedpwmratio".
2018 Feb 07
1
Addressing the problem of noisy GPUs under Nouveau
...vUFXP16_16 pwmPct
)
{
NvUFXP16_16 pwmRatio;
//
// (F1.16 * F4.12) >> 12 => F4.28 => F4.16
// + F4.12 << 4 => F4.16
// ------------------------------------------
// F4.16
//
NvSFXP16_16 signedPwmRatio = pwmPct * fanPwmScaleSlope;
signedPwmRatio = (signedPwmRatio >> 12) +
(DRF_VAL(_TYPES, _FXP, _FRACTIONAL_MSB(4, 12),
signedPwmRatio)) +
(((NvSFXP16_16) fanPwmScaleOffset) << 4);
if (signedPwmRatio > NV_TY...
2018 Jan 28
3
Addressing the problem of noisy GPUs under Nouveau
On 28/11/17 07:32, John Hubbard wrote:
> On 11/23/2017 02:48 PM, Martin Peres wrote:
>> On 23/11/17 10:06, John Hubbard wrote:
>>> On 11/22/2017 05:07 PM, Martin Peres wrote:
>>>> Hey,
>>>>
>>>> Thanks for your answer, Andy!
>>>>
>>>> On 22/11/17 04:06, Ilia Mirkin wrote:
>>>>> On Tue, Nov 21, 2017 at 8:29