Displaying 20 results from an estimated 23 matches for "pwm1".
Did you mean:
  pwm
  
2014 Jun 25
5
[Bug 80507] New: Cannot set pwm1 above 80 on GeForce 9600 GT, 10de:0622
https://bugs.freedesktop.org/show_bug.cgi?id=80507
          Priority: medium
            Bug ID: 80507
          Assignee: nouveau at lists.freedesktop.org
           Summary: Cannot set pwm1 above 80 on GeForce 9600 GT, 10de:0622
        QA Contact: xorg-team at lists.x.org
          Severity: normal
    Classification: Unclassified
                OS: All
          Reporter: awilliam at redhat.com
          Hardware: Other
            Status: NEW
           Version: unspecified...
2013 Jun 21
6
[Bug 66022] New: pwm1[_enable] faults after hibernate/restore related to automatic (or otherwise) fan management
https://bugs.freedesktop.org/show_bug.cgi?id=66022
          Priority: medium
            Bug ID: 66022
          Assignee: nouveau at lists.freedesktop.org
           Summary: pwm1[_enable] faults after hibernate/restore related
                    to automatic (or otherwise) fan management
        QA Contact: xorg-team at lists.x.org
          Severity: normal
    Classification: Unclassified
                OS: All
          Reporter: mr.dash.four at googlemail.com...
2013 Jun 25
10
[Bug 66177] New: pwm1 value not restored during hibernate/restore cycle in the event of manual fan management mode
https://bugs.freedesktop.org/show_bug.cgi?id=66177
          Priority: medium
            Bug ID: 66177
          Assignee: nouveau at lists.freedesktop.org
           Summary: pwm1 value not restored during hibernate/restore cycle
                    in the event of manual fan management mode
        QA Contact: xorg-team at lists.x.org
          Severity: normal
    Classification: Unclassified
                OS: All
          Reporter: mr.dash.four at googlemail.com...
2014 Dec 30
23
[Bug 87885] New: Fan speed of Nvidia GeForce 9600GT (G94) constantly too high
https://bugs.freedesktop.org/show_bug.cgi?id=87885
            Bug ID: 87885
           Summary: Fan speed of Nvidia GeForce 9600GT (G94) constantly
                    too high
           Product: xorg
           Version: unspecified
          Hardware: x86-64 (AMD64)
                OS: Linux (All)
            Status: NEW
          Severity: normal
          Priority: medium
         Component:
2014 Apr 30
26
[Bug 78116] New: Auto fan speed management doesn't do anything in non critical temperature range (NVC0)
...Hardware: x86-64 (AMD64)
            Status: NEW
           Version: unspecified
         Component: Driver/nouveau
           Product: xorg
I have Gigabyte GTX 560 Ti Ultra Durable card. (Logs for this issue are same as
in Bug 78106)
1a) When I finish booting, nouveau selects AUTO mode (pwm1_enable: 2) and set's
the fan power to 55% (pwm1: 55).
1b) Enable manual mode, set pwm1 to 100, enable auto mode.
In both cases I would expect from the AUTO mode to lower PWM to go as low as
pwm1_min if the temperature is low enough. My card temperature is 31-33 ?C but
pwm1 is never lowered in...
2014 May 25
6
[Bug 79204] New: [NV50] No reported temperature/fan speed on GTX260
https://bugs.freedesktop.org/show_bug.cgi?id=79204
          Priority: medium
            Bug ID: 79204
          Assignee: nouveau at lists.freedesktop.org
           Summary: [NV50] No reported temperature/fan speed on GTX260
        QA Contact: xorg-team at lists.x.org
          Severity: normal
    Classification: Unclassified
                OS: All
          Reporter: mdop at seznam.cz
    
2016 Apr 11
0
[PATCH] nouveau: Switch perms from macros to octal notations, module params readable to everyone
...intf(buf, PAGE_SIZE, "%d\n", nvkm_therm_fan_sense(therm));
 }
-static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, nouveau_hwmon_show_fan1_input,
+static SENSOR_DEVICE_ATTR(fan1_input, 0444, nouveau_hwmon_show_fan1_input,
 			  NULL, 0);
 
  static ssize_t
