xref: /linux/drivers/gpu/drm/nouveau/nouveau_backlight.c (revision e9ef810dfee7a2227da9d423aecb0ced35faddbe)
1 /*
2  * Copyright (C) 2009 Red Hat <mjg@redhat.com>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial
14  * portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19  * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
20  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  *
24  */
25 
26 /*
27  * Authors:
28  *  Matthew Garrett <mjg@redhat.com>
29  *
30  * Register locations derived from NVClock by Roderick Colenbrander
31  */
32 
33 #include <linux/apple-gmux.h>
34 #include <linux/backlight.h>
35 #include <linux/idr.h>
36 #include <drm/drm_probe_helper.h>
37 
38 #include "nouveau_drv.h"
39 #include "nouveau_reg.h"
40 #include "nouveau_encoder.h"
41 #include "nouveau_connector.h"
42 #include "nouveau_acpi.h"
43 
44 static struct ida bl_ida;
45 #define BL_NAME_SIZE 24 // 12 for name + 11 for digits + 1 for '\0'
46 
47 static bool
nouveau_get_backlight_name(char backlight_name[BL_NAME_SIZE],struct nouveau_backlight * bl)48 nouveau_get_backlight_name(char backlight_name[BL_NAME_SIZE],
49 			   struct nouveau_backlight *bl)
50 {
51 	const int nb = ida_alloc_max(&bl_ida, 99, GFP_KERNEL);
52 
53 	if (nb < 0)
54 		return false;
55 	if (nb > 0)
56 		snprintf(backlight_name, BL_NAME_SIZE, "nv_backlight%d", nb);
57 	else
58 		snprintf(backlight_name, BL_NAME_SIZE, "nv_backlight");
59 	bl->id = nb;
60 	return true;
61 }
62 
63 static int
nv40_get_intensity(struct backlight_device * bd)64 nv40_get_intensity(struct backlight_device *bd)
65 {
66 	struct nouveau_encoder *nv_encoder = bl_get_data(bd);
67 	struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
68 	struct nvif_object *device = &drm->client.device.object;
69 	int val = (nvif_rd32(device, NV40_PMC_BACKLIGHT) &
70 		   NV40_PMC_BACKLIGHT_MASK) >> 16;
71 
72 	return val;
73 }
74 
75 static int
nv40_set_intensity(struct backlight_device * bd)76 nv40_set_intensity(struct backlight_device *bd)
77 {
78 	struct nouveau_encoder *nv_encoder = bl_get_data(bd);
79 	struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
80 	struct nvif_object *device = &drm->client.device.object;
81 	int val = bd->props.brightness;
82 	int reg = nvif_rd32(device, NV40_PMC_BACKLIGHT);
83 
84 	nvif_wr32(device, NV40_PMC_BACKLIGHT,
85 		  (val << 16) | (reg & ~NV40_PMC_BACKLIGHT_MASK));
86 
87 	return 0;
88 }
89 
90 static const struct backlight_ops nv40_bl_ops = {
91 	.options = BL_CORE_SUSPENDRESUME,
92 	.get_brightness = nv40_get_intensity,
93 	.update_status = nv40_set_intensity,
94 };
95 
96 static int
nv40_backlight_init(struct nouveau_encoder * encoder,struct backlight_properties * props,const struct backlight_ops ** ops)97 nv40_backlight_init(struct nouveau_encoder *encoder,
98 		    struct backlight_properties *props,
99 		    const struct backlight_ops **ops)
100 {
101 	struct nouveau_drm *drm = nouveau_drm(encoder->base.base.dev);
102 	struct nvif_object *device = &drm->client.device.object;
103 
104 	if (!(nvif_rd32(device, NV40_PMC_BACKLIGHT) & NV40_PMC_BACKLIGHT_MASK))
105 		return -ENODEV;
106 
107 	props->max_brightness = 31;
108 	*ops = &nv40_bl_ops;
109 	return 0;
110 }
111 
112 /*
113  * eDP brightness callbacks need to happen under lock, since we need to
114  * enable/disable the backlight ourselves for modesets
115  */
116 static int
nv50_edp_get_brightness(struct backlight_device * bd)117 nv50_edp_get_brightness(struct backlight_device *bd)
118 {
119 	struct drm_connector *connector = dev_get_drvdata(bd->dev.parent);
120 	struct drm_device *dev = connector->dev;
121 	struct drm_crtc *crtc;
122 	struct drm_modeset_acquire_ctx ctx;
123 	int ret = 0;
124 
125 	drm_modeset_acquire_init(&ctx, 0);
126 
127 retry:
128 	ret = drm_modeset_lock(&dev->mode_config.connection_mutex, &ctx);
129 	if (ret == -EDEADLK)
130 		goto deadlock;
131 	else if (ret < 0)
132 		goto out;
133 
134 	crtc = connector->state->crtc;
135 	if (!crtc)
136 		goto out;
137 
138 	ret = drm_modeset_lock(&crtc->mutex, &ctx);
139 	if (ret == -EDEADLK)
140 		goto deadlock;
141 	else if (ret < 0)
142 		goto out;
143 
144 	if (!crtc->state->active)
145 		goto out;
146 
147 	ret = bd->props.brightness;
148 out:
149 	drm_modeset_drop_locks(&ctx);
150 	drm_modeset_acquire_fini(&ctx);
151 	return ret;
152 deadlock:
153 	drm_modeset_backoff(&ctx);
154 	goto retry;
155 }
156 
157 static int
nv50_edp_set_brightness(struct backlight_device * bd)158 nv50_edp_set_brightness(struct backlight_device *bd)
159 {
160 	struct drm_connector *connector = dev_get_drvdata(bd->dev.parent);
161 	struct nouveau_connector *nv_connector = nouveau_connector(connector);
162 	struct drm_device *dev = connector->dev;
163 	struct drm_crtc *crtc;
164 	struct drm_dp_aux *aux = &nv_connector->aux;
165 	struct nouveau_backlight *nv_bl = nv_connector->backlight;
166 	struct drm_modeset_acquire_ctx ctx;
167 	int ret = 0;
168 
169 	drm_modeset_acquire_init(&ctx, 0);
170 retry:
171 	ret = drm_modeset_lock(&dev->mode_config.connection_mutex, &ctx);
172 	if (ret == -EDEADLK)
173 		goto deadlock;
174 	else if (ret < 0)
175 		goto out;
176 
177 	crtc = connector->state->crtc;
178 	if (!crtc)
179 		goto out;
180 
181 	ret = drm_modeset_lock(&crtc->mutex, &ctx);
182 	if (ret == -EDEADLK)
183 		goto deadlock;
184 	else if (ret < 0)
185 		goto out;
186 
187 	if (crtc->state->active)
188 		ret = drm_edp_backlight_set_level(aux, &nv_bl->edp_info, bd->props.brightness);
189 
190 out:
191 	drm_modeset_drop_locks(&ctx);
192 	drm_modeset_acquire_fini(&ctx);
193 	return ret;
194 deadlock:
195 	drm_modeset_backoff(&ctx);
196 	goto retry;
197 }
198 
199 static const struct backlight_ops nv50_edp_bl_ops = {
200 	.get_brightness = nv50_edp_get_brightness,
201 	.update_status = nv50_edp_set_brightness,
202 };
203 
204 static int
nv50_get_intensity(struct backlight_device * bd)205 nv50_get_intensity(struct backlight_device *bd)
206 {
207 	struct nouveau_encoder *nv_encoder = bl_get_data(bd);
208 
209 	return nvif_outp_bl_get(&nv_encoder->outp);
210 }
211 
212 static int
nv50_set_intensity(struct backlight_device * bd)213 nv50_set_intensity(struct backlight_device *bd)
214 {
215 	struct nouveau_encoder *nv_encoder = bl_get_data(bd);
216 
217 	return nvif_outp_bl_set(&nv_encoder->outp, backlight_get_brightness(bd));
218 }
219 
220 static const struct backlight_ops nv50_bl_ops = {
221 	.options = BL_CORE_SUSPENDRESUME,
222 	.get_brightness = nv50_get_intensity,
223 	.update_status = nv50_set_intensity,
224 };
225 
226 /* FIXME: perform backlight probing for eDP _before_ this, this only gets called after connector
227  * registration which happens after the initial modeset
228  */
229 static int
nv50_backlight_init(struct nouveau_backlight * bl,struct nouveau_connector * nv_conn,struct nouveau_encoder * nv_encoder,struct backlight_properties * props,const struct backlight_ops ** ops)230 nv50_backlight_init(struct nouveau_backlight *bl,
231 		    struct nouveau_connector *nv_conn,
232 		    struct nouveau_encoder *nv_encoder,
233 		    struct backlight_properties *props,
234 		    const struct backlight_ops **ops)
235 {
236 	struct nouveau_drm *drm = nouveau_drm(nv_encoder->base.base.dev);
237 
238 	/*
239 	 * Note when this runs the connectors have not been probed yet,
240 	 * so nv_conn->base.status is not set yet.
241 	 */
242 	if (nvif_outp_bl_get(&nv_encoder->outp) < 0 ||
243 	    drm_helper_probe_detect(&nv_conn->base, NULL, false) != connector_status_connected)
244 		return -ENODEV;
245 
246 	if (nv_conn->type == DCB_CONNECTOR_eDP) {
247 		int ret;
248 		u32 current_level;
249 		u8 edp_dpcd[EDP_DISPLAY_CTL_CAP_SIZE];
250 		u8 current_mode;
251 
252 		ret = drm_dp_dpcd_read(&nv_conn->aux, DP_EDP_DPCD_REV, edp_dpcd,
253 				       EDP_DISPLAY_CTL_CAP_SIZE);
254 		if (ret < 0)
255 			return ret;
256 
257 		/* TODO: Add support for hybrid PWM/DPCD panels */
258 		if (drm_edp_backlight_supported(edp_dpcd) &&
259 		    (edp_dpcd[1] & DP_EDP_BACKLIGHT_AUX_ENABLE_CAP) &&
260 		    (edp_dpcd[2] & DP_EDP_BACKLIGHT_BRIGHTNESS_AUX_SET_CAP)) {
261 			NV_DEBUG(drm, "DPCD backlight controls supported on %s\n",
262 				 nv_conn->base.name);
263 
264 			ret = drm_edp_backlight_init(&nv_conn->aux, &bl->edp_info,
265 						     0, 0, edp_dpcd,
266 						     &current_level, &current_mode, false);
267 			if (ret < 0)
268 				return ret;
269 
270 			ret = drm_edp_backlight_enable(&nv_conn->aux, &bl->edp_info, current_level);
271 			if (ret < 0) {
272 				NV_ERROR(drm, "Failed to enable backlight on %s: %d\n",
273 					 nv_conn->base.name, ret);
274 				return ret;
275 			}
276 
277 			*ops = &nv50_edp_bl_ops;
278 			props->brightness = current_level;
279 			props->max_brightness = bl->edp_info.max;
280 			bl->uses_dpcd = true;
281 			return 0;
282 		}
283 	}
284 
285 	*ops = &nv50_bl_ops;
286 	props->max_brightness = 100;
287 	return 0;
288 }
289 
290 int
nouveau_backlight_init(struct drm_connector * connector)291 nouveau_backlight_init(struct drm_connector *connector)
292 {
293 	struct nouveau_drm *drm = nouveau_drm(connector->dev);
294 	struct nouveau_backlight *bl;
295 	struct nouveau_encoder *nv_encoder = NULL;
296 	struct nvif_device *device = &drm->client.device;
297 	char backlight_name[BL_NAME_SIZE];
298 	struct backlight_properties props = {0};
299 	const struct backlight_ops *ops;
300 	int ret;
301 
302 	if (apple_gmux_present()) {
303 		NV_INFO_ONCE(drm, "Apple GMUX detected: not registering Nouveau backlight interface\n");
304 		return 0;
305 	}
306 
307 	if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS)
308 		nv_encoder = find_encoder(connector, DCB_OUTPUT_LVDS);
309 	else if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
310 		nv_encoder = find_encoder(connector, DCB_OUTPUT_DP);
311 	else
312 		return 0;
313 
314 	if (!nv_encoder)
315 		return 0;
316 
317 	bl = kzalloc(sizeof(*bl), GFP_KERNEL);
318 	if (!bl)
319 		return -ENOMEM;
320 
321 	switch (device->info.family) {
322 	case NV_DEVICE_INFO_V0_CURIE:
323 		ret = nv40_backlight_init(nv_encoder, &props, &ops);
324 		break;
325 	case NV_DEVICE_INFO_V0_TESLA:
326 	case NV_DEVICE_INFO_V0_FERMI:
327 	case NV_DEVICE_INFO_V0_KEPLER:
328 	case NV_DEVICE_INFO_V0_MAXWELL:
329 	case NV_DEVICE_INFO_V0_PASCAL:
330 	case NV_DEVICE_INFO_V0_VOLTA:
331 	case NV_DEVICE_INFO_V0_TURING:
332 	case NV_DEVICE_INFO_V0_AMPERE: //XXX: not confirmed
333 		ret = nv50_backlight_init(bl, nouveau_connector(connector),
334 					  nv_encoder, &props, &ops);
335 		break;
336 	default:
337 		ret = 0;
338 		goto fail_alloc;
339 	}
340 
341 	if (ret) {
342 		if (ret == -ENODEV)
343 			ret = 0;
344 		goto fail_alloc;
345 	}
346 
347 	if (!nouveau_acpi_video_backlight_use_native()) {
348 		NV_INFO(drm, "Skipping nv_backlight registration\n");
349 		goto fail_alloc;
350 	}
351 
352 	if (!nouveau_get_backlight_name(backlight_name, bl)) {
353 		NV_ERROR(drm, "Failed to retrieve a unique name for the backlight interface\n");
354 		goto fail_alloc;
355 	}
356 
357 	props.type = BACKLIGHT_RAW;
358 	bl->dev = backlight_device_register(backlight_name, connector->kdev,
359 					    nv_encoder, ops, &props);
360 	if (IS_ERR(bl->dev)) {
361 		if (bl->id >= 0)
362 			ida_free(&bl_ida, bl->id);
363 		ret = PTR_ERR(bl->dev);
364 		goto fail_alloc;
365 	}
366 
367 	nouveau_connector(connector)->backlight = bl;
368 	if (!bl->dev->props.brightness)
369 		bl->dev->props.brightness =
370 			bl->dev->ops->get_brightness(bl->dev);
371 	backlight_update_status(bl->dev);
372 
373 	return 0;
374 
375 fail_alloc:
376 	kfree(bl);
377 	/*
378 	 * If we get here we have an internal panel, but no nv_backlight,
379 	 * try registering an ACPI video backlight device instead.
380 	 */
381 	if (ret == 0)
382 		nouveau_acpi_video_register_backlight();
383 
384 	return ret;
385 }
386 
387 void
nouveau_backlight_fini(struct drm_connector * connector)388 nouveau_backlight_fini(struct drm_connector *connector)
389 {
390 	struct nouveau_connector *nv_conn = nouveau_connector(connector);
391 	struct nouveau_backlight *bl = nv_conn->backlight;
392 
393 	if (!bl)
394 		return;
395 
396 	if (bl->id >= 0)
397 		ida_free(&bl_ida, bl->id);
398 
399 	backlight_device_unregister(bl->dev);
400 	nv_conn->backlight = NULL;
401 	kfree(bl);
402 }
403 
404 void
nouveau_backlight_ctor(void)405 nouveau_backlight_ctor(void)
406 {
407 	ida_init(&bl_ida);
408 }
409 
410 void
nouveau_backlight_dtor(void)411 nouveau_backlight_dtor(void)
412 {
413 	ida_destroy(&bl_ida);
414 }
415