search for: pwm

Displaying 20 results from an estimated 158 matches for "pwm".

Did you mean: pm
2018 Feb 07
1
Addressing the problem of noisy GPUs under Nouveau
...; On Tue, Nov 21, 2017 at 8:29 PM, Andy Ritger <aritger at nvidia.com> wrote: >>>>>>> Martin's question was very long, but it boils down to this: >>>>>>> >>>>>>> How do we compute the correct values to write into the e114/e118 pwm >>>>>>> registers based on the VBIOS contents and current state of the board >>>>>>> (like temperature). >>>>>> >>>>>> Unfortunately, it can also be the e11c/e120 couple, or 0x200d8/dc on >>>>>> GF119+,...
2018 Jan 28
3
Addressing the problem of noisy GPUs under Nouveau
...ote: >>>>> On Tue, Nov 21, 2017 at 8:29 PM, Andy Ritger <aritger at nvidia.com> wrote: >>>>> Martin's question was very long, but it boils down to this: >>>>> >>>>> How do we compute the correct values to write into the e114/e118 pwm >>>>> registers based on the VBIOS contents and current state of the board >>>>> (like temperature). >>>> >>>> Unfortunately, it can also be the e11c/e120 couple, or 0x200d8/dc on >>>> GF119+, or 0x200cd/d0 on Kepler+. >>>&g...
2011 Jun 30
2
Saving fExtremes estimates and k-block return level with confidence intervals.
...) y <- c(2,3,2,3,4,5,6,1,0,0,0,6, 2, 1, 0, 0,9,3) z <- as.data.frame(cbind(n,y)) colnames(z) <- c("n","y") library(fExtremes) z <- split(z, z$n) res2 <-lapply(z, function(x){ ?????????????? m <- as.numeric(x$y) ?????????????? gevFit(m, block = 1, type = c("pwm")) ??????????????? }) > res2 $`1` Title: ?GEV Parameter Estimation Call: ?gevFit(x = m, block = 1, type = c("pwm")) Estimation Type: ? gev pwm Estimated Parameters: ?????? xi??????? mu????? beta 0.1033614 2.5389580 0.9092611 Description ? Wed Jun 29 23:07:48 2011 $`2` Title:...
2015 Sep 18
2
PWM-based voltage management input clock
Hello, We recently reverse engineered PWM-based voltage management but found an odity in the input clock frequency for the PWM controller. It seems like RM is assuming an input clock of 27.648 MHz instead of the actual 27MHz crystal found on the board. I thus have the following questions: - Is it a fixed value hardcoded in RM? (Curre...
2017 Nov 23
2
Addressing the problem of noisy GPUs under Nouveau
...n 22/11/17 04:06, Ilia Mirkin wrote: >>> On Tue, Nov 21, 2017 at 8:29 PM, Andy Ritger <aritger at nvidia.com> wrote: >>> Martin's question was very long, but it boils down to this: >>> >>> How do we compute the correct values to write into the e114/e118 pwm >>> registers based on the VBIOS contents and current state of the board >>> (like temperature). >> >> Unfortunately, it can also be the e11c/e120 couple, or 0x200d8/dc on >> GF119+, or 0x200cd/d0 on Kepler+. >> >> At least, it looks like we know whic...
2011 Oct 25
1
PWM vs. DAC output
I am using ST micro's STM32F103 chip with their AN2812 development code. It uses a PWM output, resulting in low-quality sound. Can I just use a scaled version of the PWM to drive a DAC? (i.e. is the output linear, or is there shaping to make the PWM output work?) Any feedback, links or pointers would be greatly appreciated. David. -------------- next part -------------- An HTML at...
2004 Feb 25
2
PWM Help
I saw a Help e-mail related to MLE. Does R have a probability weighted method (PWM) estimator function? I can't seem to find anything on PWM, unless my eyes are playing trick on me. [[alternative HTML version deleted]]
2017 Nov 23
2
Addressing the problem of noisy GPUs under Nouveau
...thout > nouveau PMU code loaded. Not sure what it's used for until reclocking > becomes a thing on Fermi. Yeah, this would hinder our reclocking efforts :s The best idea I can come up with is to fake the temperature (register 0x20408) to 1°C (minimum the hardware allows us) and read the PWM duty, then we can get the maximum duty by setting the temperature to the fan_boost threshold. Not sure we have a sure-way of computing the fan_boost threshold though, maybe we can just use of the thermal throttling threshold for this (more on this later in the email). In any case, all of these so...
2014 Jul 17
2
[lm-sensors] hwmon: question about the sysfs interface
...ps are > quite different. > > Please have a look into Documentation/hwmon/nct6775. It is by far > the driver with the most comprehensive fan control mechanisms and > attributes. Would any of the attributes or atribute groups in this > driver meet your needs ? I could imagine that pwm1_target_temp > for the upper temperature limit and pwm1_temp_tolerance for the difference > between upper and lower limit might do. Then there are other attributes > such as pxm1_start, pwm1_floor, pwm1_step, and pwm1_max which you > could use to control pwm values further is that is po...
2007 Jul 01
2
pwm fancontrol kernel module??
Hi, I have just setup CentOS4 on a system and want to get "fancontrol" working.. I am able to get lm_sensors configured but when I run pwmconfig I am told there are no modules loaded.. What module needs to be loaded for pwmconfig and fancontrol to work? (Board does support PWM in the fans because fancontrol worked on this pc with Ubuntu) TIA
2018 Jan 29
1
Addressing the problem of noisy GPUs under Nouveau
...; On Tue, Nov 21, 2017 at 8:29 PM, Andy Ritger <aritger at nvidia.com> wrote: >>>>>>> Martin's question was very long, but it boils down to this: >>>>>>> >>>>>>> How do we compute the correct values to write into the e114/e118 pwm >>>>>>> registers based on the VBIOS contents and current state of the board >>>>>>> (like temperature). >>>>>> >>>>>> Unfortunately, it can also be the e11c/e120 couple, or 0x200d8/dc on >>>>>> GF119+,...
2014 Jul 04
2
[Bug 80900] New: [NVCF] PWM fan speed too high under kernel 3.15
https://bugs.freedesktop.org/show_bug.cgi?id=80900 Priority: medium Bug ID: 80900 Assignee: nouveau at lists.freedesktop.org Summary: [NVCF] PWM fan speed too high under kernel 3.15 Severity: normal Classification: Unclassified OS: Linux (All) Reporter: gianni at rootcube.net Hardware: x86-64 (AMD64) Status: NEW Version: 10.2 Component: Drivers/DRI/nouveau...
2014 Jul 14
2
hwmon: question about the sysfs interface
Hello guys, For a patch to this nouveau bug [1] I'm trying to implement the sysfs interface for two properties (linear_min and linear_max) nouveau uses internally to decide when to raise the fan speed. The initial idea was to have them as custom sysfs attributes, but I was advised to try to fit them into the hwmon sysfs interface. And this is when I hit a little roadblock. If my
2015 Sep 19
1
PWM-based voltage management input clock
On 18/09/15 23:30, Andy Ritger wrote: > Thanks, Martin. I'll try to follow up on this next week and get you an answer. What GPUs have you observed this on? > Thanks Andy, As far as I can tell, it is the case for all GPUs using the PWM-based voltage management. To be more specific, we have seen this behaviour on a GK106 (mobile), a GM117 and a GM204.
2017 Nov 28
0
Addressing the problem of noisy GPUs under Nouveau
..., Ilia Mirkin wrote: >>>> On Tue, Nov 21, 2017 at 8:29 PM, Andy Ritger <aritger at nvidia.com> wrote: >>>> Martin's question was very long, but it boils down to this: >>>> >>>> How do we compute the correct values to write into the e114/e118 pwm >>>> registers based on the VBIOS contents and current state of the board >>>> (like temperature). >>> >>> Unfortunately, it can also be the e11c/e120 couple, or 0x200d8/dc on >>> GF119+, or 0x200cd/d0 on Kepler+. >>> >>> At least...
2018 Jan 29
0
Addressing the problem of noisy GPUs under Nouveau
...;>>> On Tue, Nov 21, 2017 at 8:29 PM, Andy Ritger <aritger at nvidia.com> wrote: >>>>>> Martin's question was very long, but it boils down to this: >>>>>> >>>>>> How do we compute the correct values to write into the e114/e118 pwm >>>>>> registers based on the VBIOS contents and current state of the board >>>>>> (like temperature). >>>>> >>>>> Unfortunately, it can also be the e11c/e120 couple, or 0x200d8/dc on >>>>> GF119+, or 0x200cd/d0 on Kep...
2018 Apr 22
0
[PATCH] drm/nouveau: fix temp/pwm visibility, skip hwmon when no sensors exist
A NV34 GPU was seeing temp and pwm entries in hwmon, which would error out when read. These should not have been visible, but also the whole hwmon object should just not have been registered in the first place. Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- drivers/gpu/drm/nouveau/nouveau_hwmon.c | 16 +++++++++++++...
2014 Sep 07
5
[Bug 83587] New: 3.14.18: FAN control: none / external -- 3.16.2: FAN control: PWM
https://bugs.freedesktop.org/show_bug.cgi?id=83587 Priority: medium Bug ID: 83587 Assignee: nouveau at lists.freedesktop.org Summary: 3.14.18: FAN control: none / external -- 3.16.2: FAN control: PWM QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All) Reporter: riesebie at lxtec.de Hardware: x86-64 (AMD64) Status: NEW Version: unspecified Component: Driver/nou...
2019 Jun 13
2
NOUVEAU_LEGACY_CTX_SUPPORT Fan Speed
As of kernel 5.1.9, on resume from suspend, my NV50 fan runs at full speed. Not sure if it has to do with this new config option (NOUVEAU_LEGACY_CTX_SUPPORT)? This issue is not present using kernel 5.0.21. Years ago I filed a similar issue: 60704 – [nouveau, git regression] - I2C PWM fan control broken on nv50 adt7475 on kernels 3.3.x+ Thanks. | | | | 60704 – [nouveau, git regression] - I2C PWM fan control broken on nv50 a... | | | -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/nouveau/...
2019 Jun 16
4
NOUVEAU_LEGACY_CTX_SUPPORT Fan Speed
...om suspend, my NV50 fan runs at full > speed. > > Not sure if it has to do with this new config option ( > NOUVEAU_LEGACY_CTX_SUPPORT)? > > This issue is not present using kernel 5.0.21. > > Years ago I filed a similar issue: > > 60704 – [nouveau, git regression] - I2C PWM fan control broken on nv50 > adt7475 on kernels 3.3.x+ > <https://bugs.freedesktop.org/show_bug.cgi?id=60704> > > Thanks. > > > 60704 – [nouveau, git regression] - I2C PWM fan control broken on nv50 a... > > <https://bugs.freedesktop.org/show_bug.cgi?id=60704>...