1 // SPDX-License-Identifier: GPL-2.0-only
2 /**************************************************************************
3 * Copyright (c) 2011, Intel Corporation.
6 **************************************************************************/
8 #include <linux/backlight.h>
9 #include <linux/delay.h>
13 #include "cdv_device.h"
14 #include "gma_device.h"
15 #include "intel_bios.h"
17 #include "psb_intel_reg.h"
20 #define VGA_SR_INDEX 0x3c4
21 #define VGA_SR_DATA 0x3c5
23 static void cdv_disable_vga(struct drm_device
*dev
)
30 outb(1, VGA_SR_INDEX
);
31 sr1
= inb(VGA_SR_DATA
);
32 outb(sr1
| 1<<5, VGA_SR_DATA
);
35 REG_WRITE(vga_reg
, VGA_DISP_DISABLE
);
39 static int cdv_output_init(struct drm_device
*dev
)
41 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
43 drm_mode_create_scaling_mode_property(dev
);
47 cdv_intel_crt_init(dev
, &dev_priv
->mode_dev
);
48 cdv_intel_lvds_init(dev
, &dev_priv
->mode_dev
);
50 /* These bits indicate HDMI not SDVO on CDV */
51 if (REG_READ(SDVOB
) & SDVO_DETECTED
) {
52 cdv_hdmi_init(dev
, &dev_priv
->mode_dev
, SDVOB
);
53 if (REG_READ(DP_B
) & DP_DETECTED
)
54 cdv_intel_dp_init(dev
, &dev_priv
->mode_dev
, DP_B
);
57 if (REG_READ(SDVOC
) & SDVO_DETECTED
) {
58 cdv_hdmi_init(dev
, &dev_priv
->mode_dev
, SDVOC
);
59 if (REG_READ(DP_C
) & DP_DETECTED
)
60 cdv_intel_dp_init(dev
, &dev_priv
->mode_dev
, DP_C
);
65 #ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
68 * Cedartrail Backlght Interfaces
71 static struct backlight_device
*cdv_backlight_device
;
73 static int cdv_backlight_combination_mode(struct drm_device
*dev
)
75 return REG_READ(BLC_PWM_CTL2
) & PWM_LEGACY_MODE
;
78 static u32
cdv_get_max_backlight(struct drm_device
*dev
)
80 u32 max
= REG_READ(BLC_PWM_CTL
);
83 DRM_DEBUG_KMS("LVDS Panel PWM value is 0!\n");
84 /* i915 does this, I believe which means that we should not
85 * smash PWM control as firmware will take control of it. */
90 if (cdv_backlight_combination_mode(dev
))
95 static int cdv_get_brightness(struct backlight_device
*bd
)
97 struct drm_device
*dev
= bl_get_data(bd
);
98 u32 val
= REG_READ(BLC_PWM_CTL
) & BACKLIGHT_DUTY_CYCLE_MASK
;
100 if (cdv_backlight_combination_mode(dev
)) {
104 pci_read_config_byte(dev
->pdev
, 0xF4, &lbpc
);
107 return (val
* 100)/cdv_get_max_backlight(dev
);
111 static int cdv_set_brightness(struct backlight_device
*bd
)
113 struct drm_device
*dev
= bl_get_data(bd
);
114 int level
= bd
->props
.brightness
;
117 /* Percentage 1-100% being valid */
121 level
*= cdv_get_max_backlight(dev
);
124 if (cdv_backlight_combination_mode(dev
)) {
125 u32 max
= cdv_get_max_backlight(dev
);
128 lbpc
= level
* 0xfe / max
+ 1;
131 pci_write_config_byte(dev
->pdev
, 0xF4, lbpc
);
134 blc_pwm_ctl
= REG_READ(BLC_PWM_CTL
) & ~BACKLIGHT_DUTY_CYCLE_MASK
;
135 REG_WRITE(BLC_PWM_CTL
, (blc_pwm_ctl
|
136 (level
<< BACKLIGHT_DUTY_CYCLE_SHIFT
)));
140 static const struct backlight_ops cdv_ops
= {
141 .get_brightness
= cdv_get_brightness
,
142 .update_status
= cdv_set_brightness
,
145 static int cdv_backlight_init(struct drm_device
*dev
)
147 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
148 struct backlight_properties props
;
150 memset(&props
, 0, sizeof(struct backlight_properties
));
151 props
.max_brightness
= 100;
152 props
.type
= BACKLIGHT_PLATFORM
;
154 cdv_backlight_device
= backlight_device_register("psb-bl",
155 NULL
, (void *)dev
, &cdv_ops
, &props
);
156 if (IS_ERR(cdv_backlight_device
))
157 return PTR_ERR(cdv_backlight_device
);
159 cdv_backlight_device
->props
.brightness
=
160 cdv_get_brightness(cdv_backlight_device
);
161 backlight_update_status(cdv_backlight_device
);
162 dev_priv
->backlight_device
= cdv_backlight_device
;
163 dev_priv
->backlight_enabled
= true;
170 * Provide the Cedarview specific chip logic and low level methods
171 * for power management
173 * FIXME: we need to implement the apm/ospm base management bits
174 * for this and the MID devices.
177 static inline u32
CDV_MSG_READ32(int domain
, uint port
, uint offset
)
179 int mcr
= (0x10<<24) | (port
<< 16) | (offset
<< 8);
180 uint32_t ret_val
= 0;
181 struct pci_dev
*pci_root
= pci_get_domain_bus_and_slot(domain
, 0, 0);
182 pci_write_config_dword(pci_root
, 0xD0, mcr
);
183 pci_read_config_dword(pci_root
, 0xD4, &ret_val
);
184 pci_dev_put(pci_root
);
188 static inline void CDV_MSG_WRITE32(int domain
, uint port
, uint offset
,
191 int mcr
= (0x11<<24) | (port
<< 16) | (offset
<< 8) | 0xF0;
192 struct pci_dev
*pci_root
= pci_get_domain_bus_and_slot(domain
, 0, 0);
193 pci_write_config_dword(pci_root
, 0xD4, value
);
194 pci_write_config_dword(pci_root
, 0xD0, mcr
);
195 pci_dev_put(pci_root
);
198 #define PSB_PM_SSC 0x20
199 #define PSB_PM_SSS 0x30
200 #define PSB_PWRGT_GFX_ON 0x02
201 #define PSB_PWRGT_GFX_OFF 0x01
202 #define PSB_PWRGT_GFX_D0 0x00
203 #define PSB_PWRGT_GFX_D3 0x03
205 static void cdv_init_pm(struct drm_device
*dev
)
207 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
209 int domain
= pci_domain_nr(dev
->pdev
->bus
);
212 dev_priv
->apm_base
= CDV_MSG_READ32(domain
, PSB_PUNIT_PORT
,
214 dev_priv
->ospm_base
= CDV_MSG_READ32(domain
, PSB_PUNIT_PORT
,
215 PSB_OSPMBA
) & 0xFFFF;
218 pwr_cnt
= inl(dev_priv
->apm_base
+ PSB_APM_CMD
);
221 pwr_cnt
&= ~PSB_PWRGT_GFX_MASK
;
222 pwr_cnt
|= PSB_PWRGT_GFX_ON
;
223 outl(pwr_cnt
, dev_priv
->apm_base
+ PSB_APM_CMD
);
225 /* Wait for the GPU power */
226 for (i
= 0; i
< 5; i
++) {
227 u32 pwr_sts
= inl(dev_priv
->apm_base
+ PSB_APM_STS
);
228 if ((pwr_sts
& PSB_PWRGT_GFX_MASK
) == 0)
232 dev_err(dev
->dev
, "GPU: power management timed out.\n");
235 static void cdv_errata(struct drm_device
*dev
)
237 /* Disable bonus launch.
238 * CPU and GPU competes for memory and display misses updates and
239 * flickers. Worst with dual core, dual displays.
241 * Fixes were done to Win 7 gfx driver to disable a feature called
242 * Bonus Launch to work around the issue, by degrading
245 CDV_MSG_WRITE32(pci_domain_nr(dev
->pdev
->bus
), 3, 0x30, 0x08027108);
249 * cdv_save_display_registers - save registers lost on suspend
250 * @dev: our DRM device
252 * Save the state we need in order to be able to restore the interface
253 * upon resume from suspend
255 static int cdv_save_display_registers(struct drm_device
*dev
)
257 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
258 struct psb_save_area
*regs
= &dev_priv
->regs
;
259 struct drm_connector
*connector
;
261 dev_dbg(dev
->dev
, "Saving GPU registers.\n");
263 pci_read_config_byte(dev
->pdev
, 0xF4, ®s
->cdv
.saveLBB
);
265 regs
->cdv
.saveDSPCLK_GATE_D
= REG_READ(DSPCLK_GATE_D
);
266 regs
->cdv
.saveRAMCLK_GATE_D
= REG_READ(RAMCLK_GATE_D
);
268 regs
->cdv
.saveDSPARB
= REG_READ(DSPARB
);
269 regs
->cdv
.saveDSPFW
[0] = REG_READ(DSPFW1
);
270 regs
->cdv
.saveDSPFW
[1] = REG_READ(DSPFW2
);
271 regs
->cdv
.saveDSPFW
[2] = REG_READ(DSPFW3
);
272 regs
->cdv
.saveDSPFW
[3] = REG_READ(DSPFW4
);
273 regs
->cdv
.saveDSPFW
[4] = REG_READ(DSPFW5
);
274 regs
->cdv
.saveDSPFW
[5] = REG_READ(DSPFW6
);
276 regs
->cdv
.saveADPA
= REG_READ(ADPA
);
278 regs
->cdv
.savePP_CONTROL
= REG_READ(PP_CONTROL
);
279 regs
->cdv
.savePFIT_PGM_RATIOS
= REG_READ(PFIT_PGM_RATIOS
);
280 regs
->saveBLC_PWM_CTL
= REG_READ(BLC_PWM_CTL
);
281 regs
->saveBLC_PWM_CTL2
= REG_READ(BLC_PWM_CTL2
);
282 regs
->cdv
.saveLVDS
= REG_READ(LVDS
);
284 regs
->cdv
.savePFIT_CONTROL
= REG_READ(PFIT_CONTROL
);
286 regs
->cdv
.savePP_ON_DELAYS
= REG_READ(PP_ON_DELAYS
);
287 regs
->cdv
.savePP_OFF_DELAYS
= REG_READ(PP_OFF_DELAYS
);
288 regs
->cdv
.savePP_CYCLE
= REG_READ(PP_CYCLE
);
290 regs
->cdv
.saveVGACNTRL
= REG_READ(VGACNTRL
);
292 regs
->cdv
.saveIER
= REG_READ(PSB_INT_ENABLE_R
);
293 regs
->cdv
.saveIMR
= REG_READ(PSB_INT_MASK_R
);
295 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
296 connector
->funcs
->dpms(connector
, DRM_MODE_DPMS_OFF
);
302 * cdv_restore_display_registers - restore lost register state
303 * @dev: our DRM device
305 * Restore register state that was lost during suspend and resume.
309 static int cdv_restore_display_registers(struct drm_device
*dev
)
311 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
312 struct psb_save_area
*regs
= &dev_priv
->regs
;
313 struct drm_connector
*connector
;
316 pci_write_config_byte(dev
->pdev
, 0xF4, regs
->cdv
.saveLBB
);
318 REG_WRITE(DSPCLK_GATE_D
, regs
->cdv
.saveDSPCLK_GATE_D
);
319 REG_WRITE(RAMCLK_GATE_D
, regs
->cdv
.saveRAMCLK_GATE_D
);
321 /* BIOS does below anyway */
322 REG_WRITE(DPIO_CFG
, 0);
323 REG_WRITE(DPIO_CFG
, DPIO_MODE_SELECT_0
| DPIO_CMN_RESET_N
);
325 temp
= REG_READ(DPLL_A
);
326 if ((temp
& DPLL_SYNCLOCK_ENABLE
) == 0) {
327 REG_WRITE(DPLL_A
, temp
| DPLL_SYNCLOCK_ENABLE
);
331 temp
= REG_READ(DPLL_B
);
332 if ((temp
& DPLL_SYNCLOCK_ENABLE
) == 0) {
333 REG_WRITE(DPLL_B
, temp
| DPLL_SYNCLOCK_ENABLE
);
339 REG_WRITE(DSPFW1
, regs
->cdv
.saveDSPFW
[0]);
340 REG_WRITE(DSPFW2
, regs
->cdv
.saveDSPFW
[1]);
341 REG_WRITE(DSPFW3
, regs
->cdv
.saveDSPFW
[2]);
342 REG_WRITE(DSPFW4
, regs
->cdv
.saveDSPFW
[3]);
343 REG_WRITE(DSPFW5
, regs
->cdv
.saveDSPFW
[4]);
344 REG_WRITE(DSPFW6
, regs
->cdv
.saveDSPFW
[5]);
346 REG_WRITE(DSPARB
, regs
->cdv
.saveDSPARB
);
347 REG_WRITE(ADPA
, regs
->cdv
.saveADPA
);
349 REG_WRITE(BLC_PWM_CTL2
, regs
->saveBLC_PWM_CTL2
);
350 REG_WRITE(LVDS
, regs
->cdv
.saveLVDS
);
351 REG_WRITE(PFIT_CONTROL
, regs
->cdv
.savePFIT_CONTROL
);
352 REG_WRITE(PFIT_PGM_RATIOS
, regs
->cdv
.savePFIT_PGM_RATIOS
);
353 REG_WRITE(BLC_PWM_CTL
, regs
->saveBLC_PWM_CTL
);
354 REG_WRITE(PP_ON_DELAYS
, regs
->cdv
.savePP_ON_DELAYS
);
355 REG_WRITE(PP_OFF_DELAYS
, regs
->cdv
.savePP_OFF_DELAYS
);
356 REG_WRITE(PP_CYCLE
, regs
->cdv
.savePP_CYCLE
);
357 REG_WRITE(PP_CONTROL
, regs
->cdv
.savePP_CONTROL
);
359 REG_WRITE(VGACNTRL
, regs
->cdv
.saveVGACNTRL
);
361 REG_WRITE(PSB_INT_ENABLE_R
, regs
->cdv
.saveIER
);
362 REG_WRITE(PSB_INT_MASK_R
, regs
->cdv
.saveIMR
);
364 /* Fix arbitration bug */
367 drm_mode_config_reset(dev
);
369 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
370 connector
->funcs
->dpms(connector
, DRM_MODE_DPMS_ON
);
372 /* Resume the modeset for every activated CRTC */
373 drm_helper_resume_force_mode(dev
);
377 static int cdv_power_down(struct drm_device
*dev
)
379 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
380 u32 pwr_cnt
, pwr_mask
, pwr_sts
;
383 pwr_cnt
= inl(dev_priv
->apm_base
+ PSB_APM_CMD
);
384 pwr_cnt
&= ~PSB_PWRGT_GFX_MASK
;
385 pwr_cnt
|= PSB_PWRGT_GFX_OFF
;
386 pwr_mask
= PSB_PWRGT_GFX_MASK
;
388 outl(pwr_cnt
, dev_priv
->apm_base
+ PSB_APM_CMD
);
391 pwr_sts
= inl(dev_priv
->apm_base
+ PSB_APM_STS
);
392 if ((pwr_sts
& pwr_mask
) == PSB_PWRGT_GFX_D3
)
399 static int cdv_power_up(struct drm_device
*dev
)
401 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
402 u32 pwr_cnt
, pwr_mask
, pwr_sts
;
405 pwr_cnt
= inl(dev_priv
->apm_base
+ PSB_APM_CMD
);
406 pwr_cnt
&= ~PSB_PWRGT_GFX_MASK
;
407 pwr_cnt
|= PSB_PWRGT_GFX_ON
;
408 pwr_mask
= PSB_PWRGT_GFX_MASK
;
410 outl(pwr_cnt
, dev_priv
->apm_base
+ PSB_APM_CMD
);
413 pwr_sts
= inl(dev_priv
->apm_base
+ PSB_APM_STS
);
414 if ((pwr_sts
& pwr_mask
) == PSB_PWRGT_GFX_D0
)
421 static void cdv_hotplug_work_func(struct work_struct
*work
)
423 struct drm_psb_private
*dev_priv
= container_of(work
, struct drm_psb_private
,
425 struct drm_device
*dev
= dev_priv
->dev
;
427 /* Just fire off a uevent and let userspace tell us what to do */
428 drm_helper_hpd_irq_event(dev
);
431 /* The core driver has received a hotplug IRQ. We are in IRQ context
432 so extract the needed information and kick off queued processing */
434 static int cdv_hotplug_event(struct drm_device
*dev
)
436 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
437 schedule_work(&dev_priv
->hotplug_work
);
438 REG_WRITE(PORT_HOTPLUG_STAT
, REG_READ(PORT_HOTPLUG_STAT
));
442 static void cdv_hotplug_enable(struct drm_device
*dev
, bool on
)
445 u32 hotplug
= REG_READ(PORT_HOTPLUG_EN
);
446 hotplug
|= HDMIB_HOTPLUG_INT_EN
| HDMIC_HOTPLUG_INT_EN
|
447 HDMID_HOTPLUG_INT_EN
| CRT_HOTPLUG_INT_EN
;
448 REG_WRITE(PORT_HOTPLUG_EN
, hotplug
);
450 REG_WRITE(PORT_HOTPLUG_EN
, 0);
451 REG_WRITE(PORT_HOTPLUG_STAT
, REG_READ(PORT_HOTPLUG_STAT
));
455 static const char *force_audio_names
[] = {
461 void cdv_intel_attach_force_audio_property(struct drm_connector
*connector
)
463 struct drm_device
*dev
= connector
->dev
;
464 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
465 struct drm_property
*prop
;
468 prop
= dev_priv
->force_audio_property
;
470 prop
= drm_property_create(dev
, DRM_MODE_PROP_ENUM
,
472 ARRAY_SIZE(force_audio_names
));
476 for (i
= 0; i
< ARRAY_SIZE(force_audio_names
); i
++)
477 drm_property_add_enum(prop
, i
-1, force_audio_names
[i
]);
479 dev_priv
->force_audio_property
= prop
;
481 drm_object_attach_property(&connector
->base
, prop
, 0);
485 static const char *broadcast_rgb_names
[] = {
490 void cdv_intel_attach_broadcast_rgb_property(struct drm_connector
*connector
)
492 struct drm_device
*dev
= connector
->dev
;
493 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
494 struct drm_property
*prop
;
497 prop
= dev_priv
->broadcast_rgb_property
;
499 prop
= drm_property_create(dev
, DRM_MODE_PROP_ENUM
,
501 ARRAY_SIZE(broadcast_rgb_names
));
505 for (i
= 0; i
< ARRAY_SIZE(broadcast_rgb_names
); i
++)
506 drm_property_add_enum(prop
, i
, broadcast_rgb_names
[i
]);
508 dev_priv
->broadcast_rgb_property
= prop
;
511 drm_object_attach_property(&connector
->base
, prop
, 0);
515 static const struct psb_offset cdv_regmap
[2] = {
523 .dpll_md
= DPLL_A_MD
,
530 .stride
= DSPASTRIDE
,
537 .linoff
= DSPALINOFF
,
538 .tileoff
= DSPATILEOFF
,
539 .palette
= PALETTE_A
,
548 .dpll_md
= DPLL_B_MD
,
555 .stride
= DSPBSTRIDE
,
562 .linoff
= DSPBLINOFF
,
563 .tileoff
= DSPBTILEOFF
,
564 .palette
= PALETTE_B
,
568 static int cdv_chip_setup(struct drm_device
*dev
)
570 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
571 INIT_WORK(&dev_priv
->hotplug_work
, cdv_hotplug_work_func
);
573 if (pci_enable_msi(dev
->pdev
))
574 dev_warn(dev
->dev
, "Enabling MSI failed!\n");
575 dev_priv
->regmap
= cdv_regmap
;
576 gma_get_core_freq(dev
);
577 psb_intel_opregion_init(dev
);
578 psb_intel_init_bios(dev
);
579 cdv_hotplug_enable(dev
, false);
583 /* CDV is much like Poulsbo but has MID like SGX offsets and PM */
585 const struct psb_ops cdv_chip_ops
= {
586 .name
= "GMA3600/3650",
589 .hdmi_mask
= (1 << 0) | (1 << 1),
590 .lvds_mask
= (1 << 1),
591 .sdvo_mask
= (1 << 0),
592 .cursor_needs_phys
= 0,
593 .sgx_offset
= MRST_SGX_OFFSET
,
594 .chip_setup
= cdv_chip_setup
,
595 .errata
= cdv_errata
,
597 .crtc_helper
= &cdv_intel_helper_funcs
,
598 .crtc_funcs
= &cdv_intel_crtc_funcs
,
599 .clock_funcs
= &cdv_clock_funcs
,
601 .output_init
= cdv_output_init
,
602 .hotplug
= cdv_hotplug_event
,
603 .hotplug_enable
= cdv_hotplug_enable
,
605 #ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
606 .backlight_init
= cdv_backlight_init
,
609 .init_pm
= cdv_init_pm
,
610 .save_regs
= cdv_save_display_registers
,
611 .restore_regs
= cdv_restore_display_registers
,
612 .save_crtc
= gma_crtc_save
,
613 .restore_crtc
= gma_crtc_restore
,
614 .power_down
= cdv_power_down
,
615 .power_up
= cdv_power_up
,
616 .update_wm
= cdv_update_wm
,
617 .disable_sr
= cdv_disable_sr
,