Move header and delete duplicates. Change-Id: I0e1f5d9082626062f95afe718f6ec62a68f0d828 Signed-off-by: Patrick Rudolph <siro@das-labor.org> Reviewed-on: https://review.coreboot.org/18903 Tested-by: build bot (Jenkins) Tested-by: coreboot org <coreboot.org@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
108 lines
3.2 KiB
C
108 lines
3.2 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2013, 2014 Vladimir Serbinenko
|
|
* Copyright (C) 2017 secunet Security Networks AG
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 or (at your option)
|
|
* any later version of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#include <arch/io.h>
|
|
#include <console/console.h>
|
|
#include <delay.h>
|
|
#include <device/device.h>
|
|
#include <string.h>
|
|
#include <device/pci.h>
|
|
#include <drivers/intel/gma/opregion.h>
|
|
|
|
#include "i915.h"
|
|
#include "intel_bios.h"
|
|
|
|
static size_t generate_vbt(const struct i915_gpu_controller_info *const conf,
|
|
struct vbt_header *const head,
|
|
const char *const idstr)
|
|
{
|
|
u8 *ptr;
|
|
|
|
memset(head, 0, sizeof (*head));
|
|
|
|
memset(head->signature, ' ', sizeof (head->signature));
|
|
memcpy(head->signature, idstr,
|
|
MIN(strlen(idstr), sizeof (head->signature)));
|
|
head->version = 100;
|
|
head->header_size = sizeof (*head);
|
|
head->bdb_offset = sizeof (*head);
|
|
|
|
struct bdb_header *const bdb_head = (struct bdb_header *)(head + 1);
|
|
memset(bdb_head, 0, sizeof (*bdb_head));
|
|
memcpy(bdb_head->signature, "BIOS_DATA_BLOCK ", 16);
|
|
bdb_head->version = 0xa8;
|
|
bdb_head->header_size = sizeof (*bdb_head);
|
|
|
|
ptr = (u8 *)(bdb_head + 1);
|
|
|
|
ptr[0] = BDB_GENERAL_FEATURES;
|
|
ptr[1] = sizeof (struct bdb_general_features);
|
|
ptr[2] = sizeof (struct bdb_general_features) >> 8;
|
|
ptr += 3;
|
|
|
|
struct bdb_general_features *const genfeat =
|
|
(struct bdb_general_features *)ptr;
|
|
memset(genfeat, 0, sizeof (*genfeat));
|
|
genfeat->panel_fitting = 3;
|
|
genfeat->flexaim = 1;
|
|
genfeat->download_ext_vbt = 1;
|
|
genfeat->enable_ssc = conf->use_spread_spectrum_clock;
|
|
genfeat->ssc_freq = IS_ENABLED(CONFIG_INTEL_GMA_SSC_ALTERNATE_REF);
|
|
genfeat->rsvd10 = 0x4;
|
|
genfeat->legacy_monitor_detect = 1;
|
|
genfeat->int_crt_support = 1;
|
|
genfeat->dp_ssc_enb = 1;
|
|
|
|
ptr += sizeof (*genfeat);
|
|
|
|
bdb_head->bdb_size = ptr - (u8 *)bdb_head;
|
|
head->vbt_size = ptr - (u8 *)head;
|
|
head->vbt_checksum = 0;
|
|
return ptr - (u8 *)head;
|
|
}
|
|
|
|
void
|
|
generate_fake_intel_oprom(const struct i915_gpu_controller_info *const conf,
|
|
struct device *const dev, const char *const idstr)
|
|
{
|
|
optionrom_header_t *const oh = (void *)PCI_VGA_RAM_IMAGE_START;
|
|
|
|
memset(oh, 0, 8192);
|
|
|
|
oh->signature = PCI_ROM_HDR;
|
|
oh->pcir_offset = 0x40;
|
|
oh->vbt_offset = 0x80;
|
|
|
|
optionrom_pcir_t *const pcir = (void *)((u8 *)oh + oh->pcir_offset);
|
|
pcir->signature = 0x52494350; // PCIR
|
|
pcir->vendor = dev->vendor;
|
|
pcir->device = dev->device;
|
|
pcir->length = sizeof(*pcir);
|
|
pcir->revision = pci_read_config8(dev, PCI_CLASS_REVISION);
|
|
pcir->classcode[0] = dev->class;
|
|
pcir->classcode[1] = dev->class >> 8;
|
|
pcir->classcode[2] = dev->class >> 16;
|
|
pcir->indicator = 0x80;
|
|
|
|
const size_t vbt_size =
|
|
generate_vbt(conf, (void *)((u8 *)oh + oh->vbt_offset), idstr);
|
|
const size_t fake_oprom_size =
|
|
DIV_ROUND_UP(oh->vbt_offset + vbt_size, 512);
|
|
oh->size = fake_oprom_size;
|
|
pcir->imagelength = fake_oprom_size;
|
|
}
|