blob: b7c5ddb564d144e43bdeac2727172a1bc6492bc5 [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
28#include <linux/acpi.h>
Michael Karcherb7051202011-01-23 18:17:17 +000029#include <linux/acpi_io.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000030#include <acpi/video.h>
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010031
32#include "drmP.h"
33#include "i915_drm.h"
34#include "i915_drv.h"
Chris Wilsona9573552010-08-22 13:18:16 +010035#include "intel_drv.h"
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010036
37#define PCI_ASLE 0xe4
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010038#define PCI_ASLS 0xfc
39
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010040#define OPREGION_HEADER_OFFSET 0
41#define OPREGION_ACPI_OFFSET 0x100
Chris Wilson82d3c902011-02-24 18:13:42 +000042#define ACPI_CLID 0x01ac /* current lid state indicator */
43#define ACPI_CDCK 0x01b0 /* current docking state indicator */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010044#define OPREGION_SWSCI_OFFSET 0x200
45#define OPREGION_ASLE_OFFSET 0x300
Chris Wilson44834a62010-08-19 16:09:23 +010046#define OPREGION_VBT_OFFSET 0x400
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010047
48#define OPREGION_SIGNATURE "IntelGraphicsMem"
49#define MBOX_ACPI (1<<0)
50#define MBOX_SWSCI (1<<1)
51#define MBOX_ASLE (1<<2)
52
53struct opregion_header {
54 u8 signature[16];
55 u32 size;
56 u32 opregion_ver;
57 u8 bios_ver[32];
58 u8 vbios_ver[16];
59 u8 driver_ver[16];
60 u32 mboxes;
61 u8 reserved[164];
62} __attribute__((packed));
63
64/* OpRegion mailbox #1: public ACPI methods */
65struct opregion_acpi {
66 u32 drdy; /* driver readiness */
67 u32 csts; /* notification status */
68 u32 cevt; /* current event */
69 u8 rsvd1[20];
70 u32 didl[8]; /* supported display devices ID list */
71 u32 cpdl[8]; /* currently presented display list */
72 u32 cadl[8]; /* currently active display list */
73 u32 nadl[8]; /* next active devices list */
74 u32 aslp; /* ASL sleep time-out */
75 u32 tidx; /* toggle table index */
76 u32 chpd; /* current hotplug enable indicator */
77 u32 clid; /* current lid state*/
78 u32 cdck; /* current docking state */
79 u32 sxsw; /* Sx state resume */
80 u32 evts; /* ASL supported events */
81 u32 cnot; /* current OS notification */
82 u32 nrdy; /* driver status */
83 u8 rsvd2[60];
84} __attribute__((packed));
85
86/* OpRegion mailbox #2: SWSCI */
87struct opregion_swsci {
88 u32 scic; /* SWSCI command|status|data */
89 u32 parm; /* command parameters */
90 u32 dslp; /* driver sleep time-out */
91 u8 rsvd[244];
92} __attribute__((packed));
93
94/* OpRegion mailbox #3: ASLE */
95struct opregion_asle {
96 u32 ardy; /* driver readiness */
97 u32 aslc; /* ASLE interrupt command */
98 u32 tche; /* technology enabled indicator */
99 u32 alsi; /* current ALS illuminance reading */
100 u32 bclp; /* backlight brightness to set */
101 u32 pfit; /* panel fitting state */
102 u32 cblv; /* current brightness level */
103 u16 bclm[20]; /* backlight level duty cycle mapping table */
104 u32 cpfm; /* current panel fitting mode */
105 u32 epfm; /* enabled panel fitting modes */
106 u8 plut[74]; /* panel LUT and identifier */
107 u32 pfmb; /* PWM freq and min brightness */
108 u8 rsvd[102];
109} __attribute__((packed));
110
111/* ASLE irq request bits */
112#define ASLE_SET_ALS_ILLUM (1 << 0)
113#define ASLE_SET_BACKLIGHT (1 << 1)
114#define ASLE_SET_PFIT (1 << 2)
115#define ASLE_SET_PWM_FREQ (1 << 3)
116#define ASLE_REQ_MSK 0xf
117
118/* response bits of ASLE irq request */
Zhao Yakui01c66882009-10-28 05:10:00 +0000119#define ASLE_ALS_ILLUM_FAILED (1<<10)
120#define ASLE_BACKLIGHT_FAILED (1<<12)
121#define ASLE_PFIT_FAILED (1<<14)
122#define ASLE_PWM_FREQ_FAILED (1<<16)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100123
124/* ASLE backlight brightness to set */
125#define ASLE_BCLP_VALID (1<<31)
126#define ASLE_BCLP_MSK (~(1<<31))
127
128/* ASLE panel fitting request */
129#define ASLE_PFIT_VALID (1<<31)
130#define ASLE_PFIT_CENTER (1<<0)
131#define ASLE_PFIT_STRETCH_TEXT (1<<1)
132#define ASLE_PFIT_STRETCH_GFX (1<<2)
133
134/* PWM frequency and minimum brightness */
135#define ASLE_PFMB_BRIGHTNESS_MASK (0xff)
136#define ASLE_PFMB_BRIGHTNESS_VALID (1<<8)
137#define ASLE_PFMB_PWM_MASK (0x7ffffe00)
138#define ASLE_PFMB_PWM_VALID (1<<31)
139
140#define ASLE_CBLV_VALID (1<<31)
141
Matthew Garrett74a365b2009-03-19 21:35:39 +0000142#define ACPI_OTHER_OUTPUT (0<<8)
143#define ACPI_VGA_OUTPUT (1<<8)
144#define ACPI_TV_OUTPUT (2<<8)
145#define ACPI_DIGITAL_OUTPUT (3<<8)
146#define ACPI_LVDS_OUTPUT (4<<8)
147
Chris Wilson44834a62010-08-19 16:09:23 +0100148#ifdef CONFIG_ACPI
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100149static u32 asle_set_backlight(struct drm_device *dev, u32 bclp)
150{
151 struct drm_i915_private *dev_priv = dev->dev_private;
152 struct opregion_asle *asle = dev_priv->opregion.asle;
Chris Wilsona9573552010-08-22 13:18:16 +0100153 u32 max;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100154
155 if (!(bclp & ASLE_BCLP_VALID))
Chris Wilson862daef2010-08-07 11:01:32 +0100156 return ASLE_BACKLIGHT_FAILED;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100157
158 bclp &= ASLE_BCLP_MSK;
Chris Wilsona9573552010-08-22 13:18:16 +0100159 if (bclp > 255)
Chris Wilson862daef2010-08-07 11:01:32 +0100160 return ASLE_BACKLIGHT_FAILED;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100161
Chris Wilsona9573552010-08-22 13:18:16 +0100162 max = intel_panel_get_max_backlight(dev);
163 intel_panel_set_backlight(dev, bclp * max / 255);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100164 asle->cblv = (bclp*0x64)/0xff | ASLE_CBLV_VALID;
165
166 return 0;
167}
168
169static u32 asle_set_als_illum(struct drm_device *dev, u32 alsi)
170{
171 /* alsi is the current ALS reading in lux. 0 indicates below sensor
172 range, 0xffff indicates above sensor range. 1-0xfffe are valid */
173 return 0;
174}
175
176static u32 asle_set_pwm_freq(struct drm_device *dev, u32 pfmb)
177{
178 struct drm_i915_private *dev_priv = dev->dev_private;
179 if (pfmb & ASLE_PFMB_PWM_VALID) {
180 u32 blc_pwm_ctl = I915_READ(BLC_PWM_CTL);
181 u32 pwm = pfmb & ASLE_PFMB_PWM_MASK;
182 blc_pwm_ctl &= BACKLIGHT_DUTY_CYCLE_MASK;
183 pwm = pwm >> 9;
184 /* FIXME - what do we do with the PWM? */
185 }
186 return 0;
187}
188
189static u32 asle_set_pfit(struct drm_device *dev, u32 pfit)
190{
191 /* Panel fitting is currently controlled by the X code, so this is a
192 noop until modesetting support works fully */
193 if (!(pfit & ASLE_PFIT_VALID))
Chris Wilson862daef2010-08-07 11:01:32 +0100194 return ASLE_PFIT_FAILED;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100195 return 0;
196}
197
Chris Wilson3b617962010-08-24 09:02:58 +0100198void intel_opregion_asle_intr(struct drm_device *dev)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100199{
200 struct drm_i915_private *dev_priv = dev->dev_private;
201 struct opregion_asle *asle = dev_priv->opregion.asle;
202 u32 asle_stat = 0;
203 u32 asle_req;
204
205 if (!asle)
206 return;
207
208 asle_req = asle->aslc & ASLE_REQ_MSK;
209
210 if (!asle_req) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800211 DRM_DEBUG_DRIVER("non asle set request??\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100212 return;
213 }
214
215 if (asle_req & ASLE_SET_ALS_ILLUM)
216 asle_stat |= asle_set_als_illum(dev, asle->alsi);
217
218 if (asle_req & ASLE_SET_BACKLIGHT)
219 asle_stat |= asle_set_backlight(dev, asle->bclp);
220
221 if (asle_req & ASLE_SET_PFIT)
222 asle_stat |= asle_set_pfit(dev, asle->pfit);
223
224 if (asle_req & ASLE_SET_PWM_FREQ)
225 asle_stat |= asle_set_pwm_freq(dev, asle->pfmb);
226
227 asle->aslc = asle_stat;
228}
229
Chris Wilson3b617962010-08-24 09:02:58 +0100230/* Only present on Ironlake+ */
231void intel_opregion_gse_intr(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000232{
233 struct drm_i915_private *dev_priv = dev->dev_private;
234 struct opregion_asle *asle = dev_priv->opregion.asle;
235 u32 asle_stat = 0;
236 u32 asle_req;
237
238 if (!asle)
239 return;
240
241 asle_req = asle->aslc & ASLE_REQ_MSK;
242
243 if (!asle_req) {
244 DRM_DEBUG_DRIVER("non asle set request??\n");
245 return;
246 }
247
248 if (asle_req & ASLE_SET_ALS_ILLUM) {
249 DRM_DEBUG_DRIVER("Illum is not supported\n");
250 asle_stat |= ASLE_ALS_ILLUM_FAILED;
251 }
252
253 if (asle_req & ASLE_SET_BACKLIGHT)
Chris Wilsona9573552010-08-22 13:18:16 +0100254 asle_stat |= asle_set_backlight(dev, asle->bclp);
Zhao Yakui01c66882009-10-28 05:10:00 +0000255
256 if (asle_req & ASLE_SET_PFIT) {
257 DRM_DEBUG_DRIVER("Pfit is not supported\n");
258 asle_stat |= ASLE_PFIT_FAILED;
259 }
260
261 if (asle_req & ASLE_SET_PWM_FREQ) {
262 DRM_DEBUG_DRIVER("PWM freq is not supported\n");
263 asle_stat |= ASLE_PWM_FREQ_FAILED;
264 }
265
266 asle->aslc = asle_stat;
267}
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100268#define ASLE_ALS_EN (1<<0)
269#define ASLE_BLC_EN (1<<1)
270#define ASLE_PFIT_EN (1<<2)
271#define ASLE_PFMB_EN (1<<3)
272
Chris Wilson3b617962010-08-24 09:02:58 +0100273void intel_opregion_enable_asle(struct drm_device *dev)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100274{
275 struct drm_i915_private *dev_priv = dev->dev_private;
276 struct opregion_asle *asle = dev_priv->opregion.asle;
277
278 if (asle) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000279 if (IS_MOBILE(dev))
Zhao Yakui01c66882009-10-28 05:10:00 +0000280 intel_enable_asle(dev);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100281
282 asle->tche = ASLE_ALS_EN | ASLE_BLC_EN | ASLE_PFIT_EN |
283 ASLE_PFMB_EN;
284 asle->ardy = 1;
285 }
286}
287
288#define ACPI_EV_DISPLAY_SWITCH (1<<0)
289#define ACPI_EV_LID (1<<1)
290#define ACPI_EV_DOCK (1<<2)
291
292static struct intel_opregion *system_opregion;
293
Hannes Ederb358d0a2008-12-18 21:18:47 +0100294static int intel_opregion_video_event(struct notifier_block *nb,
295 unsigned long val, void *data)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100296{
297 /* The only video events relevant to opregion are 0x80. These indicate
298 either a docking event, lid switch or display switch request. In
299 Linux, these are handled by the dock, button and video drivers.
Matthew Garrettf5a3d0c2011-07-12 18:30:52 -0400300 */
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100301
302 struct opregion_acpi *acpi;
Matthew Garrettf5a3d0c2011-07-12 18:30:52 -0400303 struct acpi_bus_event *event = data;
304 int ret = NOTIFY_OK;
305
306 if (strcmp(event->device_class, ACPI_VIDEO_CLASS) != 0)
307 return NOTIFY_DONE;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100308
309 if (!system_opregion)
310 return NOTIFY_DONE;
311
312 acpi = system_opregion->acpi;
Matthew Garrettf5a3d0c2011-07-12 18:30:52 -0400313
314 if (event->type == 0x80 && !(acpi->cevt & 0x1))
315 ret = NOTIFY_BAD;
316
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100317 acpi->csts = 0;
318
Matthew Garrettf5a3d0c2011-07-12 18:30:52 -0400319 return ret;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100320}
321
322static struct notifier_block intel_opregion_notifier = {
323 .notifier_call = intel_opregion_video_event,
324};
325
Matthew Garrett74a365b2009-03-19 21:35:39 +0000326/*
327 * Initialise the DIDL field in opregion. This passes a list of devices to
328 * the firmware. Values are defined by section B.4.2 of the ACPI specification
329 * (version 3)
330 */
331
332static void intel_didl_outputs(struct drm_device *dev)
333{
334 struct drm_i915_private *dev_priv = dev->dev_private;
335 struct intel_opregion *opregion = &dev_priv->opregion;
336 struct drm_connector *connector;
Zhang Rui31437512010-03-29 15:12:16 +0800337 acpi_handle handle;
338 struct acpi_device *acpi_dev, *acpi_cdev, *acpi_video_bus = NULL;
339 unsigned long long device_id;
340 acpi_status status;
Matthew Garrett74a365b2009-03-19 21:35:39 +0000341 int i = 0;
342
Zhang Rui31437512010-03-29 15:12:16 +0800343 handle = DEVICE_ACPI_HANDLE(&dev->pdev->dev);
344 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &acpi_dev)))
345 return;
346
347 if (acpi_is_video_device(acpi_dev))
348 acpi_video_bus = acpi_dev;
349 else {
350 list_for_each_entry(acpi_cdev, &acpi_dev->children, node) {
351 if (acpi_is_video_device(acpi_cdev)) {
352 acpi_video_bus = acpi_cdev;
353 break;
354 }
355 }
356 }
357
358 if (!acpi_video_bus) {
359 printk(KERN_WARNING "No ACPI video bus found\n");
360 return;
361 }
362
363 list_for_each_entry(acpi_cdev, &acpi_video_bus->children, node) {
364 if (i >= 8) {
365 dev_printk (KERN_ERR, &dev->pdev->dev,
366 "More than 8 outputs detected\n");
367 return;
368 }
369 status =
370 acpi_evaluate_integer(acpi_cdev->handle, "_ADR",
371 NULL, &device_id);
372 if (ACPI_SUCCESS(status)) {
373 if (!device_id)
374 goto blind_set;
375 opregion->acpi->didl[i] = (u32)(device_id & 0x0f0f);
376 i++;
377 }
378 }
379
380end:
381 /* If fewer than 8 outputs, the list must be null terminated */
382 if (i < 8)
383 opregion->acpi->didl[i] = 0;
384 return;
385
386blind_set:
387 i = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +0000388 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
389 int output_type = ACPI_OTHER_OUTPUT;
390 if (i >= 8) {
391 dev_printk (KERN_ERR, &dev->pdev->dev,
392 "More than 8 outputs detected\n");
393 return;
394 }
395 switch (connector->connector_type) {
396 case DRM_MODE_CONNECTOR_VGA:
397 case DRM_MODE_CONNECTOR_DVIA:
398 output_type = ACPI_VGA_OUTPUT;
399 break;
400 case DRM_MODE_CONNECTOR_Composite:
401 case DRM_MODE_CONNECTOR_SVIDEO:
402 case DRM_MODE_CONNECTOR_Component:
403 case DRM_MODE_CONNECTOR_9PinDIN:
404 output_type = ACPI_TV_OUTPUT;
405 break;
406 case DRM_MODE_CONNECTOR_DVII:
407 case DRM_MODE_CONNECTOR_DVID:
408 case DRM_MODE_CONNECTOR_DisplayPort:
409 case DRM_MODE_CONNECTOR_HDMIA:
410 case DRM_MODE_CONNECTOR_HDMIB:
411 output_type = ACPI_DIGITAL_OUTPUT;
412 break;
413 case DRM_MODE_CONNECTOR_LVDS:
414 output_type = ACPI_LVDS_OUTPUT;
415 break;
416 }
417 opregion->acpi->didl[i] |= (1<<31) | output_type | i;
418 i++;
419 }
Zhang Rui31437512010-03-29 15:12:16 +0800420 goto end;
Matthew Garrett74a365b2009-03-19 21:35:39 +0000421}
422
Chris Wilson44834a62010-08-19 16:09:23 +0100423void intel_opregion_init(struct drm_device *dev)
424{
425 struct drm_i915_private *dev_priv = dev->dev_private;
426 struct intel_opregion *opregion = &dev_priv->opregion;
427
428 if (!opregion->header)
429 return;
430
431 if (opregion->acpi) {
432 if (drm_core_check_feature(dev, DRIVER_MODESET))
433 intel_didl_outputs(dev);
434
435 /* Notify BIOS we are ready to handle ACPI video ext notifs.
436 * Right now, all the events are handled by the ACPI video module.
437 * We don't actually need to do anything with them. */
438 opregion->acpi->csts = 0;
439 opregion->acpi->drdy = 1;
440
441 system_opregion = opregion;
442 register_acpi_notifier(&intel_opregion_notifier);
443 }
444
445 if (opregion->asle)
446 intel_opregion_enable_asle(dev);
447}
448
449void intel_opregion_fini(struct drm_device *dev)
450{
451 struct drm_i915_private *dev_priv = dev->dev_private;
452 struct intel_opregion *opregion = &dev_priv->opregion;
453
454 if (!opregion->header)
455 return;
456
457 if (opregion->acpi) {
458 opregion->acpi->drdy = 0;
459
460 system_opregion = NULL;
461 unregister_acpi_notifier(&intel_opregion_notifier);
462 }
463
464 /* just clear all opregion memory pointers now */
465 iounmap(opregion->header);
466 opregion->header = NULL;
467 opregion->acpi = NULL;
468 opregion->swsci = NULL;
469 opregion->asle = NULL;
470 opregion->vbt = NULL;
471}
472#endif
473
474int intel_opregion_setup(struct drm_device *dev)
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100475{
476 struct drm_i915_private *dev_priv = dev->dev_private;
477 struct intel_opregion *opregion = &dev_priv->opregion;
478 void *base;
479 u32 asls, mboxes;
480 int err = 0;
481
482 pci_read_config_dword(dev->pdev, PCI_ASLS, &asls);
Zhao Yakui44d98a62009-10-09 11:39:40 +0800483 DRM_DEBUG_DRIVER("graphic opregion physical addr: 0x%x\n", asls);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100484 if (asls == 0) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800485 DRM_DEBUG_DRIVER("ACPI OpRegion not supported!\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100486 return -ENOTSUPP;
487 }
488
Michael Karcherb7051202011-01-23 18:17:17 +0000489 base = acpi_os_ioremap(asls, OPREGION_SIZE);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100490 if (!base)
491 return -ENOMEM;
492
Chris Wilson44834a62010-08-19 16:09:23 +0100493 if (memcmp(base, OPREGION_SIGNATURE, 16)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800494 DRM_DEBUG_DRIVER("opregion signature mismatch\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100495 err = -EINVAL;
496 goto err_out;
497 }
Chris Wilson44834a62010-08-19 16:09:23 +0100498 opregion->header = base;
499 opregion->vbt = base + OPREGION_VBT_OFFSET;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100500
Chris Wilson82d3c902011-02-24 18:13:42 +0000501 opregion->lid_state = base + ACPI_CLID;
Chris Wilson01fe9db2011-01-16 19:37:30 +0000502
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100503 mboxes = opregion->header->mboxes;
504 if (mboxes & MBOX_ACPI) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800505 DRM_DEBUG_DRIVER("Public ACPI methods supported\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100506 opregion->acpi = base + OPREGION_ACPI_OFFSET;
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100507 }
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100508
509 if (mboxes & MBOX_SWSCI) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800510 DRM_DEBUG_DRIVER("SWSCI supported\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100511 opregion->swsci = base + OPREGION_SWSCI_OFFSET;
512 }
513 if (mboxes & MBOX_ASLE) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800514 DRM_DEBUG_DRIVER("ASLE supported\n");
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100515 opregion->asle = base + OPREGION_ASLE_OFFSET;
516 }
517
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100518 return 0;
519
520err_out:
Christoph Fritz30c56662010-11-01 11:32:22 +0100521 iounmap(base);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100522 return err;
523}