Subversion Repositories Kolibri OS

Rev

Rev 2330 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2327 Serge 1
/*
2
 * Copyright 2008 Intel Corporation 
3
 * Copyright 2008 Red Hat 
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 
29
//#include 
30
//#include 
31
#include 
32
#include "drmP.h"
33
//#include "i915_drm.h"
34
#include "i915_drv.h"
35
#include "intel_drv.h"
36
 
37
#include 
38
 
39
#define PCI_ASLE 0xe4
40
#define PCI_ASLS 0xfc
41
 
42
#define OPREGION_HEADER_OFFSET 0
43
#define OPREGION_ACPI_OFFSET   0x100
44
#define   ACPI_CLID 0x01ac /* current lid state indicator */
45
#define   ACPI_CDCK 0x01b0 /* current docking state indicator */
46
#define OPREGION_SWSCI_OFFSET  0x200
47
#define OPREGION_ASLE_OFFSET   0x300
48
#define OPREGION_VBT_OFFSET    0x400
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
 
55
struct opregion_header {
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];
64
} __attribute__((packed));
65
 
66
/* OpRegion mailbox #1: public ACPI methods */
67
struct opregion_acpi {
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];
86
} __attribute__((packed));
87
 
88
/* OpRegion mailbox #2: SWSCI */
89
struct opregion_swsci {
90
       u32 scic;       /* SWSCI command|status|data */
91
       u32 parm;       /* command parameters */
92
       u32 dslp;       /* driver sleep time-out */
93
       u8 rsvd[244];
94
} __attribute__((packed));
95
 
96
/* OpRegion mailbox #3: ASLE */
97
struct opregion_asle {
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];
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 */
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)
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
 
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
 
150
#ifdef CONFIG_ACPI
151
#endif
152
 
153
static inline int pci_read_config_dword(struct pci_dev *dev, int where,
154
                    u32 *val)
155
{
156
    *val = PciRead32(dev->busnr, dev->devfn, where);
157
    return 1;
158
}
159
 
160
int intel_opregion_setup(struct drm_device *dev)
161
{
162
	struct drm_i915_private *dev_priv = dev->dev_private;
163
	struct intel_opregion *opregion = &dev_priv->opregion;
164
	void *base;
165
	u32 asls, mboxes;
166
	int err = 0;
167
 
168
	pci_read_config_dword(dev->pdev, PCI_ASLS, &asls);
169
	DRM_DEBUG_DRIVER("graphic opregion physical addr: 0x%x\n", asls);
170
	if (asls == 0) {
171
		DRM_DEBUG_DRIVER("ACPI OpRegion not supported!\n");
172
		return -ENOTSUPP;
173
	}
174
 
175
    base = ioremap(asls, OPREGION_SIZE);
176
	if (!base)
177
		return -ENOMEM;
178
 
179
	if (memcmp(base, OPREGION_SIGNATURE, 16)) {
180
		DRM_DEBUG_DRIVER("opregion signature mismatch\n");
181
		err = -EINVAL;
182
		goto err_out;
183
	}
184
	opregion->header = base;
185
	opregion->vbt = base + OPREGION_VBT_OFFSET;
186
 
187
	opregion->lid_state = base + ACPI_CLID;
188
 
189
	mboxes = opregion->header->mboxes;
190
	if (mboxes & MBOX_ACPI) {
191
		DRM_DEBUG_DRIVER("Public ACPI methods supported\n");
192
		opregion->acpi = base + OPREGION_ACPI_OFFSET;
193
	}
194
 
195
	if (mboxes & MBOX_SWSCI) {
196
		DRM_DEBUG_DRIVER("SWSCI supported\n");
197
		opregion->swsci = base + OPREGION_SWSCI_OFFSET;
198
	}
199
	if (mboxes & MBOX_ASLE) {
200
		DRM_DEBUG_DRIVER("ASLE supported\n");
201
		opregion->asle = base + OPREGION_ASLE_OFFSET;
202
	}
203
 
204
	return 0;
205
 
206
err_out:
207
	iounmap(base);
208
	return err;
209
}