Commit 69346180 authored by Ben Skeggs's avatar Ben Skeggs

drm/nv40/pm: convert to new pwm hooks, also fixing pwm type detection

A NV49 appeared a while back that was using the "nv41 style" pwm registers,
rather than the "nv40 style" ones my board is using.  This disproves the
previous theory that the pwm controller choice is chipset-specific.

So, after looking at a bunch of vbios images it appears that the next viable
theory is that we should select the pwm controller to use based on the gpio
line the fan is tied to, just like we do on nv50.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 5a4267ab
...@@ -56,10 +56,8 @@ void nv04_pm_clock_set(struct drm_device *, void *); ...@@ -56,10 +56,8 @@ void nv04_pm_clock_set(struct drm_device *, void *);
int nv40_pm_clocks_get(struct drm_device *, struct nouveau_pm_level *); int nv40_pm_clocks_get(struct drm_device *, struct nouveau_pm_level *);
void *nv40_pm_clocks_pre(struct drm_device *, struct nouveau_pm_level *); void *nv40_pm_clocks_pre(struct drm_device *, struct nouveau_pm_level *);
void nv40_pm_clocks_set(struct drm_device *, void *); void nv40_pm_clocks_set(struct drm_device *, void *);
int nv40_pm_fanspeed_get(struct drm_device *); int nv40_pm_pwm_get(struct drm_device *, struct dcb_gpio_entry *, u32*, u32*);
int nv40_pm_fanspeed_set(struct drm_device *, int percent); int nv40_pm_pwm_set(struct drm_device *, struct dcb_gpio_entry *, u32, u32);
int nv41_pm_fanspeed_get(struct drm_device *);
int nv41_pm_fanspeed_set(struct drm_device *, int percent);
/* nv50_pm.c */ /* nv50_pm.c */
int nv50_pm_clock_get(struct drm_device *, u32 id); int nv50_pm_clock_get(struct drm_device *, u32 id);
......
...@@ -292,22 +292,8 @@ static int nouveau_init_engine_ptrs(struct drm_device *dev) ...@@ -292,22 +292,8 @@ static int nouveau_init_engine_ptrs(struct drm_device *dev)
engine->pm.voltage_get = nouveau_voltage_gpio_get; engine->pm.voltage_get = nouveau_voltage_gpio_get;
engine->pm.voltage_set = nouveau_voltage_gpio_set; engine->pm.voltage_set = nouveau_voltage_gpio_set;
engine->pm.temp_get = nv40_temp_get; engine->pm.temp_get = nv40_temp_get;
switch (dev_priv->chipset) { engine->pm.pwm_get = nv40_pm_pwm_get;
case 0x40: engine->pm.pwm_set = nv40_pm_pwm_set;
case 0x49:
engine->pm.fanspeed_get = nv40_pm_fanspeed_get;
engine->pm.fanspeed_set = nv40_pm_fanspeed_set;
break;
case 0x42:
case 0x43:
case 0x47:
case 0x4b:
engine->pm.fanspeed_get = nv41_pm_fanspeed_get;
engine->pm.fanspeed_set = nv41_pm_fanspeed_set;
break;
default:
break;
}
engine->vram.init = nouveau_mem_detect; engine->vram.init = nouveau_mem_detect;
engine->vram.takedown = nouveau_stub_takedown; engine->vram.takedown = nouveau_stub_takedown;
engine->vram.flags_valid = nouveau_mem_flags_valid; engine->vram.flags_valid = nouveau_mem_flags_valid;
......
...@@ -348,54 +348,46 @@ nv40_pm_clocks_set(struct drm_device *dev, void *pre_state) ...@@ -348,54 +348,46 @@ nv40_pm_clocks_set(struct drm_device *dev, void *pre_state)
} }
int int
nv40_pm_fanspeed_get(struct drm_device *dev) nv40_pm_pwm_get(struct drm_device *dev, struct dcb_gpio_entry *gpio,
u32 *divs, u32 *duty)
{ {
u32 reg = nv_rd32(dev, 0x0010f0); if (gpio->line == 2) {
if (reg & 0x80000000) { u32 reg = nv_rd32(dev, 0x0010f0);
u32 duty = (reg & 0x7fff0000) >> 16; if (reg & 0x80000000) {
u32 divs = (reg & 0x00007fff); *duty = (reg & 0x7fff0000) >> 16;
if (divs && divs >= duty) *divs = (reg & 0x00007fff);
return ((divs - duty) * 100) / divs; return 0;
}
} else
if (gpio->line == 9) {
u32 reg = nv_rd32(dev, 0x0015f4);
if (reg & 0x80000000) {
*divs = nv_rd32(dev, 0x0015f8);
*duty = (reg & 0x7fffffff);
return 0;
}
} else {
NV_ERROR(dev, "unknown pwm ctrl for gpio %d\n", gpio->line);
return -ENODEV;
} }
return 100; return -EINVAL;
} }
int int
nv40_pm_fanspeed_set(struct drm_device *dev, int percent) nv40_pm_pwm_set(struct drm_device *dev, struct dcb_gpio_entry *gpio,
u32 divs, u32 duty)
{ {
struct drm_nouveau_private *dev_priv = dev->dev_private; if (gpio->line == 2) {
struct nouveau_pm_engine *pm = &dev_priv->engine.pm; nv_wr32(dev, 0x0010f0, 0x80000000 | (duty << 16) | divs);
u32 divs = pm->pwm_divisor; } else
u32 duty = ((100 - percent) * divs) / 100; if (gpio->line == 9) {
nv_wr32(dev, 0x0015f8, divs);
nv_wr32(dev, 0x0010f0, 0x80000000 | (duty << 16) | divs); nv_wr32(dev, 0x0015f4, duty | 0x80000000);
return 0; } else {
} NV_ERROR(dev, "unknown pwm ctrl for gpio %d\n", gpio->line);
return -ENODEV;
int
nv41_pm_fanspeed_get(struct drm_device *dev)
{
u32 reg = nv_rd32(dev, 0x0015f4);
if (reg & 0x80000000) {
u32 divs = nv_rd32(dev, 0x0015f8);
u32 duty = (reg & 0x7fffffff);
if (divs && divs >= duty)
return ((divs - duty) * 100) / divs;
} }
return 100;
}
int
nv41_pm_fanspeed_set(struct drm_device *dev, int percent)
{
struct drm_nouveau_private *dev_priv = dev->dev_private;
struct nouveau_pm_engine *pm = &dev_priv->engine.pm;
u32 divs = pm->pwm_divisor;
u32 duty = ((100 - percent) * divs) / 100;
nv_wr32(dev, 0x0015f8, divs);
nv_wr32(dev, 0x0015f4, duty | 0x80000000);
return 0; return 0;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment