2009-12-11 17:24:15 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Red Hat <mjg@redhat.com>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial
|
|
|
|
* portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Authors:
|
|
|
|
* Matthew Garrett <mjg@redhat.com>
|
|
|
|
*
|
|
|
|
* Register locations derived from NVClock by Roderick Colenbrander
|
|
|
|
*/
|
|
|
|
|
2016-12-08 07:57:09 +08:00
|
|
|
#include <linux/apple-gmux.h>
|
2009-12-11 17:24:15 +08:00
|
|
|
#include <linux/backlight.h>
|
drm/nouveau/bl: Assign different names to interfaces
Currently, every backlight interface created by Nouveau uses the same name,
nv_backlight. This leads to a sysfs warning as it tries to create an already
existing folder. This patch adds a incremented number to the name, but keeps
the initial name as nv_backlight, to avoid possibly breaking userspace; the
second interface will be named nv_backlight1, and so on.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86539
v2:
* Switch to using ida for generating unique IDs, as suggested by Ilia Mirkin;
* Allocate backlight name on the stack, as suggested by Ilia Mirkin;
* Move `nouveau_get_backlight_name()` to avoid forward declaration, as
suggested by Ilia Mirkin;
* Fix reference to bug report formatting, as reported by Nick Tenney.
v3:
* Define a macro for the size of the backlight name, to avoid defining
it multiple times;
* Use snprintf in place of sprintf.
v4:
* Do not create similarly named interfaces when reaching the maximum
amount of unique names, but fail instead, as pointed out by Lukas Wunner
Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2016-12-08 07:57:08 +08:00
|
|
|
#include <linux/idr.h>
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2016-05-20 07:22:55 +08:00
|
|
|
#include "nouveau_drv.h"
|
2009-12-11 17:24:15 +08:00
|
|
|
#include "nouveau_reg.h"
|
2011-08-02 17:29:37 +08:00
|
|
|
#include "nouveau_encoder.h"
|
2018-09-07 05:43:23 +08:00
|
|
|
#include "nouveau_connector.h"
|
2009-12-11 17:24:15 +08:00
|
|
|
|
drm/nouveau/bl: Assign different names to interfaces
Currently, every backlight interface created by Nouveau uses the same name,
nv_backlight. This leads to a sysfs warning as it tries to create an already
existing folder. This patch adds a incremented number to the name, but keeps
the initial name as nv_backlight, to avoid possibly breaking userspace; the
second interface will be named nv_backlight1, and so on.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86539
v2:
* Switch to using ida for generating unique IDs, as suggested by Ilia Mirkin;
* Allocate backlight name on the stack, as suggested by Ilia Mirkin;
* Move `nouveau_get_backlight_name()` to avoid forward declaration, as
suggested by Ilia Mirkin;
* Fix reference to bug report formatting, as reported by Nick Tenney.
v3:
* Define a macro for the size of the backlight name, to avoid defining
it multiple times;
* Use snprintf in place of sprintf.
v4:
* Do not create similarly named interfaces when reaching the maximum
amount of unique names, but fail instead, as pointed out by Lukas Wunner
Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2016-12-08 07:57:08 +08:00
|
|
|
static struct ida bl_ida;
|
|
|
|
#define BL_NAME_SIZE 15 // 12 for name + 2 for digits + 1 for '\0'
|
|
|
|
|
2018-09-07 05:43:23 +08:00
|
|
|
struct nouveau_backlight {
|
|
|
|
struct backlight_device *dev;
|
drm/nouveau/bl: Assign different names to interfaces
Currently, every backlight interface created by Nouveau uses the same name,
nv_backlight. This leads to a sysfs warning as it tries to create an already
existing folder. This patch adds a incremented number to the name, but keeps
the initial name as nv_backlight, to avoid possibly breaking userspace; the
second interface will be named nv_backlight1, and so on.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86539
v2:
* Switch to using ida for generating unique IDs, as suggested by Ilia Mirkin;
* Allocate backlight name on the stack, as suggested by Ilia Mirkin;
* Move `nouveau_get_backlight_name()` to avoid forward declaration, as
suggested by Ilia Mirkin;
* Fix reference to bug report formatting, as reported by Nick Tenney.
v3:
* Define a macro for the size of the backlight name, to avoid defining
it multiple times;
* Use snprintf in place of sprintf.
v4:
* Do not create similarly named interfaces when reaching the maximum
amount of unique names, but fail instead, as pointed out by Lukas Wunner
Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2016-12-08 07:57:08 +08:00
|
|
|
int id;
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
2018-09-07 05:43:23 +08:00
|
|
|
nouveau_get_backlight_name(char backlight_name[BL_NAME_SIZE],
|
|
|
|
struct nouveau_backlight *bl)
|
drm/nouveau/bl: Assign different names to interfaces
Currently, every backlight interface created by Nouveau uses the same name,
nv_backlight. This leads to a sysfs warning as it tries to create an already
existing folder. This patch adds a incremented number to the name, but keeps
the initial name as nv_backlight, to avoid possibly breaking userspace; the
second interface will be named nv_backlight1, and so on.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86539
v2:
* Switch to using ida for generating unique IDs, as suggested by Ilia Mirkin;
* Allocate backlight name on the stack, as suggested by Ilia Mirkin;
* Move `nouveau_get_backlight_name()` to avoid forward declaration, as
suggested by Ilia Mirkin;
* Fix reference to bug report formatting, as reported by Nick Tenney.
v3:
* Define a macro for the size of the backlight name, to avoid defining
it multiple times;
* Use snprintf in place of sprintf.
v4:
* Do not create similarly named interfaces when reaching the maximum
amount of unique names, but fail instead, as pointed out by Lukas Wunner
Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2016-12-08 07:57:08 +08:00
|
|
|
{
|
|
|
|
const int nb = ida_simple_get(&bl_ida, 0, 0, GFP_KERNEL);
|
|
|
|
if (nb < 0 || nb >= 100)
|
|
|
|
return false;
|
|
|
|
if (nb > 0)
|
|
|
|
snprintf(backlight_name, BL_NAME_SIZE, "nv_backlight%d", nb);
|
|
|
|
else
|
|
|
|
snprintf(backlight_name, BL_NAME_SIZE, "nv_backlight");
|
2018-09-07 05:43:23 +08:00
|
|
|
bl->id = nb;
|
drm/nouveau/bl: Assign different names to interfaces
Currently, every backlight interface created by Nouveau uses the same name,
nv_backlight. This leads to a sysfs warning as it tries to create an already
existing folder. This patch adds a incremented number to the name, but keeps
the initial name as nv_backlight, to avoid possibly breaking userspace; the
second interface will be named nv_backlight1, and so on.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86539
v2:
* Switch to using ida for generating unique IDs, as suggested by Ilia Mirkin;
* Allocate backlight name on the stack, as suggested by Ilia Mirkin;
* Move `nouveau_get_backlight_name()` to avoid forward declaration, as
suggested by Ilia Mirkin;
* Fix reference to bug report formatting, as reported by Nick Tenney.
v3:
* Define a macro for the size of the backlight name, to avoid defining
it multiple times;
* Use snprintf in place of sprintf.
v4:
* Do not create similarly named interfaces when reaching the maximum
amount of unique names, but fail instead, as pointed out by Lukas Wunner
Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2016-12-08 07:57:08 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-08-02 16:54:43 +08:00
|
|
|
static int
|
|
|
|
nv40_get_intensity(struct backlight_device *bd)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2018-09-07 05:43:26 +08:00
|
|
|
struct nouveau_encoder *nv_encoder = bl_get_data(bd);
|
|
|
|
struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
|
2016-05-18 11:57:42 +08:00
|
|
|
struct nvif_object *device = &drm->client.device.object;
|
2014-08-10 02:10:22 +08:00
|
|
|
int val = (nvif_rd32(device, NV40_PMC_BACKLIGHT) &
|
2018-09-07 05:43:25 +08:00
|
|
|
NV40_PMC_BACKLIGHT_MASK) >> 16;
|
2009-12-11 17:24:15 +08:00
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2011-08-02 16:54:43 +08:00
|
|
|
static int
|
|
|
|
nv40_set_intensity(struct backlight_device *bd)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2018-09-07 05:43:26 +08:00
|
|
|
struct nouveau_encoder *nv_encoder = bl_get_data(bd);
|
|
|
|
struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
|
2016-05-18 11:57:42 +08:00
|
|
|
struct nvif_object *device = &drm->client.device.object;
|
2009-12-11 17:24:15 +08:00
|
|
|
int val = bd->props.brightness;
|
2014-08-10 02:10:22 +08:00
|
|
|
int reg = nvif_rd32(device, NV40_PMC_BACKLIGHT);
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2014-08-10 02:10:22 +08:00
|
|
|
nvif_wr32(device, NV40_PMC_BACKLIGHT,
|
2018-09-07 05:43:25 +08:00
|
|
|
(val << 16) | (reg & ~NV40_PMC_BACKLIGHT_MASK));
|
2009-12-11 17:24:15 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-16 21:14:02 +08:00
|
|
|
static const struct backlight_ops nv40_bl_ops = {
|
2009-12-11 17:24:15 +08:00
|
|
|
.options = BL_CORE_SUSPENDRESUME,
|
|
|
|
.get_brightness = nv40_get_intensity,
|
|
|
|
.update_status = nv40_set_intensity,
|
|
|
|
};
|
|
|
|
|
2011-08-02 16:54:43 +08:00
|
|
|
static int
|
2018-09-07 05:43:26 +08:00
|
|
|
nv40_backlight_init(struct nouveau_encoder *encoder,
|
|
|
|
struct backlight_properties *props,
|
|
|
|
const struct backlight_ops **ops)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2018-09-07 05:43:26 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(encoder->base.base.dev);
|
2016-05-18 11:57:42 +08:00
|
|
|
struct nvif_object *device = &drm->client.device.object;
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2014-08-10 02:10:22 +08:00
|
|
|
if (!(nvif_rd32(device, NV40_PMC_BACKLIGHT) & NV40_PMC_BACKLIGHT_MASK))
|
2018-09-07 05:43:26 +08:00
|
|
|
return -ENODEV;
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2018-09-07 05:43:26 +08:00
|
|
|
props->type = BACKLIGHT_RAW;
|
|
|
|
props->max_brightness = 31;
|
|
|
|
*ops = &nv40_bl_ops;
|
2009-12-11 17:24:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-02 16:54:43 +08:00
|
|
|
static int
|
|
|
|
nv50_get_intensity(struct backlight_device *bd)
|
|
|
|
{
|
2011-08-02 17:29:37 +08:00
|
|
|
struct nouveau_encoder *nv_encoder = bl_get_data(bd);
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
|
2016-05-18 11:57:42 +08:00
|
|
|
struct nvif_object *device = &drm->client.device.object;
|
2018-02-20 00:09:45 +08:00
|
|
|
int or = ffs(nv_encoder->dcb->or) - 1;
|
2011-08-02 18:45:35 +08:00
|
|
|
u32 div = 1025;
|
|
|
|
u32 val;
|
2011-08-02 16:54:43 +08:00
|
|
|
|
2014-08-10 02:10:22 +08:00
|
|
|
val = nvif_rd32(device, NV50_PDISP_SOR_PWM_CTL(or));
|
2011-08-03 06:52:39 +08:00
|
|
|
val &= NV50_PDISP_SOR_PWM_CTL_VAL;
|
2011-08-02 18:45:35 +08:00
|
|
|
return ((val * 100) + (div / 2)) / div;
|
2011-08-02 16:54:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nv50_set_intensity(struct backlight_device *bd)
|
|
|
|
{
|
2011-08-02 17:29:37 +08:00
|
|
|
struct nouveau_encoder *nv_encoder = bl_get_data(bd);
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
|
2016-05-18 11:57:42 +08:00
|
|
|
struct nvif_object *device = &drm->client.device.object;
|
2018-02-20 00:09:45 +08:00
|
|
|
int or = ffs(nv_encoder->dcb->or) - 1;
|
2011-08-02 18:45:35 +08:00
|
|
|
u32 div = 1025;
|
|
|
|
u32 val = (bd->props.brightness * div) / 100;
|
2011-08-02 16:54:43 +08:00
|
|
|
|
2014-08-10 02:10:22 +08:00
|
|
|
nvif_wr32(device, NV50_PDISP_SOR_PWM_CTL(or),
|
2018-09-07 05:43:25 +08:00
|
|
|
NV50_PDISP_SOR_PWM_CTL_NEW | val);
|
2011-08-02 16:54:43 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct backlight_ops nv50_bl_ops = {
|
|
|
|
.options = BL_CORE_SUSPENDRESUME,
|
|
|
|
.get_brightness = nv50_get_intensity,
|
|
|
|
.update_status = nv50_set_intensity,
|
|
|
|
};
|
|
|
|
|
2011-08-03 06:52:39 +08:00
|
|
|
static int
|
|
|
|
nva3_get_intensity(struct backlight_device *bd)
|
|
|
|
{
|
|
|
|
struct nouveau_encoder *nv_encoder = bl_get_data(bd);
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
|
2016-05-18 11:57:42 +08:00
|
|
|
struct nvif_object *device = &drm->client.device.object;
|
2018-02-20 00:09:45 +08:00
|
|
|
int or = ffs(nv_encoder->dcb->or) - 1;
|
2011-08-03 06:52:39 +08:00
|
|
|
u32 div, val;
|
|
|
|
|
2014-08-10 02:10:22 +08:00
|
|
|
div = nvif_rd32(device, NV50_PDISP_SOR_PWM_DIV(or));
|
|
|
|
val = nvif_rd32(device, NV50_PDISP_SOR_PWM_CTL(or));
|
2011-08-03 06:52:39 +08:00
|
|
|
val &= NVA3_PDISP_SOR_PWM_CTL_VAL;
|
|
|
|
if (div && div >= val)
|
|
|
|
return ((val * 100) + (div / 2)) / div;
|
|
|
|
|
|
|
|
return 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nva3_set_intensity(struct backlight_device *bd)
|
|
|
|
{
|
|
|
|
struct nouveau_encoder *nv_encoder = bl_get_data(bd);
|
2012-07-31 14:16:21 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
|
2016-05-18 11:57:42 +08:00
|
|
|
struct nvif_object *device = &drm->client.device.object;
|
2018-02-20 00:09:45 +08:00
|
|
|
int or = ffs(nv_encoder->dcb->or) - 1;
|
2011-08-03 06:52:39 +08:00
|
|
|
u32 div, val;
|
|
|
|
|
2014-08-10 02:10:22 +08:00
|
|
|
div = nvif_rd32(device, NV50_PDISP_SOR_PWM_DIV(or));
|
2011-08-03 06:52:39 +08:00
|
|
|
val = (bd->props.brightness * div) / 100;
|
|
|
|
if (div) {
|
2018-09-07 05:43:25 +08:00
|
|
|
nvif_wr32(device, NV50_PDISP_SOR_PWM_CTL(or),
|
|
|
|
val |
|
|
|
|
NV50_PDISP_SOR_PWM_CTL_NEW |
|
|
|
|
NVA3_PDISP_SOR_PWM_CTL_UNK);
|
2011-08-03 06:52:39 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct backlight_ops nva3_bl_ops = {
|
|
|
|
.options = BL_CORE_SUSPENDRESUME,
|
|
|
|
.get_brightness = nva3_get_intensity,
|
|
|
|
.update_status = nva3_set_intensity,
|
|
|
|
};
|
|
|
|
|
2011-08-02 16:54:43 +08:00
|
|
|
static int
|
2018-09-07 05:43:26 +08:00
|
|
|
nv50_backlight_init(struct nouveau_encoder *nv_encoder,
|
|
|
|
struct backlight_properties *props,
|
|
|
|
const struct backlight_ops **ops)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2018-09-07 05:43:26 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
|
2016-05-18 11:57:42 +08:00
|
|
|
struct nvif_object *device = &drm->client.device.object;
|
2011-08-02 17:29:37 +08:00
|
|
|
|
2018-02-20 00:09:45 +08:00
|
|
|
if (!nvif_rd32(device, NV50_PDISP_SOR_PWM_CTL(ffs(nv_encoder->dcb->or) - 1)))
|
2018-09-07 05:43:26 +08:00
|
|
|
return -ENODEV;
|
2018-09-07 05:43:23 +08:00
|
|
|
|
2016-05-18 11:57:42 +08:00
|
|
|
if (drm->client.device.info.chipset <= 0xa0 ||
|
|
|
|
drm->client.device.info.chipset == 0xaa ||
|
|
|
|
drm->client.device.info.chipset == 0xac)
|
2018-09-07 05:43:26 +08:00
|
|
|
*ops = &nv50_bl_ops;
|
2011-08-03 06:52:39 +08:00
|
|
|
else
|
2018-09-07 05:43:26 +08:00
|
|
|
*ops = &nva3_bl_ops;
|
2011-08-03 06:52:39 +08:00
|
|
|
|
2018-09-07 05:43:26 +08:00
|
|
|
props->type = BACKLIGHT_RAW;
|
|
|
|
props->max_brightness = 100;
|
drm/nouveau/bl: Assign different names to interfaces
Currently, every backlight interface created by Nouveau uses the same name,
nv_backlight. This leads to a sysfs warning as it tries to create an already
existing folder. This patch adds a incremented number to the name, but keeps
the initial name as nv_backlight, to avoid possibly breaking userspace; the
second interface will be named nv_backlight1, and so on.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86539
v2:
* Switch to using ida for generating unique IDs, as suggested by Ilia Mirkin;
* Allocate backlight name on the stack, as suggested by Ilia Mirkin;
* Move `nouveau_get_backlight_name()` to avoid forward declaration, as
suggested by Ilia Mirkin;
* Fix reference to bug report formatting, as reported by Nick Tenney.
v3:
* Define a macro for the size of the backlight name, to avoid defining
it multiple times;
* Use snprintf in place of sprintf.
v4:
* Do not create similarly named interfaces when reaching the maximum
amount of unique names, but fail instead, as pointed out by Lukas Wunner
Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2016-12-08 07:57:08 +08:00
|
|
|
|
2009-12-11 17:24:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-02 16:54:43 +08:00
|
|
|
int
|
2018-09-07 05:43:23 +08:00
|
|
|
nouveau_backlight_init(struct drm_connector *connector)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2018-09-07 05:43:23 +08:00
|
|
|
struct nouveau_drm *drm = nouveau_drm(connector->dev);
|
2018-09-07 05:43:26 +08:00
|
|
|
struct nouveau_backlight *bl;
|
|
|
|
struct nouveau_encoder *nv_encoder = NULL;
|
2016-05-18 11:57:42 +08:00
|
|
|
struct nvif_device *device = &drm->client.device;
|
2018-09-07 05:43:26 +08:00
|
|
|
char backlight_name[BL_NAME_SIZE];
|
|
|
|
struct backlight_properties props = {0};
|
|
|
|
const struct backlight_ops *ops;
|
|
|
|
int ret;
|
2018-02-17 20:40:23 +08:00
|
|
|
|
2016-12-08 07:57:09 +08:00
|
|
|
if (apple_gmux_present()) {
|
2018-09-07 05:43:23 +08:00
|
|
|
NV_INFO_ONCE(drm, "Apple GMUX detected: not registering Nouveau backlight interface\n");
|
2016-12-08 07:57:09 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-07 05:43:26 +08:00
|
|
|
if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS)
|
|
|
|
nv_encoder = find_encoder(connector, DCB_OUTPUT_LVDS);
|
|
|
|
else if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
|
|
|
|
nv_encoder = find_encoder(connector, DCB_OUTPUT_DP);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!nv_encoder)
|
2018-09-07 05:43:23 +08:00
|
|
|
return 0;
|
2011-08-02 17:29:37 +08:00
|
|
|
|
2018-09-07 05:43:23 +08:00
|
|
|
switch (device->info.family) {
|
|
|
|
case NV_DEVICE_INFO_V0_CURIE:
|
2018-09-07 05:43:26 +08:00
|
|
|
ret = nv40_backlight_init(nv_encoder, &props, &ops);
|
|
|
|
break;
|
2018-09-07 05:43:23 +08:00
|
|
|
case NV_DEVICE_INFO_V0_TESLA:
|
|
|
|
case NV_DEVICE_INFO_V0_FERMI:
|
|
|
|
case NV_DEVICE_INFO_V0_KEPLER:
|
|
|
|
case NV_DEVICE_INFO_V0_MAXWELL:
|
2019-01-11 14:08:20 +08:00
|
|
|
case NV_DEVICE_INFO_V0_PASCAL:
|
|
|
|
case NV_DEVICE_INFO_V0_VOLTA:
|
|
|
|
case NV_DEVICE_INFO_V0_TURING:
|
2018-09-07 05:43:26 +08:00
|
|
|
ret = nv50_backlight_init(nv_encoder, &props, &ops);
|
|
|
|
break;
|
2018-09-07 05:43:23 +08:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
2018-09-07 05:43:26 +08:00
|
|
|
|
|
|
|
if (ret == -ENODEV)
|
|
|
|
return 0;
|
|
|
|
else if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
bl = kzalloc(sizeof(*bl), GFP_KERNEL);
|
|
|
|
if (!bl)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
if (!nouveau_get_backlight_name(backlight_name, bl)) {
|
|
|
|
NV_ERROR(drm, "Failed to retrieve a unique name for the backlight interface\n");
|
|
|
|
goto fail_alloc;
|
|
|
|
}
|
|
|
|
|
|
|
|
bl->dev = backlight_device_register(backlight_name, connector->kdev,
|
|
|
|
nv_encoder, ops, &props);
|
|
|
|
if (IS_ERR(bl->dev)) {
|
|
|
|
if (bl->id >= 0)
|
|
|
|
ida_simple_remove(&bl_ida, bl->id);
|
|
|
|
ret = PTR_ERR(bl->dev);
|
|
|
|
goto fail_alloc;
|
|
|
|
}
|
|
|
|
|
|
|
|
nouveau_connector(connector)->backlight = bl;
|
|
|
|
bl->dev->props.brightness = bl->dev->ops->get_brightness(bl->dev);
|
|
|
|
backlight_update_status(bl->dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail_alloc:
|
|
|
|
kfree(bl);
|
|
|
|
return ret;
|
2009-12-11 17:24:15 +08:00
|
|
|
}
|
|
|
|
|
2011-08-02 16:54:43 +08:00
|
|
|
void
|
2018-09-07 05:43:24 +08:00
|
|
|
nouveau_backlight_fini(struct drm_connector *connector)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2018-09-07 05:43:23 +08:00
|
|
|
struct nouveau_connector *nv_conn = nouveau_connector(connector);
|
|
|
|
struct nouveau_backlight *bl = nv_conn->backlight;
|
drm/nouveau/bl: Assign different names to interfaces
Currently, every backlight interface created by Nouveau uses the same name,
nv_backlight. This leads to a sysfs warning as it tries to create an already
existing folder. This patch adds a incremented number to the name, but keeps
the initial name as nv_backlight, to avoid possibly breaking userspace; the
second interface will be named nv_backlight1, and so on.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86539
v2:
* Switch to using ida for generating unique IDs, as suggested by Ilia Mirkin;
* Allocate backlight name on the stack, as suggested by Ilia Mirkin;
* Move `nouveau_get_backlight_name()` to avoid forward declaration, as
suggested by Ilia Mirkin;
* Fix reference to bug report formatting, as reported by Nick Tenney.
v3:
* Define a macro for the size of the backlight name, to avoid defining
it multiple times;
* Use snprintf in place of sprintf.
v4:
* Do not create similarly named interfaces when reaching the maximum
amount of unique names, but fail instead, as pointed out by Lukas Wunner
Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2016-12-08 07:57:08 +08:00
|
|
|
|
2018-09-07 05:43:23 +08:00
|
|
|
if (!bl)
|
|
|
|
return;
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2018-09-07 05:43:23 +08:00
|
|
|
if (bl->id >= 0)
|
|
|
|
ida_simple_remove(&bl_ida, bl->id);
|
|
|
|
|
|
|
|
backlight_device_unregister(bl->dev);
|
|
|
|
nv_conn->backlight = NULL;
|
|
|
|
kfree(bl);
|
2009-12-11 17:24:15 +08:00
|
|
|
}
|
drm/nouveau/bl: Assign different names to interfaces
Currently, every backlight interface created by Nouveau uses the same name,
nv_backlight. This leads to a sysfs warning as it tries to create an already
existing folder. This patch adds a incremented number to the name, but keeps
the initial name as nv_backlight, to avoid possibly breaking userspace; the
second interface will be named nv_backlight1, and so on.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86539
v2:
* Switch to using ida for generating unique IDs, as suggested by Ilia Mirkin;
* Allocate backlight name on the stack, as suggested by Ilia Mirkin;
* Move `nouveau_get_backlight_name()` to avoid forward declaration, as
suggested by Ilia Mirkin;
* Fix reference to bug report formatting, as reported by Nick Tenney.
v3:
* Define a macro for the size of the backlight name, to avoid defining
it multiple times;
* Use snprintf in place of sprintf.
v4:
* Do not create similarly named interfaces when reaching the maximum
amount of unique names, but fail instead, as pointed out by Lukas Wunner
Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2016-12-08 07:57:08 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
nouveau_backlight_ctor(void)
|
|
|
|
{
|
|
|
|
ida_init(&bl_ida);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nouveau_backlight_dtor(void)
|
|
|
|
{
|
|
|
|
ida_destroy(&bl_ida);
|
|
|
|
}
|