The ALIGN_CURRENT macro relied on a local variable name as well as being defined in numerous compilation units. Replace those instances with an acpi_align_current() inline function. Change-Id: Iab453f2eda1addefad8a1c37d265f917bd803202 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/12707 Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
259 lines
7.3 KiB
C
259 lines
7.3 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2007-2009 coresystems GmbH
|
|
* Copyright (C) 2012 The 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.
|
|
*/
|
|
|
|
#include <types.h>
|
|
#include <string.h>
|
|
#include <console/console.h>
|
|
#include <arch/io.h>
|
|
#include <arch/acpi.h>
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <device/pci_ids.h>
|
|
#include <drivers/intel/gma/i915.h>
|
|
#include <arch/acpigen.h>
|
|
#include "sandybridge.h"
|
|
#include <cbmem.h>
|
|
#include <drivers/intel/gma/intel_bios.h>
|
|
#include <southbridge/intel/bd82x6x/pch.h>
|
|
|
|
unsigned long acpi_fill_mcfg(unsigned long current)
|
|
{
|
|
device_t dev;
|
|
u32 pciexbar = 0;
|
|
u32 pciexbar_reg;
|
|
int max_buses;
|
|
|
|
dev = dev_find_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_SB, 0);
|
|
if (!dev)
|
|
dev = dev_find_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_IB, 0);
|
|
if (!dev)
|
|
return current;
|
|
|
|
pciexbar_reg=pci_read_config32(dev, PCIEXBAR);
|
|
|
|
// MMCFG not supported or not enabled.
|
|
if (!(pciexbar_reg & (1 << 0)))
|
|
return current;
|
|
|
|
switch ((pciexbar_reg >> 1) & 3) {
|
|
case 0: // 256MB
|
|
pciexbar = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
|
|
max_buses = 256;
|
|
break;
|
|
case 1: // 128M
|
|
pciexbar = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
|
|
max_buses = 128;
|
|
break;
|
|
case 2: // 64M
|
|
pciexbar = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
|
|
max_buses = 64;
|
|
break;
|
|
default: // RSVD
|
|
return current;
|
|
}
|
|
|
|
if (!pciexbar)
|
|
return current;
|
|
|
|
current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *) current,
|
|
pciexbar, 0x0, 0x0, max_buses - 1);
|
|
|
|
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(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(opregion->header.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;
|
|
}
|
|
|
|
void *igd_make_opregion(void)
|
|
{
|
|
igd_opregion_t *opregion;
|
|
|
|
printk(BIOS_DEBUG, "ACPI: * IGD OpRegion\n");
|
|
opregion = cbmem_add(CBMEM_ID_IGD_OPREGION, sizeof (*opregion));
|
|
if (opregion)
|
|
init_igd_opregion(opregion);
|
|
return opregion;
|
|
}
|
|
|
|
static unsigned long acpi_fill_dmar(unsigned long current)
|
|
{
|
|
const struct device *const igfx = dev_find_slot(0, PCI_DEVFN(2, 0));
|
|
|
|
if (igfx && igfx->enabled) {
|
|
const unsigned long tmp = current;
|
|
current += acpi_create_dmar_drhd(current, 0, 0, IOMMU_BASE1);
|
|
current += acpi_create_dmar_drhd_ds_pci(current, 0, 2, 0);
|
|
current += acpi_create_dmar_drhd_ds_pci(current, 0, 2, 1);
|
|
acpi_dmar_drhd_fixup(tmp, current);
|
|
}
|
|
|
|
const unsigned long tmp = current;
|
|
current += acpi_create_dmar_drhd(current,
|
|
DRHD_INCLUDE_PCI_ALL, 0, IOMMU_BASE2);
|
|
current += acpi_create_dmar_drhd_ds_ioapic(current,
|
|
2, PCH_IOAPIC_PCI_BUS, PCH_IOAPIC_PCI_SLOT, 0);
|
|
size_t i;
|
|
for (i = 0; i < 8; ++i)
|
|
current += acpi_create_dmar_drhd_ds_msi_hpet(current,
|
|
0, PCH_HPET_PCI_BUS, PCH_HPET_PCI_SLOT, i);
|
|
acpi_dmar_drhd_fixup(tmp, current);
|
|
|
|
return current;
|
|
}
|
|
|
|
unsigned long northbridge_write_acpi_tables(struct device *const dev,
|
|
unsigned long current,
|
|
struct acpi_rsdp *const rsdp)
|
|
{
|
|
const u32 capid0_a = pci_read_config32(dev, 0xe4);
|
|
if (capid0_a & (1 << 23))
|
|
return current;
|
|
|
|
printk(BIOS_DEBUG, "ACPI: * DMAR\n");
|
|
acpi_dmar_t *const dmar = (acpi_dmar_t *)current;
|
|
acpi_create_dmar(dmar, DMAR_INTR_REMAP, acpi_fill_dmar);
|
|
current += dmar->header.length;
|
|
current = acpi_align_current(current);
|
|
acpi_add_table(rsdp, dmar);
|
|
|
|
current = acpi_align_current(current);
|
|
|
|
printk(BIOS_DEBUG, "current = %lx\n", current);
|
|
|
|
return current;
|
|
}
|