1 /**************************************************************************
2 * Copyright (c) 2011, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 **************************************************************************/
20 #include <linux/backlight.h>
23 #include <drm/gma_drm.h>
26 #include "psb_intel_reg.h"
27 #include "intel_bios.h"
28 #include "cdv_device.h"
29 #include "gma_device.h"
31 #define VGA_SR_INDEX 0x3c4
32 #define VGA_SR_DATA 0x3c5
34 static void cdv_disable_vga(struct drm_device
*dev
)
41 outb(1, VGA_SR_INDEX
);
42 sr1
= inb(VGA_SR_DATA
);
43 outb(sr1
| 1<<5, VGA_SR_DATA
);
46 REG_WRITE(vga_reg
, VGA_DISP_DISABLE
);
50 static int cdv_output_init(struct drm_device
*dev
)
52 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
54 drm_mode_create_scaling_mode_property(dev
);
58 cdv_intel_crt_init(dev
, &dev_priv
->mode_dev
);
59 cdv_intel_lvds_init(dev
, &dev_priv
->mode_dev
);
61 /* These bits indicate HDMI not SDVO on CDV */
62 if (REG_READ(SDVOB
) & SDVO_DETECTED
) {
63 cdv_hdmi_init(dev
, &dev_priv
->mode_dev
, SDVOB
);
64 if (REG_READ(DP_B
) & DP_DETECTED
)
65 cdv_intel_dp_init(dev
, &dev_priv
->mode_dev
, DP_B
);
68 if (REG_READ(SDVOC
) & SDVO_DETECTED
) {
69 cdv_hdmi_init(dev
, &dev_priv
->mode_dev
, SDVOC
);
70 if (REG_READ(DP_C
) & DP_DETECTED
)
71 cdv_intel_dp_init(dev
, &dev_priv
->mode_dev
, DP_C
);
76 #ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
79 * Cedartrail Backlght Interfaces
82 static struct backlight_device
*cdv_backlight_device
;
84 static int cdv_backlight_combination_mode(struct drm_device
*dev
)
86 return REG_READ(BLC_PWM_CTL2
) & PWM_LEGACY_MODE
;
89 static u32
cdv_get_max_backlight(struct drm_device
*dev
)
91 u32 max
= REG_READ(BLC_PWM_CTL
);
94 DRM_DEBUG_KMS("LVDS Panel PWM value is 0!\n");
95 /* i915 does this, I believe which means that we should not
96 * smash PWM control as firmware will take control of it. */
101 if (cdv_backlight_combination_mode(dev
))
106 static int cdv_get_brightness(struct backlight_device
*bd
)
108 struct drm_device
*dev
= bl_get_data(bd
);
109 u32 val
= REG_READ(BLC_PWM_CTL
) & BACKLIGHT_DUTY_CYCLE_MASK
;
111 if (cdv_backlight_combination_mode(dev
)) {
115 pci_read_config_byte(dev
->pdev
, 0xF4, &lbpc
);
118 return (val
* 100)/cdv_get_max_backlight(dev
);
122 static int cdv_set_brightness(struct backlight_device
*bd
)
124 struct drm_device
*dev
= bl_get_data(bd
);
125 int level
= bd
->props
.brightness
;
128 /* Percentage 1-100% being valid */
132 level
*= cdv_get_max_backlight(dev
);
135 if (cdv_backlight_combination_mode(dev
)) {
136 u32 max
= cdv_get_max_backlight(dev
);
139 lbpc
= level
* 0xfe / max
+ 1;
142 pci_write_config_byte(dev
->pdev
, 0xF4, lbpc
);
145 blc_pwm_ctl
= REG_READ(BLC_PWM_CTL
) & ~BACKLIGHT_DUTY_CYCLE_MASK
;
146 REG_WRITE(BLC_PWM_CTL
, (blc_pwm_ctl
|
147 (level
<< BACKLIGHT_DUTY_CYCLE_SHIFT
)));
151 static const struct backlight_ops cdv_ops
= {
152 .get_brightness
= cdv_get_brightness
,
153 .update_status
= cdv_set_brightness
,
156 static int cdv_backlight_init(struct drm_device
*dev
)
158 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
159 struct backlight_properties props
;
161 memset(&props
, 0, sizeof(struct backlight_properties
));
162 props
.max_brightness
= 100;
163 props
.type
= BACKLIGHT_PLATFORM
;
165 cdv_backlight_device
= backlight_device_register("psb-bl",
166 NULL
, (void *)dev
, &cdv_ops
, &props
);
167 if (IS_ERR(cdv_backlight_device
))
168 return PTR_ERR(cdv_backlight_device
);
170 cdv_backlight_device
->props
.brightness
=
171 cdv_get_brightness(cdv_backlight_device
);
172 backlight_update_status(cdv_backlight_device
);
173 dev_priv
->backlight_device
= cdv_backlight_device
;
174 dev_priv
->backlight_enabled
= true;
181 * Provide the Cedarview specific chip logic and low level methods
182 * for power management
184 * FIXME: we need to implement the apm/ospm base management bits
185 * for this and the MID devices.
188 static inline u32
CDV_MSG_READ32(int domain
, uint port
, uint offset
)
190 int mcr
= (0x10<<24) | (port
<< 16) | (offset
<< 8);
191 uint32_t ret_val
= 0;
192 struct pci_dev
*pci_root
= pci_get_domain_bus_and_slot(domain
, 0, 0);
193 pci_write_config_dword(pci_root
, 0xD0, mcr
);
194 pci_read_config_dword(pci_root
, 0xD4, &ret_val
);
195 pci_dev_put(pci_root
);
199 static inline void CDV_MSG_WRITE32(int domain
, uint port
, uint offset
,
202 int mcr
= (0x11<<24) | (port
<< 16) | (offset
<< 8) | 0xF0;
203 struct pci_dev
*pci_root
= pci_get_domain_bus_and_slot(domain
, 0, 0);
204 pci_write_config_dword(pci_root
, 0xD4, value
);
205 pci_write_config_dword(pci_root
, 0xD0, mcr
);
206 pci_dev_put(pci_root
);
209 #define PSB_PM_SSC 0x20
210 #define PSB_PM_SSS 0x30
211 #define PSB_PWRGT_GFX_ON 0x02
212 #define PSB_PWRGT_GFX_OFF 0x01
213 #define PSB_PWRGT_GFX_D0 0x00
214 #define PSB_PWRGT_GFX_D3 0x03
216 static void cdv_init_pm(struct drm_device
*dev
)
218 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
220 int domain
= pci_domain_nr(dev
->pdev
->bus
);
223 dev_priv
->apm_base
= CDV_MSG_READ32(domain
, PSB_PUNIT_PORT
,
225 dev_priv
->ospm_base
= CDV_MSG_READ32(domain
, PSB_PUNIT_PORT
,
226 PSB_OSPMBA
) & 0xFFFF;
229 pwr_cnt
= inl(dev_priv
->apm_base
+ PSB_APM_CMD
);
232 pwr_cnt
&= ~PSB_PWRGT_GFX_MASK
;
233 pwr_cnt
|= PSB_PWRGT_GFX_ON
;
234 outl(pwr_cnt
, dev_priv
->apm_base
+ PSB_APM_CMD
);
236 /* Wait for the GPU power */
237 for (i
= 0; i
< 5; i
++) {
238 u32 pwr_sts
= inl(dev_priv
->apm_base
+ PSB_APM_STS
);
239 if ((pwr_sts
& PSB_PWRGT_GFX_MASK
) == 0)
243 dev_err(dev
->dev
, "GPU: power management timed out.\n");
246 static void cdv_errata(struct drm_device
*dev
)
248 /* Disable bonus launch.
249 * CPU and GPU competes for memory and display misses updates and
250 * flickers. Worst with dual core, dual displays.
252 * Fixes were done to Win 7 gfx driver to disable a feature called
253 * Bonus Launch to work around the issue, by degrading
256 CDV_MSG_WRITE32(pci_domain_nr(dev
->pdev
->bus
), 3, 0x30, 0x08027108);
260 * cdv_save_display_registers - save registers lost on suspend
261 * @dev: our DRM device
263 * Save the state we need in order to be able to restore the interface
264 * upon resume from suspend
266 static int cdv_save_display_registers(struct drm_device
*dev
)
268 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
269 struct psb_save_area
*regs
= &dev_priv
->regs
;
270 struct drm_connector
*connector
;
272 dev_dbg(dev
->dev
, "Saving GPU registers.\n");
274 pci_read_config_byte(dev
->pdev
, 0xF4, ®s
->cdv
.saveLBB
);
276 regs
->cdv
.saveDSPCLK_GATE_D
= REG_READ(DSPCLK_GATE_D
);
277 regs
->cdv
.saveRAMCLK_GATE_D
= REG_READ(RAMCLK_GATE_D
);
279 regs
->cdv
.saveDSPARB
= REG_READ(DSPARB
);
280 regs
->cdv
.saveDSPFW
[0] = REG_READ(DSPFW1
);
281 regs
->cdv
.saveDSPFW
[1] = REG_READ(DSPFW2
);
282 regs
->cdv
.saveDSPFW
[2] = REG_READ(DSPFW3
);
283 regs
->cdv
.saveDSPFW
[3] = REG_READ(DSPFW4
);
284 regs
->cdv
.saveDSPFW
[4] = REG_READ(DSPFW5
);
285 regs
->cdv
.saveDSPFW
[5] = REG_READ(DSPFW6
);
287 regs
->cdv
.saveADPA
= REG_READ(ADPA
);
289 regs
->cdv
.savePP_CONTROL
= REG_READ(PP_CONTROL
);
290 regs
->cdv
.savePFIT_PGM_RATIOS
= REG_READ(PFIT_PGM_RATIOS
);
291 regs
->saveBLC_PWM_CTL
= REG_READ(BLC_PWM_CTL
);
292 regs
->saveBLC_PWM_CTL2
= REG_READ(BLC_PWM_CTL2
);
293 regs
->cdv
.saveLVDS
= REG_READ(LVDS
);
295 regs
->cdv
.savePFIT_CONTROL
= REG_READ(PFIT_CONTROL
);
297 regs
->cdv
.savePP_ON_DELAYS
= REG_READ(PP_ON_DELAYS
);
298 regs
->cdv
.savePP_OFF_DELAYS
= REG_READ(PP_OFF_DELAYS
);
299 regs
->cdv
.savePP_CYCLE
= REG_READ(PP_CYCLE
);
301 regs
->cdv
.saveVGACNTRL
= REG_READ(VGACNTRL
);
303 regs
->cdv
.saveIER
= REG_READ(PSB_INT_ENABLE_R
);
304 regs
->cdv
.saveIMR
= REG_READ(PSB_INT_MASK_R
);
306 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
307 connector
->funcs
->dpms(connector
, DRM_MODE_DPMS_OFF
);
313 * cdv_restore_display_registers - restore lost register state
314 * @dev: our DRM device
316 * Restore register state that was lost during suspend and resume.
320 static int cdv_restore_display_registers(struct drm_device
*dev
)
322 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
323 struct psb_save_area
*regs
= &dev_priv
->regs
;
324 struct drm_connector
*connector
;
327 pci_write_config_byte(dev
->pdev
, 0xF4, regs
->cdv
.saveLBB
);
329 REG_WRITE(DSPCLK_GATE_D
, regs
->cdv
.saveDSPCLK_GATE_D
);
330 REG_WRITE(RAMCLK_GATE_D
, regs
->cdv
.saveRAMCLK_GATE_D
);
332 /* BIOS does below anyway */
333 REG_WRITE(DPIO_CFG
, 0);
334 REG_WRITE(DPIO_CFG
, DPIO_MODE_SELECT_0
| DPIO_CMN_RESET_N
);
336 temp
= REG_READ(DPLL_A
);
337 if ((temp
& DPLL_SYNCLOCK_ENABLE
) == 0) {
338 REG_WRITE(DPLL_A
, temp
| DPLL_SYNCLOCK_ENABLE
);
342 temp
= REG_READ(DPLL_B
);
343 if ((temp
& DPLL_SYNCLOCK_ENABLE
) == 0) {
344 REG_WRITE(DPLL_B
, temp
| DPLL_SYNCLOCK_ENABLE
);
350 REG_WRITE(DSPFW1
, regs
->cdv
.saveDSPFW
[0]);
351 REG_WRITE(DSPFW2
, regs
->cdv
.saveDSPFW
[1]);
352 REG_WRITE(DSPFW3
, regs
->cdv
.saveDSPFW
[2]);
353 REG_WRITE(DSPFW4
, regs
->cdv
.saveDSPFW
[3]);
354 REG_WRITE(DSPFW5
, regs
->cdv
.saveDSPFW
[4]);
355 REG_WRITE(DSPFW6
, regs
->cdv
.saveDSPFW
[5]);
357 REG_WRITE(DSPARB
, regs
->cdv
.saveDSPARB
);
358 REG_WRITE(ADPA
, regs
->cdv
.saveADPA
);
360 REG_WRITE(BLC_PWM_CTL2
, regs
->saveBLC_PWM_CTL2
);
361 REG_WRITE(LVDS
, regs
->cdv
.saveLVDS
);
362 REG_WRITE(PFIT_CONTROL
, regs
->cdv
.savePFIT_CONTROL
);
363 REG_WRITE(PFIT_PGM_RATIOS
, regs
->cdv
.savePFIT_PGM_RATIOS
);
364 REG_WRITE(BLC_PWM_CTL
, regs
->saveBLC_PWM_CTL
);
365 REG_WRITE(PP_ON_DELAYS
, regs
->cdv
.savePP_ON_DELAYS
);
366 REG_WRITE(PP_OFF_DELAYS
, regs
->cdv
.savePP_OFF_DELAYS
);
367 REG_WRITE(PP_CYCLE
, regs
->cdv
.savePP_CYCLE
);
368 REG_WRITE(PP_CONTROL
, regs
->cdv
.savePP_CONTROL
);
370 REG_WRITE(VGACNTRL
, regs
->cdv
.saveVGACNTRL
);
372 REG_WRITE(PSB_INT_ENABLE_R
, regs
->cdv
.saveIER
);
373 REG_WRITE(PSB_INT_MASK_R
, regs
->cdv
.saveIMR
);
375 /* Fix arbitration bug */
378 drm_mode_config_reset(dev
);
380 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
381 connector
->funcs
->dpms(connector
, DRM_MODE_DPMS_ON
);
383 /* Resume the modeset for every activated CRTC */
384 drm_helper_resume_force_mode(dev
);
388 static int cdv_power_down(struct drm_device
*dev
)
390 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
391 u32 pwr_cnt
, pwr_mask
, pwr_sts
;
394 pwr_cnt
= inl(dev_priv
->apm_base
+ PSB_APM_CMD
);
395 pwr_cnt
&= ~PSB_PWRGT_GFX_MASK
;
396 pwr_cnt
|= PSB_PWRGT_GFX_OFF
;
397 pwr_mask
= PSB_PWRGT_GFX_MASK
;
399 outl(pwr_cnt
, dev_priv
->apm_base
+ PSB_APM_CMD
);
402 pwr_sts
= inl(dev_priv
->apm_base
+ PSB_APM_STS
);
403 if ((pwr_sts
& pwr_mask
) == PSB_PWRGT_GFX_D3
)
410 static int cdv_power_up(struct drm_device
*dev
)
412 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
413 u32 pwr_cnt
, pwr_mask
, pwr_sts
;
416 pwr_cnt
= inl(dev_priv
->apm_base
+ PSB_APM_CMD
);
417 pwr_cnt
&= ~PSB_PWRGT_GFX_MASK
;
418 pwr_cnt
|= PSB_PWRGT_GFX_ON
;
419 pwr_mask
= PSB_PWRGT_GFX_MASK
;
421 outl(pwr_cnt
, dev_priv
->apm_base
+ PSB_APM_CMD
);
424 pwr_sts
= inl(dev_priv
->apm_base
+ PSB_APM_STS
);
425 if ((pwr_sts
& pwr_mask
) == PSB_PWRGT_GFX_D0
)
432 static void cdv_hotplug_work_func(struct work_struct
*work
)
434 struct drm_psb_private
*dev_priv
= container_of(work
, struct drm_psb_private
,
436 struct drm_device
*dev
= dev_priv
->dev
;
438 /* Just fire off a uevent and let userspace tell us what to do */
439 drm_helper_hpd_irq_event(dev
);
442 /* The core driver has received a hotplug IRQ. We are in IRQ context
443 so extract the needed information and kick off queued processing */
445 static int cdv_hotplug_event(struct drm_device
*dev
)
447 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
448 schedule_work(&dev_priv
->hotplug_work
);
449 REG_WRITE(PORT_HOTPLUG_STAT
, REG_READ(PORT_HOTPLUG_STAT
));
453 static void cdv_hotplug_enable(struct drm_device
*dev
, bool on
)
456 u32 hotplug
= REG_READ(PORT_HOTPLUG_EN
);
457 hotplug
|= HDMIB_HOTPLUG_INT_EN
| HDMIC_HOTPLUG_INT_EN
|
458 HDMID_HOTPLUG_INT_EN
| CRT_HOTPLUG_INT_EN
;
459 REG_WRITE(PORT_HOTPLUG_EN
, hotplug
);
461 REG_WRITE(PORT_HOTPLUG_EN
, 0);
462 REG_WRITE(PORT_HOTPLUG_STAT
, REG_READ(PORT_HOTPLUG_STAT
));
466 static const char *force_audio_names
[] = {
472 void cdv_intel_attach_force_audio_property(struct drm_connector
*connector
)
474 struct drm_device
*dev
= connector
->dev
;
475 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
476 struct drm_property
*prop
;
479 prop
= dev_priv
->force_audio_property
;
481 prop
= drm_property_create(dev
, DRM_MODE_PROP_ENUM
,
483 ARRAY_SIZE(force_audio_names
));
487 for (i
= 0; i
< ARRAY_SIZE(force_audio_names
); i
++)
488 drm_property_add_enum(prop
, i
-1, force_audio_names
[i
]);
490 dev_priv
->force_audio_property
= prop
;
492 drm_object_attach_property(&connector
->base
, prop
, 0);
496 static const char *broadcast_rgb_names
[] = {
501 void cdv_intel_attach_broadcast_rgb_property(struct drm_connector
*connector
)
503 struct drm_device
*dev
= connector
->dev
;
504 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
505 struct drm_property
*prop
;
508 prop
= dev_priv
->broadcast_rgb_property
;
510 prop
= drm_property_create(dev
, DRM_MODE_PROP_ENUM
,
512 ARRAY_SIZE(broadcast_rgb_names
));
516 for (i
= 0; i
< ARRAY_SIZE(broadcast_rgb_names
); i
++)
517 drm_property_add_enum(prop
, i
, broadcast_rgb_names
[i
]);
519 dev_priv
->broadcast_rgb_property
= prop
;
522 drm_object_attach_property(&connector
->base
, prop
, 0);
526 static const struct psb_offset cdv_regmap
[2] = {
534 .dpll_md
= DPLL_A_MD
,
541 .stride
= DSPASTRIDE
,
548 .linoff
= DSPALINOFF
,
549 .tileoff
= DSPATILEOFF
,
550 .palette
= PALETTE_A
,
559 .dpll_md
= DPLL_B_MD
,
566 .stride
= DSPBSTRIDE
,
573 .linoff
= DSPBLINOFF
,
574 .tileoff
= DSPBTILEOFF
,
575 .palette
= PALETTE_B
,
579 static int cdv_chip_setup(struct drm_device
*dev
)
581 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
582 INIT_WORK(&dev_priv
->hotplug_work
, cdv_hotplug_work_func
);
584 if (pci_enable_msi(dev
->pdev
))
585 dev_warn(dev
->dev
, "Enabling MSI failed!\n");
586 dev_priv
->regmap
= cdv_regmap
;
587 gma_get_core_freq(dev
);
588 psb_intel_opregion_init(dev
);
589 psb_intel_init_bios(dev
);
590 cdv_hotplug_enable(dev
, false);
594 /* CDV is much like Poulsbo but has MID like SGX offsets and PM */
596 const struct psb_ops cdv_chip_ops
= {
597 .name
= "GMA3600/3650",
601 .hdmi_mask
= (1 << 0) | (1 << 1),
602 .lvds_mask
= (1 << 1),
603 .sdvo_mask
= (1 << 0),
604 .cursor_needs_phys
= 0,
605 .sgx_offset
= MRST_SGX_OFFSET
,
606 .chip_setup
= cdv_chip_setup
,
607 .errata
= cdv_errata
,
609 .crtc_helper
= &cdv_intel_helper_funcs
,
610 .crtc_funcs
= &cdv_intel_crtc_funcs
,
611 .clock_funcs
= &cdv_clock_funcs
,
613 .output_init
= cdv_output_init
,
614 .hotplug
= cdv_hotplug_event
,
615 .hotplug_enable
= cdv_hotplug_enable
,
617 #ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
618 .backlight_init
= cdv_backlight_init
,
621 .init_pm
= cdv_init_pm
,
622 .save_regs
= cdv_save_display_registers
,
623 .restore_regs
= cdv_restore_display_registers
,
624 .save_crtc
= gma_crtc_save
,
625 .restore_crtc
= gma_crtc_restore
,
626 .power_down
= cdv_power_down
,
627 .power_up
= cdv_power_up
,
628 .update_wm
= cdv_update_wm
,
629 .disable_sr
= cdv_disable_sr
,