1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/mmio.h>
4 #include <console/console.h>
5 #include <device/device.h>
6 #include <device/pci.h>
7 #include <device/pci_ids.h>
8 #include <drivers/intel/gma/edid.h>
9 #include <drivers/intel/gma/opregion.h>
10 #include <drivers/intel/gma/libgfxinit.h>
12 #include <device/pci_ops.h>
13 #include <commonlib/helpers.h>
16 #include "drivers/intel/gma/i915_reg.h"
20 static struct resource
*gtt_res
= NULL
;
24 return read32(res2mmio(gtt_res
, reg
, 0));
27 void gtt_write(u32 reg
, u32 data
)
29 write32(res2mmio(gtt_res
, reg
, 0), data
);
32 static const char *gm45_get_lvds_edid_str(void)
35 u8 edid_data_lvds
[128];
36 struct edid edid_lvds
;
37 static char edid_str
[EDID_ASCII_STRING_LENGTH
+ 1];
42 printk(BIOS_ERR
, "Never call %s() outside dev.init() context.\n", __func__
);
45 mmio
= res2mmio(gtt_res
, 0, 0);
47 printk(BIOS_DEBUG
, "LVDS EDID\n");
48 intel_gmbus_read_edid(mmio
+ GMBUS0
, GMBUS_PORT_PANEL
, 0x50,
49 edid_data_lvds
, sizeof(edid_data_lvds
));
50 intel_gmbus_stop(mmio
+ GMBUS0
);
52 if (decode_edid(edid_data_lvds
, sizeof(edid_data_lvds
), &edid_lvds
)
55 memcpy(edid_str
, edid_lvds
.ascii_string
, sizeof(edid_str
));
59 static u32
get_cdclk(struct device
*const dev
)
61 const u16 cdclk_sel
= pci_read_config16(dev
, GCFGC_OFFSET
) & GCFGC_CD_MASK
;
63 switch (mchbar_read8(HPLLVCO_MCHBAR
) & 0x7) {
67 return cdclk_sel
? 333333333 : 222222222;
69 return cdclk_sel
? 320000000 : 228571429;
72 "Unknown VCO frequency, using default cdclk.\n");
77 static u32
freq_to_blc_pwm_ctl(struct device
*const dev
,
78 u16 pwm_freq
, u8 duty_perc
)
82 blc_mod
= get_cdclk(dev
) / (128 * pwm_freq
);
85 return (blc_mod
<< 16) | (blc_mod
* duty_perc
/ 100);
87 return (blc_mod
<< 16) | blc_mod
;
90 u16
get_blc_pwm_freq_value(void)
92 static u16 blc_pwm_freq
;
93 const struct blc_pwm_t
*blc_pwm
;
100 const char *const edid_ascii_string
= gm45_get_lvds_edid_str();
101 if (!edid_ascii_string
) {
102 printk(BIOS_ERR
, "Need LVDS EDID string to derive backlight PWM frequency!\n");
106 blc_array_len
= get_blc_values(&blc_pwm
);
107 /* Find EDID string and pwm freq in lookup table */
108 for (i
= 0; i
< blc_array_len
; i
++) {
109 if (!strcmp(blc_pwm
[i
].ascii_string
, edid_ascii_string
)) {
110 blc_pwm_freq
= blc_pwm
[i
].pwm_freq
;
111 printk(BIOS_DEBUG
, "Found EDID string: %s in lookup table, pwm: %dHz\n",
112 blc_pwm
[i
].ascii_string
, blc_pwm_freq
);
117 if (i
== blc_array_len
)
118 printk(BIOS_NOTICE
, "Your panel's EDID `%s` wasn't found in the lookup table.\n"
119 "You may have issues with your panel's backlight.\n"
120 "If you want to help improving coreboot please report: this EDID string\n"
121 "and the result of `intel_reg read BLC_PWM_CTL` (from intel-gpu-tools)\n"
122 "while running vendor BIOS\n",
128 static void gma_pm_init_post_vbios(struct device
*const dev
)
130 const struct northbridge_intel_gm45_config
*const conf
= dev
->chip_info
;
136 /* Setup Panel Power On Delays */
137 reg32
= gtt_read(PP_ON_DELAYS
);
139 reg32
= (conf
->gpu_panel_power_up_delay
& 0x1fff) << 16;
140 reg32
|= (conf
->gpu_panel_power_backlight_on_delay
& 0x1fff);
141 gtt_write(PP_ON_DELAYS
, reg32
);
144 /* Setup Panel Power Off Delays */
145 reg32
= gtt_read(PP_OFF_DELAYS
);
147 reg32
= (conf
->gpu_panel_power_down_delay
& 0x1fff) << 16;
148 reg32
|= (conf
->gpu_panel_power_backlight_off_delay
& 0x1fff);
149 gtt_write(PP_OFF_DELAYS
, reg32
);
152 /* Setup Panel Power Cycle Delay */
153 if (conf
->gpu_panel_power_cycle_delay
) {
154 reg32
= (get_cdclk(dev
) / 20000 - 1)
155 << PP_REFERENCE_DIVIDER_SHIFT
;
156 reg32
|= conf
->gpu_panel_power_cycle_delay
& 0x1f;
157 gtt_write(PP_DIVISOR
, reg32
);
160 /* Enable Backlight */
161 gtt_write(BLC_PWM_CTL2
, (1 << 31));
163 if (conf
->duty_cycle
!= 0)
164 reg8
= conf
->duty_cycle
;
165 pwm_freq
= get_blc_pwm_freq_value();
166 if (pwm_freq
== 0 && conf
->default_pwm_freq
!= 0)
167 pwm_freq
= conf
->default_pwm_freq
;
170 gtt_write(BLC_PWM_CTL
, 0x06100610);
172 gtt_write(BLC_PWM_CTL
, freq_to_blc_pwm_ctl(dev
, pwm_freq
,
176 static void gma_func0_init(struct device
*dev
)
178 const struct northbridge_intel_gm45_config
*const conf
= dev
->chip_info
;
180 /* Probe MMIO resource first. It's needed even for
181 intel_gma_init_igd_opregion() which may call back. */
182 gtt_res
= probe_resource(dev
, PCI_BASE_ADDRESS_0
);
186 intel_gma_init_igd_opregion();
189 * GTT base is at a 2M offset and is 2M big. If GTT is smaller than 2M
190 * cycles are simply not decoded which is fine.
192 pci_or_config16(dev
, PCI_COMMAND
, PCI_COMMAND_MASTER
);
193 memset(res2mmio(gtt_res
, 2*MiB
, 0), 0, 2*MiB
);
195 if (CONFIG(NO_GFX_INIT
))
196 pci_and_config16(dev
, PCI_COMMAND
, ~PCI_COMMAND_MASTER
);
198 if (!CONFIG(MAINBOARD_USE_LIBGFXINIT
)) {
199 /* PCI Init, will run VBIOS */
200 printk(BIOS_DEBUG
, "Initialising IGD using VBIOS\n");
204 /* Post VBIOS init */
205 gma_pm_init_post_vbios(dev
);
207 if (CONFIG(MAINBOARD_USE_LIBGFXINIT
) && !acpi_is_wakeup_s3()) {
208 int vga_disable
= (pci_read_config16(dev
, D0F0_GGC
) & 2) >> 1;
211 "IGD is not decoding legacy VGA MEM and IO: skipping NATIVE graphic init\n");
214 gma_gfxinit(&lightup_ok
);
215 /* Linux relies on VBT for panel info. */
216 generate_fake_intel_oprom(&conf
->gfx
, dev
, "$VBT CANTIGA");
221 static void gma_generate_ssdt(const struct device
*device
)
223 const struct northbridge_intel_gm45_config
*chip
= device
->chip_info
;
225 drivers_intel_gma_displays_ssdt_generate(&chip
->gfx
);
228 static const char *gma_acpi_name(const struct device
*dev
)
233 static struct device_operations gma_func0_ops
= {
234 .read_resources
= pci_dev_read_resources
,
235 .set_resources
= pci_dev_set_resources
,
236 .enable_resources
= pci_dev_enable_resources
,
237 .acpi_fill_ssdt
= gma_generate_ssdt
,
238 .init
= gma_func0_init
,
239 .ops_pci
= &pci_dev_ops_pci
,
240 .acpi_name
= gma_acpi_name
,
243 static const unsigned short pci_device_ids
[] =
248 static const struct pci_driver gma __pci_driver
= {
249 .ops
= &gma_func0_ops
,
250 .vendor
= PCI_VID_INTEL
,
251 .devices
= pci_device_ids
,