blob: d946bc1b17bf05999126ae719a8e250d65d4056c [file] [log] [blame]
Alan Cox0867b422011-02-22 14:27:58 +00001/*
2 * Copyright 2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
Alan Cox6b8402b2011-08-26 11:18:41 +010023 * FIXME: resolve with the i915 version
Alan Cox0867b422011-02-22 14:27:58 +000024 */
25
26#include "psb_drv.h"
27
28struct opregion_header {
29 u8 signature[16];
30 u32 size;
31 u32 opregion_ver;
32 u8 bios_ver[32];
33 u8 vbios_ver[16];
34 u8 driver_ver[16];
35 u32 mboxes;
36 u8 reserved[164];
Alan Coxe2e88602011-07-05 15:36:19 +010037} __packed;
Alan Cox0867b422011-02-22 14:27:58 +000038
39struct opregion_apci {
40 /*FIXME: add it later*/
Alan Coxe2e88602011-07-05 15:36:19 +010041} __packed;
Alan Cox0867b422011-02-22 14:27:58 +000042
43struct opregion_swsci {
44 /*FIXME: add it later*/
Alan Coxe2e88602011-07-05 15:36:19 +010045} __packed;
Alan Cox0867b422011-02-22 14:27:58 +000046
47struct opregion_acpi {
48 /*FIXME: add it later*/
Alan Coxe2e88602011-07-05 15:36:19 +010049} __packed;
Alan Cox0867b422011-02-22 14:27:58 +000050
Alan Cox5ed836a2011-07-08 09:43:45 +010051int gma_intel_opregion_init(struct drm_device *dev)
Alan Cox0867b422011-02-22 14:27:58 +000052{
53 struct drm_psb_private *dev_priv = dev->dev_private;
Alan Cox0867b422011-02-22 14:27:58 +000054 u32 opregion_phy;
55 void *base;
56 u32 *lid_state;
57
58 dev_priv->lid_state = NULL;
59
60 pci_read_config_dword(dev->pdev, 0xfc, &opregion_phy);
Alan Cox99d8f032011-07-05 15:35:30 +010061 if (opregion_phy == 0)
Alan Cox0867b422011-02-22 14:27:58 +000062 return -ENOTSUPP;
Alan Cox0867b422011-02-22 14:27:58 +000063
64 base = ioremap(opregion_phy, 8*1024);
65 if (!base)
66 return -ENOMEM;
67
68 lid_state = base + 0x01ac;
69
Alan Cox0867b422011-02-22 14:27:58 +000070 dev_priv->lid_state = lid_state;
Alan Coxb21fb572011-07-05 15:42:23 +010071 dev_priv->lid_last_state = readl(lid_state);
Alan Cox0867b422011-02-22 14:27:58 +000072 return 0;
73}
Alan Coxb21fb572011-07-05 15:42:23 +010074
Alan Cox5ed836a2011-07-08 09:43:45 +010075int gma_intel_opregion_exit(struct drm_device *dev)
Alan Coxb21fb572011-07-05 15:42:23 +010076{
77 struct drm_psb_private *dev_priv = dev->dev_private;
78 if (dev_priv->lid_state)
79 iounmap(dev_priv->lid_state);
80 return 0;
81}