@@ -392,7 +392,7 @@ nouveau_hwmon_set_pwm1_enable(struct device *d, struct device_attribute *a,
 	else
 		return count;
 }
-static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
+static SENSOR_DEVICE_ATTR(pwm1_enable, 0644,
 			  nouveau_hwmon_get_pwm1_enable,
 			  nouveau_hwmon_set_pwm1_enable, 0);
 
@@ -431,7 +431,7 @@ nouveau_hwmon_...
2018 May 24
3
[PATCH] gpu: Consistently use octal not symbolic permissions
...*/
 
-static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, 0);
-static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
-static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
-static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
-static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
-static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
-static SENSOR_DEVICE_A...
2018 May 25
0
[PATCH] gpu: Consistently use octal not symbolic permissions
...SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, 0);
> -static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
> -static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
> -static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
> -static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
> -static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
> -static...
2014 Sep 07
5
[Bug 83587] New: 3.14.18: FAN control: none / external -- 3.16.2: FAN control: PWM
...Component: Driver/nouveau
           Product: xorg
Created attachment 105861
  --> https://bugs.freedesktop.org/attachment.cgi?id=105861&action=edit
dmesg and vbios tared
My gpu:  NVIDIA Corporation GK104 [GeForce GTX 760]
Running kernel 3.14.18 I can't control fanspeed. There are no pwm1 files in
/sys as mentioned in
https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/tree/Documentation/thermal/nouveau_thermal.
fan1 is always at maximum, while the temp1 is around 37?C.
Running kernel 3.16.2 with the same .config everything runs smooth (fan1 720
RPM, temp1 +39?C)....
2017 Apr 26
0
[PATCH v5 3/5] nouveau_hwmon: Remove old code, add .write/.read operations
...= nvxx_therm(&drm->client.device);
 
-	return snprintf(buf, PAGE_SIZE, "%d\n", nvkm_therm_fan_sense(therm));
+	return nvkm_therm_fan_sense(therm);
 }
-static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, nouveau_hwmon_show_fan1_input,
-			  NULL, 0);
 
- static ssize_t
-nouveau_hwmon_get_pwm1_enable(struct device *d,
-			   struct device_attribute *a, char *buf)
+static int
+nouveau_hwmon_get_pwm1_enable(struct nouveau_drm *drm)
 {
-	struct drm_device *dev = dev_get_drvdata(d);
-	struct nouveau_drm *drm = nouveau_drm(dev);
 	struct nvkm_therm *therm = nvxx_therm(&drm->client.devi...
2017 Apr 13
0
[PATCH 2/4] nouveau_hwmon: migrate to hwmon_device_register_with_info
...= nvxx_therm(&drm->client.device);
 
-	return snprintf(buf, PAGE_SIZE, "%d\n", nvkm_therm_fan_sense(therm));
+	return nvkm_therm_fan_sense(therm);
 }
-static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, nouveau_hwmon_show_fan1_input,
-			  NULL, 0);
 
- static ssize_t
-nouveau_hwmon_get_pwm1_enable(struct device *d,
-			   struct device_attribute *a, char *buf)
+static int
+nouveau_hwmon_get_pwm1_enable(struct nouveau_drm *drm)
 {
-	struct drm_device *dev = dev_get_drvdata(d);
-	struct nouveau_drm *drm = nouveau_drm(dev);
 	struct nvkm_therm *therm = nvxx_therm(&drm->client.devi...
2016 Nov 25
27
[Bug 98852] New: Nvidia graphics card fan not running or to slow, danger of overheating
https://bugs.freedesktop.org/show_bug.cgi?id=98852
            Bug ID: 98852
           Summary: Nvidia graphics card fan not running or to slow,
                    danger of overheating
           Product: xorg
           Version: unspecified
          Hardware: x86-64 (AMD64)
                OS: Linux (All)
            Status: NEW
          Severity: normal
          Priority: medium
        
2017 Apr 11
2
[PATCH 1/1] nouveau_hwmon: migrate to hwmon_device_register_with_info
...= nvxx_therm(&drm->client.device);
 
-	return snprintf(buf, PAGE_SIZE, "%d\n", nvkm_therm_fan_sense(therm));
+	return nvkm_therm_fan_sense(therm);
 }
-static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, nouveau_hwmon_show_fan1_input,
-			  NULL, 0);
 
