Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 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 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 28 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 29 | |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 30 | #include <linux/acpi.h> |
Michael Karcher | b705120 | 2011-01-23 18:17:17 +0000 | [diff] [blame] | 31 | #include <linux/acpi_io.h> |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 32 | #include <acpi/video.h> |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 33 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 34 | #include <drm/drmP.h> |
| 35 | #include <drm/i915_drm.h> |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 36 | #include "i915_drv.h" |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 37 | #include "intel_drv.h" |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 38 | |
| 39 | #define PCI_ASLE 0xe4 |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 40 | #define PCI_ASLS 0xfc |
| 41 | |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 42 | #define OPREGION_HEADER_OFFSET 0 |
| 43 | #define OPREGION_ACPI_OFFSET 0x100 |
Chris Wilson | 82d3c90 | 2011-02-24 18:13:42 +0000 | [diff] [blame] | 44 | #define ACPI_CLID 0x01ac /* current lid state indicator */ |
| 45 | #define ACPI_CDCK 0x01b0 /* current docking state indicator */ |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 46 | #define OPREGION_SWSCI_OFFSET 0x200 |
| 47 | #define OPREGION_ASLE_OFFSET 0x300 |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 48 | #define OPREGION_VBT_OFFSET 0x400 |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 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 { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 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]; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 64 | } __attribute__((packed)); |
| 65 | |
| 66 | /* OpRegion mailbox #1: public ACPI methods */ |
| 67 | struct opregion_acpi { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 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]; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 86 | } __attribute__((packed)); |
| 87 | |
| 88 | /* OpRegion mailbox #2: SWSCI */ |
| 89 | struct opregion_swsci { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 90 | u32 scic; /* SWSCI command|status|data */ |
| 91 | u32 parm; /* command parameters */ |
| 92 | u32 dslp; /* driver sleep time-out */ |
| 93 | u8 rsvd[244]; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 94 | } __attribute__((packed)); |
| 95 | |
| 96 | /* OpRegion mailbox #3: ASLE */ |
| 97 | struct opregion_asle { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 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]; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 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 */ |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 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) |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 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 | |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 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 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 150 | #ifdef CONFIG_ACPI |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 151 | static u32 asle_set_backlight(struct drm_device *dev, u32 bclp) |
| 152 | { |
| 153 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 154 | struct opregion_asle __iomem *asle = dev_priv->opregion.asle; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 155 | |
Jani Nikula | 749052f | 2012-10-01 14:25:30 +0300 | [diff] [blame] | 156 | DRM_DEBUG_DRIVER("bclp = 0x%08x\n", bclp); |
| 157 | |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 158 | if (!(bclp & ASLE_BCLP_VALID)) |
Chris Wilson | 862daef | 2010-08-07 11:01:32 +0100 | [diff] [blame] | 159 | return ASLE_BACKLIGHT_FAILED; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 160 | |
| 161 | bclp &= ASLE_BCLP_MSK; |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 162 | if (bclp > 255) |
Chris Wilson | 862daef | 2010-08-07 11:01:32 +0100 | [diff] [blame] | 163 | return ASLE_BACKLIGHT_FAILED; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 164 | |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame^] | 165 | intel_panel_set_backlight(dev, bclp, 255); |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 166 | iowrite32((bclp*0x64)/0xff | ASLE_CBLV_VALID, &asle->cblv); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 167 | |
| 168 | return 0; |
| 169 | } |
| 170 | |
| 171 | static 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 | |
| 178 | static 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 | |
| 191 | static 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 Wilson | 862daef | 2010-08-07 11:01:32 +0100 | [diff] [blame] | 196 | return ASLE_PFIT_FAILED; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 197 | return 0; |
| 198 | } |
| 199 | |
Chris Wilson | 3b61796 | 2010-08-24 09:02:58 +0100 | [diff] [blame] | 200 | void intel_opregion_asle_intr(struct drm_device *dev) |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 201 | { |
| 202 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 203 | struct opregion_asle __iomem *asle = dev_priv->opregion.asle; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 204 | u32 asle_stat = 0; |
| 205 | u32 asle_req; |
| 206 | |
| 207 | if (!asle) |
| 208 | return; |
| 209 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 210 | asle_req = ioread32(&asle->aslc) & ASLE_REQ_MSK; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 211 | |
| 212 | if (!asle_req) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 213 | DRM_DEBUG_DRIVER("non asle set request??\n"); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 214 | return; |
| 215 | } |
| 216 | |
| 217 | if (asle_req & ASLE_SET_ALS_ILLUM) |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 218 | asle_stat |= asle_set_als_illum(dev, ioread32(&asle->alsi)); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 219 | |
| 220 | if (asle_req & ASLE_SET_BACKLIGHT) |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 221 | asle_stat |= asle_set_backlight(dev, ioread32(&asle->bclp)); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 222 | |
| 223 | if (asle_req & ASLE_SET_PFIT) |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 224 | asle_stat |= asle_set_pfit(dev, ioread32(&asle->pfit)); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 225 | |
| 226 | if (asle_req & ASLE_SET_PWM_FREQ) |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 227 | asle_stat |= asle_set_pwm_freq(dev, ioread32(&asle->pfmb)); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 228 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 229 | iowrite32(asle_stat, &asle->aslc); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 230 | } |
| 231 | |
Chris Wilson | 3b61796 | 2010-08-24 09:02:58 +0100 | [diff] [blame] | 232 | void intel_opregion_gse_intr(struct drm_device *dev) |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 233 | { |
| 234 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 235 | struct opregion_asle __iomem *asle = dev_priv->opregion.asle; |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 236 | u32 asle_stat = 0; |
| 237 | u32 asle_req; |
| 238 | |
| 239 | if (!asle) |
| 240 | return; |
| 241 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 242 | asle_req = ioread32(&asle->aslc) & ASLE_REQ_MSK; |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 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) |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 255 | asle_stat |= asle_set_backlight(dev, ioread32(&asle->bclp)); |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 256 | |
| 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 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 267 | iowrite32(asle_stat, &asle->aslc); |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 268 | } |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 269 | #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 Wilson | 3b61796 | 2010-08-24 09:02:58 +0100 | [diff] [blame] | 274 | void intel_opregion_enable_asle(struct drm_device *dev) |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 275 | { |
| 276 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 277 | struct opregion_asle __iomem *asle = dev_priv->opregion.asle; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 278 | |
| 279 | if (asle) { |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 280 | if (IS_MOBILE(dev)) |
Zhao Yakui | 01c6688 | 2009-10-28 05:10:00 +0000 | [diff] [blame] | 281 | intel_enable_asle(dev); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 282 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 283 | iowrite32(ASLE_ALS_EN | ASLE_BLC_EN | ASLE_PFIT_EN | |
| 284 | ASLE_PFMB_EN, |
| 285 | &asle->tche); |
| 286 | iowrite32(1, &asle->ardy); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 287 | } |
| 288 | } |
| 289 | |
| 290 | #define ACPI_EV_DISPLAY_SWITCH (1<<0) |
| 291 | #define ACPI_EV_LID (1<<1) |
| 292 | #define ACPI_EV_DOCK (1<<2) |
| 293 | |
| 294 | static struct intel_opregion *system_opregion; |
| 295 | |
Hannes Eder | b358d0a | 2008-12-18 21:18:47 +0100 | [diff] [blame] | 296 | static int intel_opregion_video_event(struct notifier_block *nb, |
| 297 | unsigned long val, void *data) |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 298 | { |
| 299 | /* The only video events relevant to opregion are 0x80. These indicate |
| 300 | either a docking event, lid switch or display switch request. In |
| 301 | Linux, these are handled by the dock, button and video drivers. |
Matthew Garrett | f5a3d0c | 2011-07-12 18:30:52 -0400 | [diff] [blame] | 302 | */ |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 303 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 304 | struct opregion_acpi __iomem *acpi; |
Matthew Garrett | f5a3d0c | 2011-07-12 18:30:52 -0400 | [diff] [blame] | 305 | struct acpi_bus_event *event = data; |
| 306 | int ret = NOTIFY_OK; |
| 307 | |
| 308 | if (strcmp(event->device_class, ACPI_VIDEO_CLASS) != 0) |
| 309 | return NOTIFY_DONE; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 310 | |
| 311 | if (!system_opregion) |
| 312 | return NOTIFY_DONE; |
| 313 | |
| 314 | acpi = system_opregion->acpi; |
Matthew Garrett | f5a3d0c | 2011-07-12 18:30:52 -0400 | [diff] [blame] | 315 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 316 | if (event->type == 0x80 && |
| 317 | (ioread32(&acpi->cevt) & 1) == 0) |
Matthew Garrett | f5a3d0c | 2011-07-12 18:30:52 -0400 | [diff] [blame] | 318 | ret = NOTIFY_BAD; |
| 319 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 320 | iowrite32(0, &acpi->csts); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 321 | |
Matthew Garrett | f5a3d0c | 2011-07-12 18:30:52 -0400 | [diff] [blame] | 322 | return ret; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | static struct notifier_block intel_opregion_notifier = { |
| 326 | .notifier_call = intel_opregion_video_event, |
| 327 | }; |
| 328 | |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 329 | /* |
| 330 | * Initialise the DIDL field in opregion. This passes a list of devices to |
| 331 | * the firmware. Values are defined by section B.4.2 of the ACPI specification |
| 332 | * (version 3) |
| 333 | */ |
| 334 | |
| 335 | static void intel_didl_outputs(struct drm_device *dev) |
| 336 | { |
| 337 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 338 | struct intel_opregion *opregion = &dev_priv->opregion; |
| 339 | struct drm_connector *connector; |
Zhang Rui | 3143751 | 2010-03-29 15:12:16 +0800 | [diff] [blame] | 340 | acpi_handle handle; |
| 341 | struct acpi_device *acpi_dev, *acpi_cdev, *acpi_video_bus = NULL; |
| 342 | unsigned long long device_id; |
| 343 | acpi_status status; |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 344 | u32 temp; |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 345 | int i = 0; |
| 346 | |
Zhang Rui | 3143751 | 2010-03-29 15:12:16 +0800 | [diff] [blame] | 347 | handle = DEVICE_ACPI_HANDLE(&dev->pdev->dev); |
Yasuaki Ishimatsu | 7d37bea | 2013-02-01 10:14:20 +0900 | [diff] [blame] | 348 | if (!handle || acpi_bus_get_device(handle, &acpi_dev)) |
Zhang Rui | 3143751 | 2010-03-29 15:12:16 +0800 | [diff] [blame] | 349 | return; |
| 350 | |
| 351 | if (acpi_is_video_device(acpi_dev)) |
| 352 | acpi_video_bus = acpi_dev; |
| 353 | else { |
| 354 | list_for_each_entry(acpi_cdev, &acpi_dev->children, node) { |
| 355 | if (acpi_is_video_device(acpi_cdev)) { |
| 356 | acpi_video_bus = acpi_cdev; |
| 357 | break; |
| 358 | } |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | if (!acpi_video_bus) { |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 363 | pr_warn("No ACPI video bus found\n"); |
Zhang Rui | 3143751 | 2010-03-29 15:12:16 +0800 | [diff] [blame] | 364 | return; |
| 365 | } |
| 366 | |
| 367 | list_for_each_entry(acpi_cdev, &acpi_video_bus->children, node) { |
| 368 | if (i >= 8) { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 369 | dev_printk(KERN_ERR, &dev->pdev->dev, |
Zhang Rui | 3143751 | 2010-03-29 15:12:16 +0800 | [diff] [blame] | 370 | "More than 8 outputs detected\n"); |
| 371 | return; |
| 372 | } |
| 373 | status = |
| 374 | acpi_evaluate_integer(acpi_cdev->handle, "_ADR", |
| 375 | NULL, &device_id); |
| 376 | if (ACPI_SUCCESS(status)) { |
| 377 | if (!device_id) |
| 378 | goto blind_set; |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 379 | iowrite32((u32)(device_id & 0x0f0f), |
| 380 | &opregion->acpi->didl[i]); |
Zhang Rui | 3143751 | 2010-03-29 15:12:16 +0800 | [diff] [blame] | 381 | i++; |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | end: |
| 386 | /* If fewer than 8 outputs, the list must be null terminated */ |
| 387 | if (i < 8) |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 388 | iowrite32(0, &opregion->acpi->didl[i]); |
Zhang Rui | 3143751 | 2010-03-29 15:12:16 +0800 | [diff] [blame] | 389 | return; |
| 390 | |
| 391 | blind_set: |
| 392 | i = 0; |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 393 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 394 | int output_type = ACPI_OTHER_OUTPUT; |
| 395 | if (i >= 8) { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 396 | dev_printk(KERN_ERR, &dev->pdev->dev, |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 397 | "More than 8 outputs detected\n"); |
| 398 | return; |
| 399 | } |
| 400 | switch (connector->connector_type) { |
| 401 | case DRM_MODE_CONNECTOR_VGA: |
| 402 | case DRM_MODE_CONNECTOR_DVIA: |
| 403 | output_type = ACPI_VGA_OUTPUT; |
| 404 | break; |
| 405 | case DRM_MODE_CONNECTOR_Composite: |
| 406 | case DRM_MODE_CONNECTOR_SVIDEO: |
| 407 | case DRM_MODE_CONNECTOR_Component: |
| 408 | case DRM_MODE_CONNECTOR_9PinDIN: |
| 409 | output_type = ACPI_TV_OUTPUT; |
| 410 | break; |
| 411 | case DRM_MODE_CONNECTOR_DVII: |
| 412 | case DRM_MODE_CONNECTOR_DVID: |
| 413 | case DRM_MODE_CONNECTOR_DisplayPort: |
| 414 | case DRM_MODE_CONNECTOR_HDMIA: |
| 415 | case DRM_MODE_CONNECTOR_HDMIB: |
| 416 | output_type = ACPI_DIGITAL_OUTPUT; |
| 417 | break; |
| 418 | case DRM_MODE_CONNECTOR_LVDS: |
| 419 | output_type = ACPI_LVDS_OUTPUT; |
| 420 | break; |
| 421 | } |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 422 | temp = ioread32(&opregion->acpi->didl[i]); |
| 423 | iowrite32(temp | (1<<31) | output_type | i, |
| 424 | &opregion->acpi->didl[i]); |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 425 | i++; |
| 426 | } |
Zhang Rui | 3143751 | 2010-03-29 15:12:16 +0800 | [diff] [blame] | 427 | goto end; |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 428 | } |
| 429 | |
Lekensteyn | d627b62 | 2012-06-26 00:36:24 +0200 | [diff] [blame] | 430 | static void intel_setup_cadls(struct drm_device *dev) |
| 431 | { |
| 432 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 433 | struct intel_opregion *opregion = &dev_priv->opregion; |
| 434 | int i = 0; |
| 435 | u32 disp_id; |
| 436 | |
| 437 | /* Initialize the CADL field by duplicating the DIDL values. |
| 438 | * Technically, this is not always correct as display outputs may exist, |
| 439 | * but not active. This initialization is necessary for some Clevo |
| 440 | * laptops that check this field before processing the brightness and |
| 441 | * display switching hotkeys. Just like DIDL, CADL is NULL-terminated if |
| 442 | * there are less than eight devices. */ |
| 443 | do { |
| 444 | disp_id = ioread32(&opregion->acpi->didl[i]); |
| 445 | iowrite32(disp_id, &opregion->acpi->cadl[i]); |
| 446 | } while (++i < 8 && disp_id != 0); |
| 447 | } |
| 448 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 449 | void intel_opregion_init(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) { |
Lekensteyn | d627b62 | 2012-06-26 00:36:24 +0200 | [diff] [blame] | 458 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 459 | intel_didl_outputs(dev); |
Lekensteyn | d627b62 | 2012-06-26 00:36:24 +0200 | [diff] [blame] | 460 | intel_setup_cadls(dev); |
| 461 | } |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 462 | |
| 463 | /* Notify BIOS we are ready to handle ACPI video ext notifs. |
| 464 | * Right now, all the events are handled by the ACPI video module. |
| 465 | * We don't actually need to do anything with them. */ |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 466 | iowrite32(0, &opregion->acpi->csts); |
| 467 | iowrite32(1, &opregion->acpi->drdy); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 468 | |
| 469 | system_opregion = opregion; |
| 470 | register_acpi_notifier(&intel_opregion_notifier); |
| 471 | } |
| 472 | |
| 473 | if (opregion->asle) |
| 474 | intel_opregion_enable_asle(dev); |
| 475 | } |
| 476 | |
| 477 | void intel_opregion_fini(struct drm_device *dev) |
| 478 | { |
| 479 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 480 | struct intel_opregion *opregion = &dev_priv->opregion; |
| 481 | |
| 482 | if (!opregion->header) |
| 483 | return; |
| 484 | |
| 485 | if (opregion->acpi) { |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 486 | iowrite32(0, &opregion->acpi->drdy); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 487 | |
| 488 | system_opregion = NULL; |
| 489 | unregister_acpi_notifier(&intel_opregion_notifier); |
| 490 | } |
| 491 | |
| 492 | /* just clear all opregion memory pointers now */ |
| 493 | iounmap(opregion->header); |
| 494 | opregion->header = NULL; |
| 495 | opregion->acpi = NULL; |
| 496 | opregion->swsci = NULL; |
| 497 | opregion->asle = NULL; |
| 498 | opregion->vbt = NULL; |
| 499 | } |
| 500 | #endif |
| 501 | |
| 502 | int intel_opregion_setup(struct drm_device *dev) |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 503 | { |
| 504 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 505 | struct intel_opregion *opregion = &dev_priv->opregion; |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 506 | void __iomem *base; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 507 | u32 asls, mboxes; |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 508 | char buf[sizeof(OPREGION_SIGNATURE)]; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 509 | int err = 0; |
| 510 | |
| 511 | pci_read_config_dword(dev->pdev, PCI_ASLS, &asls); |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 512 | DRM_DEBUG_DRIVER("graphic opregion physical addr: 0x%x\n", asls); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 513 | if (asls == 0) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 514 | DRM_DEBUG_DRIVER("ACPI OpRegion not supported!\n"); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 515 | return -ENOTSUPP; |
| 516 | } |
| 517 | |
Michael Karcher | b705120 | 2011-01-23 18:17:17 +0000 | [diff] [blame] | 518 | base = acpi_os_ioremap(asls, OPREGION_SIZE); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 519 | if (!base) |
| 520 | return -ENOMEM; |
| 521 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 522 | memcpy_fromio(buf, base, sizeof(buf)); |
| 523 | |
| 524 | if (memcmp(buf, OPREGION_SIGNATURE, 16)) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 525 | DRM_DEBUG_DRIVER("opregion signature mismatch\n"); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 526 | err = -EINVAL; |
| 527 | goto err_out; |
| 528 | } |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 529 | opregion->header = base; |
| 530 | opregion->vbt = base + OPREGION_VBT_OFFSET; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 531 | |
Chris Wilson | 82d3c90 | 2011-02-24 18:13:42 +0000 | [diff] [blame] | 532 | opregion->lid_state = base + ACPI_CLID; |
Chris Wilson | 01fe9db | 2011-01-16 19:37:30 +0000 | [diff] [blame] | 533 | |
Ben Widawsky | 5bc4418 | 2012-04-16 14:07:42 -0700 | [diff] [blame] | 534 | mboxes = ioread32(&opregion->header->mboxes); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 535 | if (mboxes & MBOX_ACPI) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 536 | DRM_DEBUG_DRIVER("Public ACPI methods supported\n"); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 537 | opregion->acpi = base + OPREGION_ACPI_OFFSET; |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 538 | } |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 539 | |
| 540 | if (mboxes & MBOX_SWSCI) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 541 | DRM_DEBUG_DRIVER("SWSCI supported\n"); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 542 | opregion->swsci = base + OPREGION_SWSCI_OFFSET; |
| 543 | } |
| 544 | if (mboxes & MBOX_ASLE) { |
Zhao Yakui | 44d98a6 | 2009-10-09 11:39:40 +0800 | [diff] [blame] | 545 | DRM_DEBUG_DRIVER("ASLE supported\n"); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 546 | opregion->asle = base + OPREGION_ASLE_OFFSET; |
| 547 | } |
| 548 | |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 549 | return 0; |
| 550 | |
| 551 | err_out: |
Christoph Fritz | 30c5666 | 2010-11-01 11:32:22 +0100 | [diff] [blame] | 552 | iounmap(base); |
Matthew Garrett | 8ee1c3d | 2008-08-05 19:37:25 +0100 | [diff] [blame] | 553 | return err; |
| 554 | } |