blob: 023a5b9ee04b6e3d34eae1757f1b0ed8304c7dbb [file] [log] [blame]
Lee Leahy77ff0b12015-05-05 15:07:29 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Google Inc.
Lee Leahy32471722015-04-20 15:20:28 -07005 * Copyright (C) 2015 Intel Corp.
Lee Leahy77ff0b12015-05-05 15:07:29 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Lee Leahy77ff0b12015-05-05 15:07:29 -070015 */
16
Lee Leahy32471722015-04-20 15:20:28 -070017#include "chip.h"
Lee Leahy77ff0b12015-05-05 15:07:29 -070018#include <console/console.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070019#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
Matt DeVillier132bbe62017-07-01 13:02:47 -050022#include <drivers/intel/gma/opregion.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070023#include <reg_script.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070024#include <soc/gfx.h>
Matt DeVillier132bbe62017-07-01 13:02:47 -050025#include <soc/nvs.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070026#include <soc/pci_devs.h>
27#include <soc/ramstage.h>
28
Lee Leahy77ff0b12015-05-05 15:07:29 -070029static const struct reg_script gpu_pre_vbios_script[] = {
30 /* Make sure GFX is bus master with MMIO access */
31 REG_PCI_OR32(PCI_COMMAND, PCI_COMMAND_MASTER|PCI_COMMAND_MEMORY),
Lee Leahy77ff0b12015-05-05 15:07:29 -070032 REG_SCRIPT_END
33};
34
35static const struct reg_script gfx_post_vbios_script[] = {
Lee Leahy77ff0b12015-05-05 15:07:29 -070036 /* Set Lock bits */
Lee Leahy32471722015-04-20 15:20:28 -070037 REG_PCI_RMW32(GGC, 0xffffffff, GGC_GGCLCK),
38 REG_PCI_RMW32(GSM_BASE, 0xffffffff, GSM_BDSM_LOCK),
39 REG_PCI_RMW32(GTT_BASE, 0xffffffff, GTT_BGSM_LOCK),
Lee Leahy77ff0b12015-05-05 15:07:29 -070040 REG_SCRIPT_END
41};
42
Elyes HAOUASb13fac32018-05-24 22:29:44 +020043static inline void gfx_run_script(struct device *dev,
44 const struct reg_script *ops)
Lee Leahy77ff0b12015-05-05 15:07:29 -070045{
46 reg_script_run_on_dev(dev, ops);
47}
48
Elyes HAOUASb13fac32018-05-24 22:29:44 +020049static void gfx_pre_vbios_init(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070050{
Elyes HAOUASa342f392018-10-17 10:56:26 +020051 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -070052 __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -070053 printk(BIOS_INFO, "GFX: Pre VBIOS Init\n");
54 gfx_run_script(dev, gpu_pre_vbios_script);
55}
56
Elyes HAOUASb13fac32018-05-24 22:29:44 +020057static void gfx_post_vbios_init(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070058{
Elyes HAOUASa342f392018-10-17 10:56:26 +020059 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -070060 __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -070061 printk(BIOS_INFO, "GFX: Post VBIOS Init\n");
62 gfx_run_script(dev, gfx_post_vbios_script);
63}
64
Elyes HAOUASb13fac32018-05-24 22:29:44 +020065static void gfx_init(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070066{
Elyes HAOUASa342f392018-10-17 10:56:26 +020067 printk(BIOS_SPEW, "%s/%s (%s)\n",
Lee Leahy32471722015-04-20 15:20:28 -070068 __FILE__, __func__, dev_name(dev));
69
Matt DeVilliera9492a62018-06-20 00:40:48 -050070 if (!IS_ENABLED(CONFIG_RUN_FSP_GOP)) {
71 /* Pre VBIOS Init */
72 gfx_pre_vbios_init(dev);
Lee Leahy77ff0b12015-05-05 15:07:29 -070073
Matt DeVilliera9492a62018-06-20 00:40:48 -050074 /* Run VBIOS */
75 pci_dev_init(dev);
Lee Leahy77ff0b12015-05-05 15:07:29 -070076
Matt DeVilliera9492a62018-06-20 00:40:48 -050077 /* Post VBIOS Init */
78 gfx_post_vbios_init(dev);
79 }
Matt DeVillier132bbe62017-07-01 13:02:47 -050080 intel_gma_restore_opregion();
81}
82
83uintptr_t gma_get_gnvs_aslb(const void *gnvs)
84{
85 const global_nvs_t *gnvs_ptr = gnvs;
86 return (uintptr_t)(gnvs_ptr ? gnvs_ptr->aslb : 0);
87}
88
89void gma_set_gnvs_aslb(void *gnvs, uintptr_t aslb)
90{
91 global_nvs_t *gnvs_ptr = gnvs;
92 if (gnvs_ptr)
93 gnvs_ptr->aslb = aslb;
Lee Leahy77ff0b12015-05-05 15:07:29 -070094}
95
96static struct device_operations gfx_device_ops = {
Nico Huber1ef80142015-11-05 23:27:06 +010097 .read_resources = pci_dev_read_resources,
Lee Leahy77ff0b12015-05-05 15:07:29 -070098 .set_resources = pci_dev_set_resources,
99 .enable_resources = pci_dev_enable_resources,
100 .init = gfx_init,
101 .ops_pci = &soc_pci_ops,
102};
103
104static const struct pci_driver gfx_driver __pci_driver = {
105 .ops = &gfx_device_ops,
106 .vendor = PCI_VENDOR_ID_INTEL,
107 .device = GFX_DEVID,
108};