- static ssize_t
-nouveau_hwmon_get_pwm1_enable(struct device *d,
-			   struct device_attribute *a, char *buf)
+static int
+nouveau_hwmon_get_pwm1_enable(struct nouveau_drm *drm)
 {
-	struct drm_device *dev = dev_get_drvdata(d);
-	struct nouveau_drm *drm = nouveau_drm(dev);
 	struct nvkm_therm *therm = nvxx_therm(&drm->client.devi...
2014 Jul 04
57
[Bug 80901] New: [NVCF] PWM fan speed too high under kernel 3.15
...ers/DRI/nouveau
           Product: Mesa
Since updating to kernel 3.15, the pwm fan speed of my 550 Ti card is too high
(above 35% in all situations) when compared with the proprietary NVIDIA driver
(that hovers around 30%).
The only way to reduce it to silence once again is to manually change the
pwm1_max value under sysfs to 30 (by default it's 100).
-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20140704/304390c4/attachme...
2017 Apr 26
9
[PATCH v5 0/5] replace hwmon_device_register for hwmon_device_register_with_info
This v5 drops a check for attr_set.
Versions:
v1 -> v2:
        * Keep temp attrs as read only
v2 -> v3:
        * Code fix-ups: struct and string as const and add return within switch
        due to fallthrough
        * Add Signed-off-by to all commits
v3 -> v4:
        * Rever const to struct attribute. Kbuild complains.
v4 -> v5:
	* Drops a check for attr_set in
2017 Apr 12
0
[PATCH 1/1] nouveau_hwmon: migrate to hwmon_device_register_with_info
...tf(buf, PAGE_SIZE, "%d\n",
nvkm_therm_fan_sense(therm));
> +       return nvkm_therm_fan_sense(therm);
>  }
> -static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO,
nouveau_hwmon_show_fan1_input,
> -                         NULL, 0);
>
> - static ssize_t
> -nouveau_hwmon_get_pwm1_enable(struct device *d,
> -                          struct device_attribute *a, char *buf)
> +static int
> +nouveau_hwmon_get_pwm1_enable(struct nouveau_drm *drm)
>  {
> -       struct drm_device *dev = dev_get_drvdata(d);
> -       struct nouveau_drm *drm = nouveau_drm(dev);
&g...
2017 May 08
5
[PATCH v6 0/5] replace hwmon_device_register for hwmon_device_register_with_info
...check for attr_set in "nouveau_temp_is_visible".
v5 -> v6:
	* Change to nouveau/hwmon all commit titles
	* Drop author change
	* Coding-Style
	* Move the check before the switch in nouveau_power_is_visible function
	* Expose temperature attrs as RW again
	* Get rid of nouveau_hwmon_set_pwm1/_enable and implement the code inside
	nouveau_pwm_write
	* Get rid of nouveau_hwmon_set_temp_* and implement the code inside
	nouveau_temp_write
	
This patchseries replaces the deprecated hwmon_device_register function with the
new one hwmon_device_register_with_info.
It also does some cleanup....
2017 Apr 22
6
[PATCH v4 0/5] replace hwmon_device_register for hwmon_device_register_with_info
Kbuild sent me an e-mail due to a fixup I introduced in v3.
It complains due to an incompatible pointer type and it doesn't build.
This version reverts it.
Versions:
v1 -> v2:
        * Keep temp attrs as read only
v2 -> v3:
        * Code fix-ups: struct and string as const and add return within switch
        due to fallthrough
        * Add Signed-off-by to all commits
v3 -> v4:
2017 Apr 21
6
[PATCH v3 0/5] replace hwmon_device_register for hwmon_device_register_with_info
Hi, this is version v3 with some fix-ups:
Versions:
v1 -> v2: 
	* Keep temp attrs as read only
v2 -> v3: 
	* Code fix-ups: struct and string as const and add return within switch
	due to fallthrough 
	* Add Signed-off-by to all commits
This patchseries replaces the deprecated hwmon_device_register function with the
new one hwmon_device_register_with_info.
It also does some cleanup.
Here