blob: 34929aeca66bedf55db296ca9e7c57d83a70ef6c [file] [log] [blame]
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +01001/*
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
Joe Perchesa70491c2012-03-18 13:00:11 -070028#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
29
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010030#include <linux/acpi.h>
Michael Karcherb7051202011-01-23 18:17:17 +000031#include <linux/acpi_io.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000032#include <acpi/video.h>
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010033
34#include "drmP.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
Chris Wilsona9573552010-08-22 13:18:16 +010037#include "intel_drv.h"
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010038
39#define PCI_ASLE 0xe4
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010040#define PCI_ASLS 0xfc
41
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010042#define OPREGION_HEADER_OFFSET 0
43#define OPREGION_ACPI_OFFSET 0x100
Chris Wilson82d3c902011-02-24 18:13:42 +000044#define ACPI_CLID 0x01ac /* current lid state indicator */
45#define ACPI_CDCK 0x01b0 /* current docking state indicator */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010046#define OPREGION_SWSCI_OFFSET 0x200
47#define OPREGION_ASLE_OFFSET 0x300
Chris Wilson44834a62010-08-19 16:09:23 +010048#define OPREGION_VBT_OFFSET 0x400
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010049
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 {
Akshay Joshi0206e352011-08-16 15:34:10 -040056 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];
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010064} __attribute__((packed));
65
66/* OpRegion mailbox #1: public ACPI methods */
67struct opregion_acpi {
Akshay Joshi0206e352011-08-16 15:34:10 -040068 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];
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010086} __attribute__((packed));
87
88/* OpRegion mailbox #2: SWSCI */
89struct opregion_swsci {
Akshay Joshi0206e352011-08-16 15:34:10 -040090 u32 scic; /* SWSCI command|status|data */
91 u32 parm; /* command parameters */
92 u32 dslp; /* driver sleep time-out */
93 u8 rsvd[244];
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010094} __attribute__((packed));
95
96/* OpRegion mailbox #3: ASLE */
97struct opregion_asle {
Akshay Joshi0206e352011-08-16 15:34:10 -040098 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];
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100111} __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 */
Zhao Yakui01c66882009-10-28 05:10:00 +0000121#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)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100125
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
Matthew Garrett74a365b2009-03-19 21:35:39 +0000144#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
Chris Wilson44834a62010-08-19 16:09:23 +0100150#ifdef CONFIG_ACPI
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100151static u32 asle_set_backlight(struct drm_device *dev, u32 bclp)
152{
153 struct drm_i915_private *dev_priv = dev->dev_private;
154 struct opregion_asle *asle = dev_priv->opregion.asle;
Chris Wilsona9573552010-08-22 13:18:16 +0100155 u32 max;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100156
157 if (!(bclp & ASLE_BCLP_VALID))
Chris Wilson862daef2010-08-07 11:01:32 +0100158 return ASLE_BACKLIGHT_FAILED;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100159
160 bclp &= ASLE_BCLP_MSK;
Chris Wilsona9573552010-08-22 13:18:16 +0100161 if (bclp > 255)
Chris Wilson862daef2010-08-07 11:01:32 +0100162 return ASLE_BACKLIGHT_FAILED;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100163
Chris Wilsona9573552010-08-22 13:18:16 +0100164 max = intel_panel_get_max_backlight(dev);
165 intel_panel_set_backlight(dev, bclp * max / 255);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100166 asle->cblv = (bclp*0x64)/0xff | ASLE_CBLV_VALID;
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 */
175 return 0;
176}
177
178static u32 asle_set_pwm_freq(struct drm_device *dev, u32 pfmb)
179{
180 struct drm_i915_private *dev_priv = dev->dev_private;
181 if (pfmb & ASLE_PFMB_PWM_VALID) {
182 u32 blc_pwm_ctl = I915_READ(BLC_PWM_CTL);
183 u32 pwm = pfmb & ASLE_PFMB_PWM_MASK;
184 blc_pwm_ctl &= BACKLIGHT_DUTY_CYCLE_MASK;
185 pwm = pwm >> 9;
186 /* FIXME - what do we do with the PWM? */
187 }
188 return 0;
189}
190
191static u32 asle_set_pfit(struct drm_device *dev, u32 pfit)
192{
193 /* Panel fitting is currently controlled by the X code, so this is a
194 noop until modesetting support works fully */
195 if (!(pfit & ASLE_PFIT_VALID))
Chris Wilson862daef2010-08-07 11:01:32 +0100196 return ASLE_PFIT_FAILED;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100197 return 0;
198}
199
Chris Wilson3b617962010-08-24 09:02:58 +0100200void intel_opregion_asle_intr(struct drm_device *dev)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100201{
202 struct drm_i915_private *dev_priv = dev->dev_private;
203 struct opregion_asle *asle = dev_priv->opregion.asle;
204 u32 asle_stat = 0;
205 u32 asle_req;
206
207 if (!asle)
208 return;
209
210 asle_req = asle->aslc & ASLE_REQ_MSK;
211
212 if (!asle_req) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800213 DRM_DEBUG_DRIVER("non asle set request??\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100214 return;
215 }
216
217 if (asle_req & ASLE_SET_ALS_ILLUM)
218 asle_stat |= asle_set_als_illum(dev, asle->alsi);
219
220 if (asle_req & ASLE_SET_BACKLIGHT)
221 asle_stat |= asle_set_backlight(dev, asle->bclp);
222
223 if (asle_req & ASLE_SET_PFIT)
224 asle_stat |= asle_set_pfit(dev, asle->pfit);
225
226 if (asle_req & ASLE_SET_PWM_FREQ)
227 asle_stat |= asle_set_pwm_freq(dev, asle->pfmb);
228
229 asle->aslc = asle_stat;
230}
231
Chris Wilson3b617962010-08-24 09:02:58 +0100232void intel_opregion_gse_intr(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000233{
234 struct drm_i915_private *dev_priv = dev->dev_private;
235 struct opregion_asle *asle = dev_priv->opregion.asle;
236 u32 asle_stat = 0;
237 u32 asle_req;
238
239 if (!asle)
240 return;
241
242 asle_req = asle->aslc & ASLE_REQ_MSK;
243
244 if (!asle_req) {
245 DRM_DEBUG_DRIVER("non asle set request??\n");
246 return;
247 }
248
249 if (asle_req & ASLE_SET_ALS_ILLUM) {
250 DRM_DEBUG_DRIVER("Illum is not supported\n");
251 asle_stat |= ASLE_ALS_ILLUM_FAILED;
252 }
253
254 if (asle_req & ASLE_SET_BACKLIGHT)
Chris Wilsona9573552010-08-22 13:18:16 +0100255 asle_stat |= asle_set_backlight(dev, asle->bclp);
Zhao Yakui01c66882009-10-28 05:10:00 +0000256
257 if (asle_req & ASLE_SET_PFIT) {
258 DRM_DEBUG_DRIVER("Pfit is not supported\n");
259 asle_stat |= ASLE_PFIT_FAILED;
260 }
261
262 if (asle_req & ASLE_SET_PWM_FREQ) {
263 DRM_DEBUG_DRIVER("PWM freq is not supported\n");
264 asle_stat |= ASLE_PWM_FREQ_FAILED;
265 }
266
267 asle->aslc = asle_stat;
268}
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100269#define ASLE_ALS_EN (1<<0)
270#define ASLE_BLC_EN (1<<1)
271#define ASLE_PFIT_EN (1<<2)
272#define ASLE_PFMB_EN (1<<3)
273
Chris Wilson3b617962010-08-24 09:02:58 +0100274void intel_opregion_enable_asle(struct drm_device *dev)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100275{
276 struct drm_i915_private *dev_priv = dev->dev_private;
277 struct opregion_asle *asle = dev_priv->opregion.asle;
278
279 if (asle) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000280 if (IS_MOBILE(dev))
Zhao Yakui01c66882009-10-28 05:10:00 +0000281 intel_enable_asle(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100282
283 asle->tche = ASLE_ALS_EN | ASLE_BLC_EN | ASLE_PFIT_EN |
284 ASLE_PFMB_EN;
285 asle->ardy = 1;
286 }
287}
288
289#define ACPI_EV_DISPLAY_SWITCH (1<<0)
290#define ACPI_EV_LID (1<<1)
291#define ACPI_EV_DOCK (1<<2)
292
293static struct intel_opregion *system_opregion;
294
Hannes Ederb358d0a2008-12-18 21:18:47 +0100295static int intel_opregion_video_event(struct notifier_block *nb,
296 unsigned long val, void *data)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100297{
298 /* The only video events relevant to opregion are 0x80. These indicate
299 either a docking event, lid switch or display switch request. In
300 Linux, these are handled by the dock, button and video drivers.
Matthew Garrettf5a3d0c2011-07-12 18:30:52 -0400301 */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100302
303 struct opregion_acpi *acpi;
Matthew Garrettf5a3d0c2011-07-12 18:30:52 -0400304 struct acpi_bus_event *event = data;
305 int ret = NOTIFY_OK;
306
307 if (strcmp(event->device_class, ACPI_VIDEO_CLASS) != 0)
308 return NOTIFY_DONE;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100309
310 if (!system_opregion)
311 return NOTIFY_DONE;
312
313 acpi = system_opregion->acpi;
Matthew Garrettf5a3d0c2011-07-12 18:30:52 -0400314
315 if (event->type == 0x80 && !(acpi->cevt & 0x1))
316 ret = NOTIFY_BAD;
317
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100318 acpi->csts = 0;
319
Matthew Garrettf5a3d0c2011-07-12 18:30:52 -0400320 return ret;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100321}
322
323static struct notifier_block intel_opregion_notifier = {
324 .notifier_call = intel_opregion_video_event,
325};
326
Matthew Garrett74a365b2009-03-19 21:35:39 +0000327/*
328 * Initialise the DIDL field in opregion. This passes a list of devices to
329 * the firmware. Values are defined by section B.4.2 of the ACPI specification
330 * (version 3)
331 */
332
333static void intel_didl_outputs(struct drm_device *dev)
334{
335 struct drm_i915_private *dev_priv = dev->dev_private;
336 struct intel_opregion *opregion = &dev_priv->opregion;
337 struct drm_connector *connector;
Zhang Rui31437512010-03-29 15:12:16 +0800338 acpi_handle handle;
339 struct acpi_device *acpi_dev, *acpi_cdev, *acpi_video_bus = NULL;
340 unsigned long long device_id;
341 acpi_status status;
Matthew Garrett74a365b2009-03-19 21:35:39 +0000342 int i = 0;
343
Zhang Rui31437512010-03-29 15:12:16 +0800344 handle = DEVICE_ACPI_HANDLE(&dev->pdev->dev);
345 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &acpi_dev)))
346 return;
347
348 if (acpi_is_video_device(acpi_dev))
349 acpi_video_bus = acpi_dev;
350 else {
351 list_for_each_entry(acpi_cdev, &acpi_dev->children, node) {
352 if (acpi_is_video_device(acpi_cdev)) {
353 acpi_video_bus = acpi_cdev;
354 break;
355 }
356 }
357 }
358
359 if (!acpi_video_bus) {
Joe Perchesa70491c2012-03-18 13:00:11 -0700360 pr_warn("No ACPI video bus found\n");
Zhang Rui31437512010-03-29 15:12:16 +0800361 return;
362 }
363
364 list_for_each_entry(acpi_cdev, &acpi_video_bus->children, node) {
365 if (i >= 8) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400366 dev_printk(KERN_ERR, &dev->pdev->dev,
Zhang Rui31437512010-03-29 15:12:16 +0800367 "More than 8 outputs detected\n");
368 return;
369 }
370 status =
371 acpi_evaluate_integer(acpi_cdev->handle, "_ADR",
372 NULL, &device_id);
373 if (ACPI_SUCCESS(status)) {
374 if (!device_id)
375 goto blind_set;
376 opregion->acpi->didl[i] = (u32)(device_id & 0x0f0f);
377 i++;
378 }
379 }
380
381end:
382 /* If fewer than 8 outputs, the list must be null terminated */
383 if (i < 8)
384 opregion->acpi->didl[i] = 0;
385 return;
386
387blind_set:
388 i = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +0000389 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
390 int output_type = ACPI_OTHER_OUTPUT;
391 if (i >= 8) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400392 dev_printk(KERN_ERR, &dev->pdev->dev,
Matthew Garrett74a365b2009-03-19 21:35:39 +0000393 "More than 8 outputs detected\n");
394 return;
395 }
396 switch (connector->connector_type) {
397 case DRM_MODE_CONNECTOR_VGA:
398 case DRM_MODE_CONNECTOR_DVIA:
399 output_type = ACPI_VGA_OUTPUT;
400 break;
401 case DRM_MODE_CONNECTOR_Composite:
402 case DRM_MODE_CONNECTOR_SVIDEO:
403 case DRM_MODE_CONNECTOR_Component:
404 case DRM_MODE_CONNECTOR_9PinDIN:
405 output_type = ACPI_TV_OUTPUT;
406 break;
407 case DRM_MODE_CONNECTOR_DVII:
408 case DRM_MODE_CONNECTOR_DVID:
409 case DRM_MODE_CONNECTOR_DisplayPort:
410 case DRM_MODE_CONNECTOR_HDMIA:
411 case DRM_MODE_CONNECTOR_HDMIB:
412 output_type = ACPI_DIGITAL_OUTPUT;
413 break;
414 case DRM_MODE_CONNECTOR_LVDS:
415 output_type = ACPI_LVDS_OUTPUT;
416 break;
417 }
418 opregion->acpi->didl[i] |= (1<<31) | output_type | i;
419 i++;
420 }
Zhang Rui31437512010-03-29 15:12:16 +0800421 goto end;
Matthew Garrett74a365b2009-03-19 21:35:39 +0000422}
423
Chris Wilson44834a62010-08-19 16:09:23 +0100424void intel_opregion_init(struct drm_device *dev)
425{
426 struct drm_i915_private *dev_priv = dev->dev_private;
427 struct intel_opregion *opregion = &dev_priv->opregion;
428
429 if (!opregion->header)
430 return;
431
432 if (opregion->acpi) {
433 if (drm_core_check_feature(dev, DRIVER_MODESET))
434 intel_didl_outputs(dev);
435
436 /* Notify BIOS we are ready to handle ACPI video ext notifs.
437 * Right now, all the events are handled by the ACPI video module.
438 * We don't actually need to do anything with them. */
439 opregion->acpi->csts = 0;
440 opregion->acpi->drdy = 1;
441
442 system_opregion = opregion;
443 register_acpi_notifier(&intel_opregion_notifier);
444 }
445
446 if (opregion->asle)
447 intel_opregion_enable_asle(dev);
448}
449
450void intel_opregion_fini(struct drm_device *dev)
451{
452 struct drm_i915_private *dev_priv = dev->dev_private;
453 struct intel_opregion *opregion = &dev_priv->opregion;
454
455 if (!opregion->header)
456 return;
457
458 if (opregion->acpi) {
459 opregion->acpi->drdy = 0;
460
461 system_opregion = NULL;
462 unregister_acpi_notifier(&intel_opregion_notifier);
463 }
464
465 /* just clear all opregion memory pointers now */
466 iounmap(opregion->header);
467 opregion->header = NULL;
468 opregion->acpi = NULL;
469 opregion->swsci = NULL;
470 opregion->asle = NULL;
471 opregion->vbt = NULL;
472}
473#endif
474
475int intel_opregion_setup(struct drm_device *dev)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100476{
477 struct drm_i915_private *dev_priv = dev->dev_private;
478 struct intel_opregion *opregion = &dev_priv->opregion;
479 void *base;
480 u32 asls, mboxes;
481 int err = 0;
482
483 pci_read_config_dword(dev->pdev, PCI_ASLS, &asls);
Zhao Yakui44d98a62009-10-09 11:39:40 +0800484 DRM_DEBUG_DRIVER("graphic opregion physical addr: 0x%x\n", asls);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100485 if (asls == 0) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800486 DRM_DEBUG_DRIVER("ACPI OpRegion not supported!\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100487 return -ENOTSUPP;
488 }
489
Michael Karcherb7051202011-01-23 18:17:17 +0000490 base = acpi_os_ioremap(asls, OPREGION_SIZE);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100491 if (!base)
492 return -ENOMEM;
493
Chris Wilson44834a62010-08-19 16:09:23 +0100494 if (memcmp(base, OPREGION_SIGNATURE, 16)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800495 DRM_DEBUG_DRIVER("opregion signature mismatch\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100496 err = -EINVAL;
497 goto err_out;
498 }
Chris Wilson44834a62010-08-19 16:09:23 +0100499 opregion->header = base;
500 opregion->vbt = base + OPREGION_VBT_OFFSET;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100501
Chris Wilson82d3c902011-02-24 18:13:42 +0000502 opregion->lid_state = base + ACPI_CLID;
Chris Wilson01fe9db2011-01-16 19:37:30 +0000503
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100504 mboxes = opregion->header->mboxes;
505 if (mboxes & MBOX_ACPI) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800506 DRM_DEBUG_DRIVER("Public ACPI methods supported\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100507 opregion->acpi = base + OPREGION_ACPI_OFFSET;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100508 }
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100509
510 if (mboxes & MBOX_SWSCI) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800511 DRM_DEBUG_DRIVER("SWSCI supported\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100512 opregion->swsci = base + OPREGION_SWSCI_OFFSET;
513 }
514 if (mboxes & MBOX_ASLE) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800515 DRM_DEBUG_DRIVER("ASLE supported\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100516 opregion->asle = base + OPREGION_ASLE_OFFSET;
517 }
518
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100519 return 0;
520
521err_out:
Christoph Fritz30c56662010-11-01 11:32:22 +0100522 iounmap(base);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100523 return err;
524}