drm/i915/opregion: don't pretend we did something when we didn't
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_opregion.c
CommitLineData
8ee1c3db
MG
1/*
2 * Copyright 2008 Intel Corporation <hong.liu@intel.com>
3 * Copyright 2008 Red Hat <mjg@redhat.com>
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 * NON-INFRINGEMENT. IN NO EVENT SHALL INTEL AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
22 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 *
26 */
27
a70491cc
JP
28#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
29
8ee1c3db 30#include <linux/acpi.h>
b705120e 31#include <linux/acpi_io.h>
74a365b3 32#include <acpi/video.h>
8ee1c3db 33
760285e7
DH
34#include <drm/drmP.h>
35#include <drm/i915_drm.h>
8ee1c3db 36#include "i915_drv.h"
a9573556 37#include "intel_drv.h"
8ee1c3db
MG
38
39#define PCI_ASLE 0xe4
8ee1c3db
MG
40#define PCI_ASLS 0xfc
41
8ee1c3db
MG
42#define OPREGION_HEADER_OFFSET 0
43#define OPREGION_ACPI_OFFSET 0x100
82d3c90c
CW
44#define ACPI_CLID 0x01ac /* current lid state indicator */
45#define ACPI_CDCK 0x01b0 /* current docking state indicator */
8ee1c3db
MG
46#define OPREGION_SWSCI_OFFSET 0x200
47#define OPREGION_ASLE_OFFSET 0x300
44834a67 48#define OPREGION_VBT_OFFSET 0x400
8ee1c3db
MG
49
50#define OPREGION_SIGNATURE "IntelGraphicsMem"
51#define MBOX_ACPI (1<<0)
52#define MBOX_SWSCI (1<<1)
53#define MBOX_ASLE (1<<2)
54
55struct opregion_header {
0206e353
AJ
56 u8 signature[16];
57 u32 size;
58 u32 opregion_ver;
59 u8 bios_ver[32];
60 u8 vbios_ver[16];
61 u8 driver_ver[16];
62 u32 mboxes;
63 u8 reserved[164];
8ee1c3db
MG
64} __attribute__((packed));
65
66/* OpRegion mailbox #1: public ACPI methods */
67struct opregion_acpi {
0206e353
AJ
68 u32 drdy; /* driver readiness */
69 u32 csts; /* notification status */
70 u32 cevt; /* current event */
71 u8 rsvd1[20];
72 u32 didl[8]; /* supported display devices ID list */
73 u32 cpdl[8]; /* currently presented display list */
74 u32 cadl[8]; /* currently active display list */
75 u32 nadl[8]; /* next active devices list */
76 u32 aslp; /* ASL sleep time-out */
77 u32 tidx; /* toggle table index */
78 u32 chpd; /* current hotplug enable indicator */
79 u32 clid; /* current lid state*/
80 u32 cdck; /* current docking state */
81 u32 sxsw; /* Sx state resume */
82 u32 evts; /* ASL supported events */
83 u32 cnot; /* current OS notification */
84 u32 nrdy; /* driver status */
85 u8 rsvd2[60];
8ee1c3db
MG
86} __attribute__((packed));
87
88/* OpRegion mailbox #2: SWSCI */
89struct opregion_swsci {
0206e353
AJ
90 u32 scic; /* SWSCI command|status|data */
91 u32 parm; /* command parameters */
92 u32 dslp; /* driver sleep time-out */
93 u8 rsvd[244];
8ee1c3db
MG
94} __attribute__((packed));
95
96/* OpRegion mailbox #3: ASLE */
97struct opregion_asle {
0206e353
AJ
98 u32 ardy; /* driver readiness */
99 u32 aslc; /* ASLE interrupt command */
100 u32 tche; /* technology enabled indicator */
101 u32 alsi; /* current ALS illuminance reading */
102 u32 bclp; /* backlight brightness to set */
103 u32 pfit; /* panel fitting state */
104 u32 cblv; /* current brightness level */
105 u16 bclm[20]; /* backlight level duty cycle mapping table */
106 u32 cpfm; /* current panel fitting mode */
107 u32 epfm; /* enabled panel fitting modes */
108 u8 plut[74]; /* panel LUT and identifier */
109 u32 pfmb; /* PWM freq and min brightness */
110 u8 rsvd[102];
8ee1c3db
MG
111} __attribute__((packed));
112
113/* ASLE irq request bits */
114#define ASLE_SET_ALS_ILLUM (1 << 0)
115#define ASLE_SET_BACKLIGHT (1 << 1)
116#define ASLE_SET_PFIT (1 << 2)
117#define ASLE_SET_PWM_FREQ (1 << 3)
118#define ASLE_REQ_MSK 0xf
119
120/* response bits of ASLE irq request */
01c66889
ZY
121#define ASLE_ALS_ILLUM_FAILED (1<<10)
122#define ASLE_BACKLIGHT_FAILED (1<<12)
123#define ASLE_PFIT_FAILED (1<<14)
124#define ASLE_PWM_FREQ_FAILED (1<<16)
8ee1c3db
MG
125
126/* ASLE backlight brightness to set */
127#define ASLE_BCLP_VALID (1<<31)
128#define ASLE_BCLP_MSK (~(1<<31))
129
130/* ASLE panel fitting request */
131#define ASLE_PFIT_VALID (1<<31)
132#define ASLE_PFIT_CENTER (1<<0)
133#define ASLE_PFIT_STRETCH_TEXT (1<<1)
134#define ASLE_PFIT_STRETCH_GFX (1<<2)
135
136/* PWM frequency and minimum brightness */
137#define ASLE_PFMB_BRIGHTNESS_MASK (0xff)
138#define ASLE_PFMB_BRIGHTNESS_VALID (1<<8)
139#define ASLE_PFMB_PWM_MASK (0x7ffffe00)
140#define ASLE_PFMB_PWM_VALID (1<<31)
141
142#define ASLE_CBLV_VALID (1<<31)
143
74a365b3
MG
144#define ACPI_OTHER_OUTPUT (0<<8)
145#define ACPI_VGA_OUTPUT (1<<8)
146#define ACPI_TV_OUTPUT (2<<8)
147#define ACPI_DIGITAL_OUTPUT (3<<8)
148#define ACPI_LVDS_OUTPUT (4<<8)
149
44834a67 150#ifdef CONFIG_ACPI
8ee1c3db
MG
151static u32 asle_set_backlight(struct drm_device *dev, u32 bclp)
152{
153 struct drm_i915_private *dev_priv = dev->dev_private;
5bc4418b 154 struct opregion_asle __iomem *asle = dev_priv->opregion.asle;
8ee1c3db 155
749052fb
JN
156 DRM_DEBUG_DRIVER("bclp = 0x%08x\n", bclp);
157
8ee1c3db 158 if (!(bclp & ASLE_BCLP_VALID))
862daefc 159 return ASLE_BACKLIGHT_FAILED;
8ee1c3db
MG
160
161 bclp &= ASLE_BCLP_MSK;
a9573556 162 if (bclp > 255)
862daefc 163 return ASLE_BACKLIGHT_FAILED;
8ee1c3db 164
d6540632 165 intel_panel_set_backlight(dev, bclp, 255);
5bc4418b 166 iowrite32((bclp*0x64)/0xff | ASLE_CBLV_VALID, &asle->cblv);
8ee1c3db
MG
167
168 return 0;
169}
170
171static u32 asle_set_als_illum(struct drm_device *dev, u32 alsi)
172{
173 /* alsi is the current ALS reading in lux. 0 indicates below sensor
174 range, 0xffff indicates above sensor range. 1-0xfffe are valid */
e93d440b
JN
175 DRM_DEBUG_DRIVER("Illum is not supported\n");
176 return ASLE_ALS_ILLUM_FAILED;
8ee1c3db
MG
177}
178
179static u32 asle_set_pwm_freq(struct drm_device *dev, u32 pfmb)
180{
e93d440b
JN
181 DRM_DEBUG_DRIVER("PWM freq is not supported\n");
182 return ASLE_PWM_FREQ_FAILED;
8ee1c3db
MG
183}
184
185static u32 asle_set_pfit(struct drm_device *dev, u32 pfit)
186{
187 /* Panel fitting is currently controlled by the X code, so this is a
188 noop until modesetting support works fully */
e93d440b
JN
189 DRM_DEBUG_DRIVER("Pfit is not supported\n");
190 return ASLE_PFIT_FAILED;
8ee1c3db
MG
191}
192
3b617967 193void intel_opregion_asle_intr(struct drm_device *dev)
8ee1c3db
MG
194{
195 struct drm_i915_private *dev_priv = dev->dev_private;
5bc4418b 196 struct opregion_asle __iomem *asle = dev_priv->opregion.asle;
8ee1c3db
MG
197 u32 asle_stat = 0;
198 u32 asle_req;
199
200 if (!asle)
201 return;
202
5bc4418b 203 asle_req = ioread32(&asle->aslc) & ASLE_REQ_MSK;
8ee1c3db
MG
204
205 if (!asle_req) {
44d98a61 206 DRM_DEBUG_DRIVER("non asle set request??\n");
8ee1c3db
MG
207 return;
208 }
209
210 if (asle_req & ASLE_SET_ALS_ILLUM)
5bc4418b 211 asle_stat |= asle_set_als_illum(dev, ioread32(&asle->alsi));
8ee1c3db
MG
212
213 if (asle_req & ASLE_SET_BACKLIGHT)
5bc4418b 214 asle_stat |= asle_set_backlight(dev, ioread32(&asle->bclp));
8ee1c3db
MG
215
216 if (asle_req & ASLE_SET_PFIT)
5bc4418b 217 asle_stat |= asle_set_pfit(dev, ioread32(&asle->pfit));
8ee1c3db
MG
218
219 if (asle_req & ASLE_SET_PWM_FREQ)
5bc4418b 220 asle_stat |= asle_set_pwm_freq(dev, ioread32(&asle->pfmb));
8ee1c3db 221
5bc4418b 222 iowrite32(asle_stat, &asle->aslc);
8ee1c3db
MG
223}
224
3b617967 225void intel_opregion_gse_intr(struct drm_device *dev)
01c66889
ZY
226{
227 struct drm_i915_private *dev_priv = dev->dev_private;
5bc4418b 228 struct opregion_asle __iomem *asle = dev_priv->opregion.asle;
01c66889
ZY
229 u32 asle_stat = 0;
230 u32 asle_req;
231
232 if (!asle)
233 return;
234
5bc4418b 235 asle_req = ioread32(&asle->aslc) & ASLE_REQ_MSK;
01c66889
ZY
236
237 if (!asle_req) {
238 DRM_DEBUG_DRIVER("non asle set request??\n");
239 return;
240 }
241
242 if (asle_req & ASLE_SET_ALS_ILLUM) {
243 DRM_DEBUG_DRIVER("Illum is not supported\n");
244 asle_stat |= ASLE_ALS_ILLUM_FAILED;
245 }
246
247 if (asle_req & ASLE_SET_BACKLIGHT)
5bc4418b 248 asle_stat |= asle_set_backlight(dev, ioread32(&asle->bclp));
01c66889
ZY
249
250 if (asle_req & ASLE_SET_PFIT) {
251 DRM_DEBUG_DRIVER("Pfit is not supported\n");
252 asle_stat |= ASLE_PFIT_FAILED;
253 }
254
255 if (asle_req & ASLE_SET_PWM_FREQ) {
256 DRM_DEBUG_DRIVER("PWM freq is not supported\n");
257 asle_stat |= ASLE_PWM_FREQ_FAILED;
258 }
259
5bc4418b 260 iowrite32(asle_stat, &asle->aslc);
01c66889 261}
8ee1c3db
MG
262#define ASLE_ALS_EN (1<<0)
263#define ASLE_BLC_EN (1<<1)
264#define ASLE_PFIT_EN (1<<2)
265#define ASLE_PFMB_EN (1<<3)
266
3b617967 267void intel_opregion_enable_asle(struct drm_device *dev)
8ee1c3db
MG
268{
269 struct drm_i915_private *dev_priv = dev->dev_private;
5bc4418b 270 struct opregion_asle __iomem *asle = dev_priv->opregion.asle;
8ee1c3db
MG
271
272 if (asle) {
1ec14ad3 273 if (IS_MOBILE(dev))
01c66889 274 intel_enable_asle(dev);
8ee1c3db 275
1767afa4 276 iowrite32(ASLE_BLC_EN, &asle->tche);
5bc4418b 277 iowrite32(1, &asle->ardy);
8ee1c3db
MG
278 }
279}
280
281#define ACPI_EV_DISPLAY_SWITCH (1<<0)
282#define ACPI_EV_LID (1<<1)
283#define ACPI_EV_DOCK (1<<2)
284
285static struct intel_opregion *system_opregion;
286
b358d0a6
HE
287static int intel_opregion_video_event(struct notifier_block *nb,
288 unsigned long val, void *data)
8ee1c3db
MG
289{
290 /* The only video events relevant to opregion are 0x80. These indicate
291 either a docking event, lid switch or display switch request. In
292 Linux, these are handled by the dock, button and video drivers.
f5a3d0c4 293 */
8ee1c3db 294
5bc4418b 295 struct opregion_acpi __iomem *acpi;
f5a3d0c4
MG
296 struct acpi_bus_event *event = data;
297 int ret = NOTIFY_OK;
298
299 if (strcmp(event->device_class, ACPI_VIDEO_CLASS) != 0)
300 return NOTIFY_DONE;
8ee1c3db
MG
301
302 if (!system_opregion)
303 return NOTIFY_DONE;
304
305 acpi = system_opregion->acpi;
f5a3d0c4 306
5bc4418b
BW
307 if (event->type == 0x80 &&
308 (ioread32(&acpi->cevt) & 1) == 0)
f5a3d0c4
MG
309 ret = NOTIFY_BAD;
310
5bc4418b 311 iowrite32(0, &acpi->csts);
8ee1c3db 312
f5a3d0c4 313 return ret;
8ee1c3db
MG
314}
315
316static struct notifier_block intel_opregion_notifier = {
317 .notifier_call = intel_opregion_video_event,
318};
319
74a365b3
MG
320/*
321 * Initialise the DIDL field in opregion. This passes a list of devices to
322 * the firmware. Values are defined by section B.4.2 of the ACPI specification
323 * (version 3)
324 */
325
326static void intel_didl_outputs(struct drm_device *dev)
327{
328 struct drm_i915_private *dev_priv = dev->dev_private;
329 struct intel_opregion *opregion = &dev_priv->opregion;
330 struct drm_connector *connector;
3143751f
ZR
331 acpi_handle handle;
332 struct acpi_device *acpi_dev, *acpi_cdev, *acpi_video_bus = NULL;
333 unsigned long long device_id;
334 acpi_status status;
5bc4418b 335 u32 temp;
74a365b3
MG
336 int i = 0;
337
3143751f 338 handle = DEVICE_ACPI_HANDLE(&dev->pdev->dev);
7d37beaa 339 if (!handle || acpi_bus_get_device(handle, &acpi_dev))
3143751f
ZR
340 return;
341
342 if (acpi_is_video_device(acpi_dev))
343 acpi_video_bus = acpi_dev;
344 else {
345 list_for_each_entry(acpi_cdev, &acpi_dev->children, node) {
346 if (acpi_is_video_device(acpi_cdev)) {
347 acpi_video_bus = acpi_cdev;
348 break;
349 }
350 }
351 }
352
353 if (!acpi_video_bus) {
a70491cc 354 pr_warn("No ACPI video bus found\n");
3143751f
ZR
355 return;
356 }
357
358 list_for_each_entry(acpi_cdev, &acpi_video_bus->children, node) {
359 if (i >= 8) {
0206e353 360 dev_printk(KERN_ERR, &dev->pdev->dev,
3143751f
ZR
361 "More than 8 outputs detected\n");
362 return;
363 }
364 status =
365 acpi_evaluate_integer(acpi_cdev->handle, "_ADR",
366 NULL, &device_id);
367 if (ACPI_SUCCESS(status)) {
368 if (!device_id)
369 goto blind_set;
5bc4418b
BW
370 iowrite32((u32)(device_id & 0x0f0f),
371 &opregion->acpi->didl[i]);
3143751f
ZR
372 i++;
373 }
374 }
375
376end:
377 /* If fewer than 8 outputs, the list must be null terminated */
378 if (i < 8)
5bc4418b 379 iowrite32(0, &opregion->acpi->didl[i]);
3143751f
ZR
380 return;
381
382blind_set:
383 i = 0;
74a365b3
MG
384 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
385 int output_type = ACPI_OTHER_OUTPUT;
386 if (i >= 8) {
0206e353 387 dev_printk(KERN_ERR, &dev->pdev->dev,
74a365b3
MG
388 "More than 8 outputs detected\n");
389 return;
390 }
391 switch (connector->connector_type) {
392 case DRM_MODE_CONNECTOR_VGA:
393 case DRM_MODE_CONNECTOR_DVIA:
394 output_type = ACPI_VGA_OUTPUT;
395 break;
396 case DRM_MODE_CONNECTOR_Composite:
397 case DRM_MODE_CONNECTOR_SVIDEO:
398 case DRM_MODE_CONNECTOR_Component:
399 case DRM_MODE_CONNECTOR_9PinDIN:
400 output_type = ACPI_TV_OUTPUT;
401 break;
402 case DRM_MODE_CONNECTOR_DVII:
403 case DRM_MODE_CONNECTOR_DVID:
404 case DRM_MODE_CONNECTOR_DisplayPort:
405 case DRM_MODE_CONNECTOR_HDMIA:
406 case DRM_MODE_CONNECTOR_HDMIB:
407 output_type = ACPI_DIGITAL_OUTPUT;
408 break;
409 case DRM_MODE_CONNECTOR_LVDS:
410 output_type = ACPI_LVDS_OUTPUT;
411 break;
412 }
5bc4418b
BW
413 temp = ioread32(&opregion->acpi->didl[i]);
414 iowrite32(temp | (1<<31) | output_type | i,
415 &opregion->acpi->didl[i]);
74a365b3
MG
416 i++;
417 }
3143751f 418 goto end;
74a365b3
MG
419}
420
d627b62f
L
421static void intel_setup_cadls(struct drm_device *dev)
422{
423 struct drm_i915_private *dev_priv = dev->dev_private;
424 struct intel_opregion *opregion = &dev_priv->opregion;
425 int i = 0;
426 u32 disp_id;
427
428 /* Initialize the CADL field by duplicating the DIDL values.
429 * Technically, this is not always correct as display outputs may exist,
430 * but not active. This initialization is necessary for some Clevo
431 * laptops that check this field before processing the brightness and
432 * display switching hotkeys. Just like DIDL, CADL is NULL-terminated if
433 * there are less than eight devices. */
434 do {
435 disp_id = ioread32(&opregion->acpi->didl[i]);
436 iowrite32(disp_id, &opregion->acpi->cadl[i]);
437 } while (++i < 8 && disp_id != 0);
438}
439
44834a67
CW
440void intel_opregion_init(struct drm_device *dev)
441{
442 struct drm_i915_private *dev_priv = dev->dev_private;
443 struct intel_opregion *opregion = &dev_priv->opregion;
444
445 if (!opregion->header)
446 return;
447
448 if (opregion->acpi) {
d627b62f 449 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
44834a67 450 intel_didl_outputs(dev);
d627b62f
L
451 intel_setup_cadls(dev);
452 }
44834a67
CW
453
454 /* Notify BIOS we are ready to handle ACPI video ext notifs.
455 * Right now, all the events are handled by the ACPI video module.
456 * We don't actually need to do anything with them. */
5bc4418b
BW
457 iowrite32(0, &opregion->acpi->csts);
458 iowrite32(1, &opregion->acpi->drdy);
44834a67
CW
459
460 system_opregion = opregion;
461 register_acpi_notifier(&intel_opregion_notifier);
462 }
463
464 if (opregion->asle)
465 intel_opregion_enable_asle(dev);
466}
467
468void intel_opregion_fini(struct drm_device *dev)
469{
470 struct drm_i915_private *dev_priv = dev->dev_private;
471 struct intel_opregion *opregion = &dev_priv->opregion;
472
473 if (!opregion->header)
474 return;
475
476 if (opregion->acpi) {
5bc4418b 477 iowrite32(0, &opregion->acpi->drdy);
44834a67
CW
478
479 system_opregion = NULL;
480 unregister_acpi_notifier(&intel_opregion_notifier);
481 }
482
483 /* just clear all opregion memory pointers now */
484 iounmap(opregion->header);
485 opregion->header = NULL;
486 opregion->acpi = NULL;
487 opregion->swsci = NULL;
488 opregion->asle = NULL;
489 opregion->vbt = NULL;
490}
491#endif
492
493int intel_opregion_setup(struct drm_device *dev)
8ee1c3db
MG
494{
495 struct drm_i915_private *dev_priv = dev->dev_private;
496 struct intel_opregion *opregion = &dev_priv->opregion;
5bc4418b 497 void __iomem *base;
8ee1c3db 498 u32 asls, mboxes;
5bc4418b 499 char buf[sizeof(OPREGION_SIGNATURE)];
8ee1c3db
MG
500 int err = 0;
501
502 pci_read_config_dword(dev->pdev, PCI_ASLS, &asls);
44d98a61 503 DRM_DEBUG_DRIVER("graphic opregion physical addr: 0x%x\n", asls);
8ee1c3db 504 if (asls == 0) {
44d98a61 505 DRM_DEBUG_DRIVER("ACPI OpRegion not supported!\n");
8ee1c3db
MG
506 return -ENOTSUPP;
507 }
508
b705120e 509 base = acpi_os_ioremap(asls, OPREGION_SIZE);
8ee1c3db
MG
510 if (!base)
511 return -ENOMEM;
512
5bc4418b
BW
513 memcpy_fromio(buf, base, sizeof(buf));
514
515 if (memcmp(buf, OPREGION_SIGNATURE, 16)) {
44d98a61 516 DRM_DEBUG_DRIVER("opregion signature mismatch\n");
8ee1c3db
MG
517 err = -EINVAL;
518 goto err_out;
519 }
44834a67
CW
520 opregion->header = base;
521 opregion->vbt = base + OPREGION_VBT_OFFSET;
8ee1c3db 522
82d3c90c 523 opregion->lid_state = base + ACPI_CLID;
01fe9dbd 524
5bc4418b 525 mboxes = ioread32(&opregion->header->mboxes);
8ee1c3db 526 if (mboxes & MBOX_ACPI) {
44d98a61 527 DRM_DEBUG_DRIVER("Public ACPI methods supported\n");
8ee1c3db 528 opregion->acpi = base + OPREGION_ACPI_OFFSET;
8ee1c3db 529 }
8ee1c3db
MG
530
531 if (mboxes & MBOX_SWSCI) {
44d98a61 532 DRM_DEBUG_DRIVER("SWSCI supported\n");
8ee1c3db
MG
533 opregion->swsci = base + OPREGION_SWSCI_OFFSET;
534 }
535 if (mboxes & MBOX_ASLE) {
44d98a61 536 DRM_DEBUG_DRIVER("ASLE supported\n");
8ee1c3db
MG
537 opregion->asle = base + OPREGION_ASLE_OFFSET;
538 }
539
8ee1c3db
MG
540 return 0;
541
542err_out:
30c56660 543 iounmap(base);
8ee1c3db
MG
544 return err;
545}
This page took 0.383631 seconds and 5 git commands to generate.