Initial IGD OpRegion implementation
Change-Id: I9e57c5792409830895a1147799acab95d910a336 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1757 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
2e200cde9a
commit
e5a0a5d6df
|
@ -43,3 +43,5 @@ ifeq ($(CONFIG_NORTHBRIDGE_INTEL_SANDYBRIDGE),y)
|
||||||
mrc.bin-position := 0xfffe0000
|
mrc.bin-position := 0xfffe0000
|
||||||
endif
|
endif
|
||||||
mrc.bin-type := 0xab
|
mrc.bin-type := 0xab
|
||||||
|
|
||||||
|
$(obj)/northbridge/intel/sandybridge/acpi.ramstage.o : $(obj)/build.h
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
* This file is part of the coreboot project.
|
* This file is part of the coreboot project.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2007-2009 coresystems GmbH
|
* Copyright (C) 2007-2009 coresystems GmbH
|
||||||
|
* Copyright (C) 2012 The Chromium OS Authors
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License as
|
* modify it under the terms of the GNU General Public License as
|
||||||
|
@ -22,11 +23,12 @@
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
|
#include <arch/io.h>
|
||||||
#include <arch/acpi.h>
|
#include <arch/acpi.h>
|
||||||
#include <arch/acpigen.h>
|
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include <device/pci.h>
|
#include <device/pci.h>
|
||||||
#include <device/pci_ids.h>
|
#include <device/pci_ids.h>
|
||||||
|
#include <build.h>
|
||||||
#include "sandybridge.h"
|
#include "sandybridge.h"
|
||||||
|
|
||||||
unsigned long acpi_fill_mcfg(unsigned long current)
|
unsigned long acpi_fill_mcfg(unsigned long current)
|
||||||
|
@ -74,4 +76,127 @@ unsigned long acpi_fill_mcfg(unsigned long current)
|
||||||
return current;
|
return current;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void *get_intel_vbios(void)
|
||||||
|
{
|
||||||
|
/* This should probably be looking at CBFS or we should always
|
||||||
|
* deploy the VBIOS on Intel systems, even if we don't run it
|
||||||
|
* in coreboot (e.g. SeaBIOS only scenarios).
|
||||||
|
*/
|
||||||
|
u8 *vbios = (u8 *)0xc0000;
|
||||||
|
|
||||||
|
optionrom_header_t *oprom = (optionrom_header_t *)vbios;
|
||||||
|
optionrom_pcir_t *pcir = (optionrom_pcir_t *)(vbios +
|
||||||
|
oprom->pcir_offset);
|
||||||
|
|
||||||
|
|
||||||
|
printk(BIOS_DEBUG, "GET_VBIOS: %x %x %x %x %x\n",
|
||||||
|
oprom->signature, pcir->vendor, pcir->classcode[0],
|
||||||
|
pcir->classcode[1], pcir->classcode[2]);
|
||||||
|
|
||||||
|
|
||||||
|
if ((oprom->signature == OPROM_SIGNATURE) &&
|
||||||
|
(pcir->vendor == PCI_VENDOR_ID_INTEL) &&
|
||||||
|
(pcir->classcode[0] == 0x00) &&
|
||||||
|
(pcir->classcode[1] == 0x00) &&
|
||||||
|
(pcir->classcode[2] == 0x03))
|
||||||
|
return (void *)vbios;
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int init_opregion_vbt(igd_opregion_t *opregion)
|
||||||
|
{
|
||||||
|
void *vbios;
|
||||||
|
vbios = get_intel_vbios();
|
||||||
|
if (!vbios) {
|
||||||
|
printk(BIOS_DEBUG, "VBIOS not found.\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
printk(BIOS_DEBUG, " ... VBIOS found at %p\n", vbios);
|
||||||
|
optionrom_header_t *oprom = (optionrom_header_t *)vbios;
|
||||||
|
optionrom_vbt_t *vbt = (optionrom_vbt_t *)(vbios +
|
||||||
|
oprom->vbt_offset);
|
||||||
|
|
||||||
|
if (read32((unsigned long)vbt->hdr_signature) != VBT_SIGNATURE) {
|
||||||
|
printk(BIOS_DEBUG, "VBT not found!\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(opregion->header.vbios_version, vbt->coreblock_biosbuild, 4);
|
||||||
|
memcpy(opregion->vbt.gvd1, vbt, vbt->hdr_vbt_size < 7168 ?
|
||||||
|
vbt->hdr_vbt_size : 7168);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Initialize IGD OpRegion, called from ACPI code */
|
||||||
|
int init_igd_opregion(igd_opregion_t *opregion)
|
||||||
|
{
|
||||||
|
device_t igd;
|
||||||
|
u16 reg16;
|
||||||
|
|
||||||
|
memset((void *)opregion, 0, sizeof(igd_opregion_t));
|
||||||
|
|
||||||
|
// FIXME if IGD is disabled, we should exit here.
|
||||||
|
|
||||||
|
memcpy(&opregion->header.signature, IGD_OPREGION_SIGNATURE,
|
||||||
|
sizeof(IGD_OPREGION_SIGNATURE));
|
||||||
|
|
||||||
|
/* 8kb */
|
||||||
|
opregion->header.size = sizeof(igd_opregion_t) / 1024;
|
||||||
|
opregion->header.version = IGD_OPREGION_VERSION;
|
||||||
|
|
||||||
|
// FIXME We just assume we're mobile for now
|
||||||
|
opregion->header.mailboxes = MAILBOXES_MOBILE;
|
||||||
|
|
||||||
|
// TODO Initialize Mailbox 1
|
||||||
|
|
||||||
|
// TODO Initialize Mailbox 3
|
||||||
|
opregion->mailbox3.bclp = IGD_BACKLIGHT_BRIGHTNESS;
|
||||||
|
opregion->mailbox3.pfit = IGD_FIELD_VALID | IGD_PFIT_STRETCH;
|
||||||
|
opregion->mailbox3.pcft = 0; // should be (IMON << 1) & 0x3e
|
||||||
|
opregion->mailbox3.cblv = IGD_FIELD_VALID | IGD_INITIAL_BRIGHTNESS;
|
||||||
|
opregion->mailbox3.bclm[0] = IGD_WORD_FIELD_VALID + 0x0000;
|
||||||
|
opregion->mailbox3.bclm[1] = IGD_WORD_FIELD_VALID + 0x0a19;
|
||||||
|
opregion->mailbox3.bclm[2] = IGD_WORD_FIELD_VALID + 0x1433;
|
||||||
|
opregion->mailbox3.bclm[3] = IGD_WORD_FIELD_VALID + 0x1e4c;
|
||||||
|
opregion->mailbox3.bclm[4] = IGD_WORD_FIELD_VALID + 0x2866;
|
||||||
|
opregion->mailbox3.bclm[5] = IGD_WORD_FIELD_VALID + 0x327f;
|
||||||
|
opregion->mailbox3.bclm[6] = IGD_WORD_FIELD_VALID + 0x3c99;
|
||||||
|
opregion->mailbox3.bclm[7] = IGD_WORD_FIELD_VALID + 0x46b2;
|
||||||
|
opregion->mailbox3.bclm[8] = IGD_WORD_FIELD_VALID + 0x50cc;
|
||||||
|
opregion->mailbox3.bclm[9] = IGD_WORD_FIELD_VALID + 0x5ae5;
|
||||||
|
opregion->mailbox3.bclm[10] = IGD_WORD_FIELD_VALID + 0x64ff;
|
||||||
|
|
||||||
|
init_opregion_vbt(opregion);
|
||||||
|
|
||||||
|
/* TODO This needs to happen in S3 resume, too.
|
||||||
|
* Maybe it should move to the finalize handler
|
||||||
|
*/
|
||||||
|
igd = dev_find_slot(0, PCI_DEVFN(0x2, 0));
|
||||||
|
|
||||||
|
pci_write_config32(igd, ASLS, (u32)opregion);
|
||||||
|
reg16 = pci_read_config16(igd, SWSCI);
|
||||||
|
reg16 &= ~(1 << 0);
|
||||||
|
reg16 |= (1 << 15);
|
||||||
|
pci_write_config16(igd, SWSCI, reg16);
|
||||||
|
|
||||||
|
/* clear dmisci status */
|
||||||
|
reg16 = inw(DEFAULT_PMBASE + TCO1_STS);
|
||||||
|
reg16 |= DMISCI_STS; // reference code does an &=
|
||||||
|
outw(DEFAULT_PMBASE + TCO1_STS, reg16);
|
||||||
|
|
||||||
|
/* clear acpi tco status */
|
||||||
|
outl(DEFAULT_PMBASE + GPE0_STS, TCOSCI_STS);
|
||||||
|
|
||||||
|
/* enable acpi tco scis */
|
||||||
|
reg16 = inw(DEFAULT_PMBASE + GPE0_EN);
|
||||||
|
reg16 |= TCOSCI_EN;
|
||||||
|
outw(DEFAULT_PMBASE + GPE0_EN, reg16);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,168 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2012 Chromium OS Authors
|
||||||
|
*
|
||||||
|
* 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 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.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* mailbox 0: header */
|
||||||
|
typedef struct {
|
||||||
|
u8 signature[16];
|
||||||
|
u32 size;
|
||||||
|
u32 version;
|
||||||
|
u8 sbios_version[32];
|
||||||
|
u8 vbios_version[16];
|
||||||
|
u8 driver_version[16];
|
||||||
|
u32 mailboxes;
|
||||||
|
u8 reserved[164];
|
||||||
|
} __attribute__((packed)) opregion_header_t;
|
||||||
|
|
||||||
|
#define IGD_OPREGION_SIGNATURE "IntelGraphicsMem"
|
||||||
|
#define IGD_OPREGION_VERSION 2
|
||||||
|
|
||||||
|
#define IGD_MBOX1 (1 << 0)
|
||||||
|
#define IGD_MBOX2 (1 << 1)
|
||||||
|
#define IGD_MBOX3 (1 << 2)
|
||||||
|
#define IGD_MBOX4 (1 << 3)
|
||||||
|
#define IGD_MBOX5 (1 << 4)
|
||||||
|
|
||||||
|
#define MAILBOXES_MOBILE (IGD_MBOX1 | IGD_MBOX2 | IGD_MBOX3 | \
|
||||||
|
IGD_MBOX4 | IGD_MBOX5)
|
||||||
|
#define MAILBOXES_DESKTOP (IGD_MBOX2 | IGD_MBOX4)
|
||||||
|
|
||||||
|
#define SBIOS_VERSION_SIZE 32
|
||||||
|
|
||||||
|
/* mailbox 1: public acpi methods */
|
||||||
|
typedef struct {
|
||||||
|
u32 drdy;
|
||||||
|
u32 csts;
|
||||||
|
u32 cevt;
|
||||||
|
u8 reserved1[20];
|
||||||
|
u32 didl[8];
|
||||||
|
u32 cpdl[8];
|
||||||
|
u32 cadl[8];
|
||||||
|
u32 nadl[8];
|
||||||
|
u32 aslp;
|
||||||
|
u32 tidx;
|
||||||
|
u32 chpd;
|
||||||
|
u32 clid;
|
||||||
|
u32 cdck;
|
||||||
|
u32 sxsw;
|
||||||
|
u32 evts;
|
||||||
|
u32 cnot;
|
||||||
|
u32 nrdy;
|
||||||
|
u8 reserved2[60];
|
||||||
|
} __attribute__((packed)) opregion_mailbox1_t;
|
||||||
|
|
||||||
|
/* mailbox 2: software sci interface */
|
||||||
|
typedef struct {
|
||||||
|
u32 scic;
|
||||||
|
u32 parm;
|
||||||
|
u32 dslp;
|
||||||
|
u8 reserved[244];
|
||||||
|
} __attribute__((packed)) opregion_mailbox2_t;
|
||||||
|
|
||||||
|
/* mailbox 3: power conservation */
|
||||||
|
typedef struct {
|
||||||
|
u32 ardy;
|
||||||
|
u32 aslc;
|
||||||
|
u32 tche;
|
||||||
|
u32 alsi;
|
||||||
|
u32 bclp;
|
||||||
|
u32 pfit;
|
||||||
|
u32 cblv;
|
||||||
|
u16 bclm[20];
|
||||||
|
u32 cpfm;
|
||||||
|
u32 epfm;
|
||||||
|
u8 plut[74];
|
||||||
|
u32 pfmb;
|
||||||
|
u32 ccdv;
|
||||||
|
u32 pcft;
|
||||||
|
u8 reserved[94];
|
||||||
|
} __attribute__((packed)) opregion_mailbox3_t;
|
||||||
|
|
||||||
|
#define IGD_BACKLIGHT_BRIGHTNESS 0xff
|
||||||
|
#define IGD_INITIAL_BRIGHTNESS 0x64
|
||||||
|
|
||||||
|
#define IGD_FIELD_VALID (1 << 31)
|
||||||
|
#define IGD_WORD_FIELD_VALID (1 << 15)
|
||||||
|
#define IGD_PFIT_STRETCH 6
|
||||||
|
|
||||||
|
/* mailbox 4: vbt */
|
||||||
|
typedef struct {
|
||||||
|
u8 gvd1[7168];
|
||||||
|
} __attribute__((packed)) opregion_vbt_t;
|
||||||
|
|
||||||
|
/* IGD OpRegion */
|
||||||
|
typedef struct {
|
||||||
|
opregion_header_t header;
|
||||||
|
opregion_mailbox1_t mailbox1;
|
||||||
|
opregion_mailbox2_t mailbox2;
|
||||||
|
opregion_mailbox3_t mailbox3;
|
||||||
|
opregion_vbt_t vbt;
|
||||||
|
} __attribute__((packed)) igd_opregion_t;
|
||||||
|
|
||||||
|
/* Intel Video BIOS (Option ROM) */
|
||||||
|
typedef struct {
|
||||||
|
u16 signature;
|
||||||
|
u8 size;
|
||||||
|
u8 reserved[21];
|
||||||
|
u16 pcir_offset;
|
||||||
|
u16 vbt_offset;
|
||||||
|
} __attribute__((packed)) optionrom_header_t;
|
||||||
|
|
||||||
|
#define OPROM_SIGNATURE 0xaa55
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
u32 signature;
|
||||||
|
u16 vendor;
|
||||||
|
u16 device;
|
||||||
|
u16 reserved1;
|
||||||
|
u16 length;
|
||||||
|
u8 revision;
|
||||||
|
u8 classcode[3];
|
||||||
|
u16 imagelength;
|
||||||
|
u16 coderevision;
|
||||||
|
u8 codetype;
|
||||||
|
u8 indicator;
|
||||||
|
u16 reserved2;
|
||||||
|
} __attribute__((packed)) optionrom_pcir_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
u8 hdr_signature[20];
|
||||||
|
u16 hdr_version;
|
||||||
|
u16 hdr_size;
|
||||||
|
u16 hdr_vbt_size;
|
||||||
|
u8 hdr_vbt_checksum;
|
||||||
|
u8 hdr_reserved;
|
||||||
|
u32 hdr_vbt_datablock;
|
||||||
|
u32 hdr_aim[4];
|
||||||
|
u8 datahdr_signature[16];
|
||||||
|
u16 datahdr_version;
|
||||||
|
u16 datahdr_size;
|
||||||
|
u16 datahdr_datablocksize;
|
||||||
|
u8 coreblock_id;
|
||||||
|
u16 coreblock_size;
|
||||||
|
u16 coreblock_biossize;
|
||||||
|
u8 coreblock_biostype;
|
||||||
|
u8 coreblock_releasestatus;
|
||||||
|
u8 coreblock_hwsupported;
|
||||||
|
u8 coreblock_integratedhw;
|
||||||
|
u8 coreblock_biosbuild[4];
|
||||||
|
u8 coreblock_biossignon[155];
|
||||||
|
} __attribute__((packed)) optionrom_vbt_t;
|
||||||
|
|
||||||
|
#define VBT_SIGNATURE 0x54425624
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
#define DEFAULT_EPBAR 0xfed19000 /* 4 KB */
|
#define DEFAULT_EPBAR 0xfed19000 /* 4 KB */
|
||||||
#define DEFAULT_RCBABASE 0xfed1c000
|
#define DEFAULT_RCBABASE 0xfed1c000
|
||||||
|
|
||||||
#include "../../../southbridge/intel/bd82x6x/pch.h"
|
#include <southbridge/intel/bd82x6x/pch.h>
|
||||||
|
|
||||||
/* Everything below this line is ignored in the DSDT */
|
/* Everything below this line is ignored in the DSDT */
|
||||||
#ifndef __ACPI__
|
#ifndef __ACPI__
|
||||||
|
@ -107,7 +107,8 @@
|
||||||
/* Device 0:2.0 PCI configuration space (Graphics Device) */
|
/* Device 0:2.0 PCI configuration space (Graphics Device) */
|
||||||
|
|
||||||
#define MSAC 0x62 /* Multi Size Aperture Control */
|
#define MSAC 0x62 /* Multi Size Aperture Control */
|
||||||
|
#define SWSCI 0xe8 /* SWSCI enable */
|
||||||
|
#define ASLS 0xfc /* OpRegion Base */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MCHBAR
|
* MCHBAR
|
||||||
|
@ -233,6 +234,9 @@ struct mrc_data_container {
|
||||||
struct mrc_data_container *find_current_mrc_cache(void);
|
struct mrc_data_container *find_current_mrc_cache(void);
|
||||||
#if !defined(__PRE_RAM__)
|
#if !defined(__PRE_RAM__)
|
||||||
void update_mrc_cache(void);
|
void update_mrc_cache(void);
|
||||||
|
|
||||||
|
#include "gma.h"
|
||||||
|
int init_igd_opregion(igd_opregion_t *igd_opregion);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue