Add support for "Stout" Chromebook
We're happy to announce coreboot support for the "Stout" Chromebook, a.k.a Lenovo X131e Chromebook. Change-Id: I9b995f8d0dd48e41c788b7c3d35b4fac5840e425 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/2636 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
afad056c22
commit
b7ecf6d830
|
@ -23,18 +23,22 @@ choice
|
|||
|
||||
config BOARD_GOOGLE_BUTTERFLY
|
||||
bool "Butterfly"
|
||||
config BOARD_GOOGLE_PARROT
|
||||
bool "Parrot"
|
||||
config BOARD_GOOGLE_LINK
|
||||
bool "Link"
|
||||
config BOARD_GOOGLE_PARROT
|
||||
bool "Parrot"
|
||||
config BOARD_GOOGLE_SNOW
|
||||
bool "Snow"
|
||||
config BOARD_GOOGLE_STOUT
|
||||
bool "Stout"
|
||||
|
||||
endchoice
|
||||
|
||||
source "src/mainboard/google/butterfly/Kconfig"
|
||||
source "src/mainboard/google/link/Kconfig"
|
||||
source "src/mainboard/google/parrot/Kconfig"
|
||||
source "src/mainboard/google/snow/Kconfig"
|
||||
source "src/mainboard/google/stout/Kconfig"
|
||||
|
||||
config MAINBOARD_VENDOR
|
||||
string
|
||||
|
|
|
@ -0,0 +1,53 @@
|
|||
if BOARD_GOOGLE_STOUT
|
||||
|
||||
config BOARD_SPECIFIC_OPTIONS # dummy
|
||||
def_bool y
|
||||
select ARCH_X86
|
||||
select CPU_INTEL_SOCKET_RPGA989
|
||||
select NORTHBRIDGE_INTEL_IVYBRIDGE
|
||||
select SOUTHBRIDGE_INTEL_C216
|
||||
select EC_QUANTA_IT8518
|
||||
select BOARD_HAS_FADT
|
||||
select BOARD_ROMSIZE_KB_8192
|
||||
select HAVE_ACPI_TABLES
|
||||
select HAVE_OPTION_TABLE
|
||||
select HAVE_ACPI_RESUME
|
||||
select MMCONF_SUPPORT
|
||||
select HAVE_SMI_HANDLER
|
||||
select GFXUMA
|
||||
select CHROMEOS
|
||||
select EXTERNAL_MRC_BLOB
|
||||
|
||||
config MAINBOARD_DIR
|
||||
string
|
||||
default google/stout
|
||||
|
||||
config MAINBOARD_PART_NUMBER
|
||||
string
|
||||
default "Stout"
|
||||
|
||||
config MMCONF_BASE_ADDRESS
|
||||
hex
|
||||
default 0xf0000000
|
||||
|
||||
config IRQ_SLOT_COUNT
|
||||
int
|
||||
default 18
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
default 8
|
||||
|
||||
config VGA_BIOS_FILE
|
||||
string
|
||||
default "pci8086,0106.rom"
|
||||
|
||||
config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
|
||||
hex
|
||||
default 0x1ae0
|
||||
|
||||
config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
|
||||
hex
|
||||
default 0xc000
|
||||
|
||||
endif # BOARD_GOOGLE_STOUT
|
|
@ -0,0 +1,28 @@
|
|||
##
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
|
||||
##
|
||||
## 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
|
||||
##
|
||||
|
||||
ramstage-y += ec.c
|
||||
|
||||
romstage-$(CONFIG_CHROMEOS) += chromeos.c
|
||||
ramstage-$(CONFIG_CHROMEOS) += chromeos.c
|
||||
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += mainboard_smi.c
|
||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += ec.c
|
||||
|
||||
SRC_ROOT = $(src)/mainboard/google/stout
|
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
Name(OIPG, Package() {
|
||||
// No GPIO for recovery mode, developer mode, or firmware write protect
|
||||
// on stout - note: all virtual pins are active HIGH polarity on stout.
|
||||
Package() { 0x001, 1, 0xFF, "PantherPoint" }, // recovery button
|
||||
Package() { 0x002, 1, 0xFF, "PantherPoint" }, // developer button
|
||||
Package() { 0x003, 0, 7, "PantherPoint" }, // firmware write protect
|
||||
})
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2012 The ChromiumOS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
/* mainboard configuration */
|
||||
#include "../ec.h"
|
||||
|
||||
/* ACPI code for EC functions */
|
||||
#include <ec/quanta/it8518/acpi/ec.asl>
|
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2011 Google Inc.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
Scope (\_SB)
|
||||
{
|
||||
Device (LID0)
|
||||
{
|
||||
Name (_HID, EisaId("PNP0C0D"))
|
||||
Name (_PRW, Package() {0x18, 4})
|
||||
|
||||
Method (_LID, 0)
|
||||
{
|
||||
Store (\_SB.PCI0.LPCB.EC0.HPLD, \LIDS)
|
||||
Return (\LIDS)
|
||||
}
|
||||
|
||||
Method (_PSW, 1)
|
||||
{
|
||||
// Enable/Disable LID as a wake source
|
||||
Store (Arg0, \_SB.PCI0.LPCB.EC0.HWLO)
|
||||
}
|
||||
}
|
||||
|
||||
Device (PWRB)
|
||||
{
|
||||
Name (_HID, EisaId("PNP0C0C"))
|
||||
}
|
||||
}
|
|
@ -0,0 +1,88 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2012 The Chromium OS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
/* The APM port can be used for generating software SMIs */
|
||||
|
||||
OperationRegion (APMP, SystemIO, 0xb2, 2)
|
||||
Field (APMP, ByteAcc, NoLock, Preserve)
|
||||
{
|
||||
APMC, 8, // APM command
|
||||
APMS, 8 // APM status
|
||||
}
|
||||
|
||||
/* Port 80 POST */
|
||||
|
||||
OperationRegion (POST, SystemIO, 0x80, 1)
|
||||
Field (POST, ByteAcc, Lock, Preserve)
|
||||
{
|
||||
DBG0, 8
|
||||
}
|
||||
|
||||
/* SMI I/O Trap */
|
||||
Method(TRAP, 1, Serialized)
|
||||
{
|
||||
Store (Arg0, SMIF) // SMI Function
|
||||
Store (0, TRP0) // Generate trap
|
||||
Return (SMIF) // Return value of SMI handler
|
||||
}
|
||||
|
||||
/* The _PIC method is called by the OS to choose between interrupt
|
||||
* routing via the i8259 interrupt controller or the APIC.
|
||||
*
|
||||
* _PIC is called with a parameter of 0 for i8259 configuration and
|
||||
* with a parameter of 1 for Local Apic/IOAPIC configuration.
|
||||
*/
|
||||
|
||||
Method(_PIC, 1)
|
||||
{
|
||||
// Remember the OS' IRQ routing choice.
|
||||
Store(Arg0, PICM)
|
||||
}
|
||||
|
||||
/* The _PTS method (Prepare To Sleep) is called before the OS is
|
||||
* entering a sleep state. The sleep state number is passed in Arg0
|
||||
*/
|
||||
|
||||
Method(_PTS,1)
|
||||
{
|
||||
// Notify EC to enter S3
|
||||
Store(0x01, \_SB.PCI0.LPCB.EC0.S3FG)
|
||||
}
|
||||
|
||||
/* The _WAK method is called on system wakeup */
|
||||
|
||||
Method(_WAK,1)
|
||||
{
|
||||
/* Update AC status */
|
||||
Store (\_SB.PCI0.LPCB.EC0.ACPW, Local0)
|
||||
if (LNotEqual (Local0, \PWRS)) {
|
||||
Store (Local0, \PWRS)
|
||||
Notify (\_SB.PCI0.LPCB.EC0.AC, 0x80)
|
||||
}
|
||||
|
||||
/* Update LID status */
|
||||
Store (NOT(\_SB.PCI0.LPCB.EC0.HPLD), Local0)
|
||||
if (LNotEqual (Local0, \LIDS)) {
|
||||
Store (Local0, \LIDS)
|
||||
Notify (\_SB.LID0, 0x80)
|
||||
}
|
||||
|
||||
Return(Package(){0,0})
|
||||
}
|
||||
|
|
@ -0,0 +1,73 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2007-2009 coresystems GmbH
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
/* This is board specific information: IRQ routing for Sandybridge */
|
||||
|
||||
// PCI Interrupt Routing
|
||||
Method(_PRT)
|
||||
{
|
||||
If (PICM) {
|
||||
Return (Package() {
|
||||
// Onboard graphics (IGD) 0:2.0
|
||||
Package() { 0x0002ffff, 0, 0, 16 },
|
||||
// XHCI 0:14.0
|
||||
Package() { 0x0014ffff, 0, 0, 19 },
|
||||
// High Definition Audio 0:1b.0
|
||||
Package() { 0x001bffff, 0, 0, 16 },
|
||||
// PCIe Root Ports 0:1c.x
|
||||
Package() { 0x001cffff, 0, 0, 19 },
|
||||
Package() { 0x001cffff, 1, 0, 20 },
|
||||
Package() { 0x001cffff, 2, 0, 17 },
|
||||
Package() { 0x001cffff, 3, 0, 18 },
|
||||
// EHCI #1 0:1d.0
|
||||
Package() { 0x001dffff, 0, 0, 19 },
|
||||
// EHCI #2 0:1a.0
|
||||
Package() { 0x001affff, 0, 0, 21 },
|
||||
// LPC devices 0:1f.0
|
||||
Package() { 0x001fffff, 0, 0, 17 },
|
||||
Package() { 0x001fffff, 1, 0, 23 },
|
||||
Package() { 0x001fffff, 2, 0, 16 },
|
||||
Package() { 0x001fffff, 3, 0, 18 },
|
||||
})
|
||||
} Else {
|
||||
Return (Package() {
|
||||
// Onboard graphics (IGD) 0:2.0
|
||||
Package() { 0x0002ffff, 0, \_SB.PCI0.LPCB.LNKA, 0 },
|
||||
// XHCI 0:14.0
|
||||
Package() { 0x0014ffff, 0, \_SB.PCI0.LPCB.LNKD, 0 },
|
||||
// High Definition Audio 0:1b.0
|
||||
Package() { 0x001bffff, 0, \_SB.PCI0.LPCB.LNKA, 0 },
|
||||
// PCIe Root Ports 0:1c.x
|
||||
Package() { 0x001cffff, 0, \_SB.PCI0.LPCB.LNKD, 0 },
|
||||
Package() { 0x001cffff, 1, \_SB.PCI0.LPCB.LNKE, 0 },
|
||||
Package() { 0x001cffff, 2, \_SB.PCI0.LPCB.LNKB, 0 },
|
||||
Package() { 0x001cffff, 3, \_SB.PCI0.LPCB.LNKC, 0 },
|
||||
// EHCI #1 0:1d.0
|
||||
Package() { 0x001dffff, 0, \_SB.PCI0.LPCB.LNKD, 0 },
|
||||
// EHCI #2 0:1a.0
|
||||
Package() { 0x001affff, 0, \_SB.PCI0.LPCB.LNKF, 0 },
|
||||
// LPC device 0:1f.0
|
||||
Package() { 0x001fffff, 0, \_SB.PCI0.LPCB.LNKB, 0 },
|
||||
Package() { 0x001fffff, 1, \_SB.PCI0.LPCB.LNKH, 0 },
|
||||
Package() { 0x001fffff, 2, \_SB.PCI0.LPCB.LNKA, 0 },
|
||||
Package() { 0x001fffff, 3, \_SB.PCI0.LPCB.LNKC, 0 },
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2012 The ChromiumOS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
/* mainboard configuration */
|
||||
#include "../ec.h"
|
||||
|
||||
#define SIO_EC_ENABLE_PS2K // Enable PS/2 Keyboard
|
||||
#define SIO_ENABLE_PS2M // Enable PS/2 Mouse
|
||||
|
||||
/* ACPI code for EC SuperIO functions */
|
||||
#include <ec/quanta/it8518/acpi/superio.asl>
|
|
@ -0,0 +1,88 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2011 The Chromium OS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
// Thermal Zone
|
||||
|
||||
Scope (\_TZ)
|
||||
{
|
||||
ThermalZone (THRM)
|
||||
{
|
||||
Name (_TC1, 0x02)
|
||||
Name (_TC2, 0x03)
|
||||
|
||||
// Thermal zone polling frequency: 10 seconds
|
||||
Name (_TZP, 100)
|
||||
|
||||
// Thermal sampling period for passive cooling: 10 seconds
|
||||
Name (_TSP, 100)
|
||||
|
||||
// Convert from Degrees C to 1/10 Kelvin for ACPI
|
||||
Method (CTOK, 1)
|
||||
{
|
||||
// 10th of Degrees C
|
||||
Multiply (Arg0, 10, Local0)
|
||||
|
||||
// Convert to Kelvin
|
||||
Add (Local0, 2732, Local0)
|
||||
|
||||
Return (Local0)
|
||||
}
|
||||
|
||||
// Threshold for OS to shutdown
|
||||
Method (_CRT, 0, Serialized)
|
||||
{
|
||||
Return (CTOK (\TCRT))
|
||||
}
|
||||
|
||||
// Threshold for passive cooling
|
||||
Method (_PSV, 0, Serialized)
|
||||
{
|
||||
Return (CTOK (\TPSV))
|
||||
}
|
||||
|
||||
// Processors used for passive cooling
|
||||
Method (_PSL, 0, Serialized)
|
||||
{
|
||||
Return (\PPKG ())
|
||||
}
|
||||
|
||||
Method (_TMP, 0, Serialized)
|
||||
{
|
||||
// Returns Higher of the two readings for CPU & VGA Temperature
|
||||
If (LGreater (\_SB.PCI0.LPCB.EC0.TMP2, \_SB.PCI0.LPCB.EC0.TMP1))
|
||||
{
|
||||
// CPU high temperature
|
||||
Store (\_SB.PCI0.LPCB.EC0.TMP2, Local0)
|
||||
}
|
||||
Else
|
||||
{
|
||||
// VGA high temperature
|
||||
Store (\_SB.PCI0.LPCB.EC0.TMP1, Local0)
|
||||
}
|
||||
|
||||
// If temp less 35 or great then 115, set default 35
|
||||
If (Or (LLess (Local0, 35), LGreater (Local0, 115)))
|
||||
{
|
||||
Store (35, Local0)
|
||||
}
|
||||
|
||||
Return (CTOK (Local0))
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2007-2009 coresystems GmbH
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
// Brightness write
|
||||
Method (BRTW, 1, Serialized)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
// Hot Key Display Switch
|
||||
Method (HKDS, 1, Serialized)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
// Lid Switch Display Switch
|
||||
Method (LSDS, 1, Serialized)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
// Brightness Notification
|
||||
Method(BRTN,1,Serialized)
|
||||
{
|
||||
// TODO (no displays defined yet)
|
||||
}
|
||||
|
|
@ -0,0 +1,274 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2007-2009 coresystems GmbH
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include <types.h>
|
||||
#include <string.h>
|
||||
#include <cbmem.h>
|
||||
#include <console/console.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/ioapic.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <arch/smp/mpspec.h>
|
||||
#include <device/device.h>
|
||||
#include <device/pci.h>
|
||||
#include <device/pci_ids.h>
|
||||
#include <cpu/cpu.h>
|
||||
#include <cpu/x86/msr.h>
|
||||
#include <vendorcode/google/chromeos/gnvs.h>
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
#include <ec/quanta/it8518/ec.h>
|
||||
#include "ec.h"
|
||||
#include "onboard.h"
|
||||
|
||||
extern const unsigned char AmlCode[];
|
||||
#if CONFIG_HAVE_ACPI_SLIC
|
||||
unsigned long acpi_create_slic(unsigned long current);
|
||||
#endif
|
||||
|
||||
#include <southbridge/intel/bd82x6x/pch.h>
|
||||
#include <southbridge/intel/bd82x6x/nvs.h>
|
||||
#include "thermal.h"
|
||||
|
||||
static void acpi_update_thermal_table(global_nvs_t *gnvs)
|
||||
{
|
||||
/* EC handles all thermal and fan control on Stout. */
|
||||
gnvs->tcrt = CRITICAL_TEMPERATURE;
|
||||
gnvs->tpsv = PASSIVE_TEMPERATURE;
|
||||
gnvs->tmax = MAX_TEMPERATURE;
|
||||
}
|
||||
|
||||
static void acpi_create_gnvs(global_nvs_t *gnvs)
|
||||
{
|
||||
memset((void *)gnvs, 0, sizeof(*gnvs));
|
||||
gnvs->apic = 1;
|
||||
gnvs->mpen = 1; /* Enable Multi Processing */
|
||||
gnvs->pcnt = dev_count_cpu();
|
||||
|
||||
/* Disable USB ports in S3 by default */
|
||||
gnvs->s3u0 = 0;
|
||||
gnvs->s3u1 = 0;
|
||||
|
||||
/* Disable USB ports in S5 by default */
|
||||
gnvs->s5u0 = 0;
|
||||
gnvs->s5u1 = 0;
|
||||
|
||||
/* CBMEM TOC */
|
||||
gnvs->cmem = (u32)get_cbmem_toc();
|
||||
|
||||
/* IGD Displays */
|
||||
gnvs->ndid = 3;
|
||||
gnvs->did[0] = 0x80000100;
|
||||
gnvs->did[1] = 0x80000240;
|
||||
gnvs->did[2] = 0x80000410;
|
||||
gnvs->did[3] = 0x80000410;
|
||||
gnvs->did[4] = 0x00000005;
|
||||
|
||||
#if CONFIG_CHROMEOS
|
||||
// TODO(reinauer) this could move elsewhere?
|
||||
chromeos_init_vboot(&(gnvs->chromeos));
|
||||
|
||||
gnvs->chromeos.vbt2 = get_recovery_mode_switch() ?
|
||||
ACTIVE_ECFW_RO : ACTIVE_ECFW_RW;
|
||||
#endif
|
||||
|
||||
acpi_update_thermal_table(gnvs);
|
||||
|
||||
// the lid is open by default.
|
||||
gnvs->lids = 1;
|
||||
|
||||
/* XHCI Mode */
|
||||
gnvs->xhci = XHCI_MODE;
|
||||
}
|
||||
|
||||
unsigned long acpi_fill_madt(unsigned long current)
|
||||
{
|
||||
/* Local APICs */
|
||||
current = acpi_create_madt_lapics(current);
|
||||
|
||||
/* IOAPIC */
|
||||
current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
|
||||
2, IO_APIC_ADDR, 0);
|
||||
|
||||
/* INT_SRC_OVR */
|
||||
current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
|
||||
current, 0, 0, 2, 0);
|
||||
current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
|
||||
current, 0, 9, 9, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_HIGH);
|
||||
|
||||
return current;
|
||||
}
|
||||
|
||||
unsigned long acpi_fill_ssdt_generator(unsigned long current,
|
||||
const char *oem_table_id)
|
||||
{
|
||||
generate_cpu_entries();
|
||||
return (unsigned long) (acpigen_get_current());
|
||||
}
|
||||
|
||||
unsigned long acpi_fill_slit(unsigned long current)
|
||||
{
|
||||
// Not implemented
|
||||
return current;
|
||||
}
|
||||
|
||||
unsigned long acpi_fill_srat(unsigned long current)
|
||||
{
|
||||
/* No NUMA, no SRAT */
|
||||
return current;
|
||||
}
|
||||
|
||||
#define ALIGN_CURRENT current = ((current + 0x0f) & -0x10)
|
||||
unsigned long write_acpi_tables(unsigned long start)
|
||||
{
|
||||
unsigned long current;
|
||||
int i;
|
||||
acpi_rsdp_t *rsdp;
|
||||
acpi_rsdt_t *rsdt;
|
||||
acpi_xsdt_t *xsdt;
|
||||
acpi_hpet_t *hpet;
|
||||
acpi_madt_t *madt;
|
||||
acpi_mcfg_t *mcfg;
|
||||
acpi_fadt_t *fadt;
|
||||
acpi_facs_t *facs;
|
||||
#if CONFIG_HAVE_ACPI_SLIC
|
||||
acpi_header_t *slic;
|
||||
#endif
|
||||
acpi_header_t *ssdt;
|
||||
acpi_header_t *dsdt;
|
||||
|
||||
current = start;
|
||||
|
||||
/* Align ACPI tables to 16byte */
|
||||
ALIGN_CURRENT;
|
||||
|
||||
printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", start);
|
||||
|
||||
/* We need at least an RSDP and an RSDT Table */
|
||||
rsdp = (acpi_rsdp_t *) current;
|
||||
current += sizeof(acpi_rsdp_t);
|
||||
ALIGN_CURRENT;
|
||||
rsdt = (acpi_rsdt_t *) current;
|
||||
current += sizeof(acpi_rsdt_t);
|
||||
ALIGN_CURRENT;
|
||||
xsdt = (acpi_xsdt_t *) current;
|
||||
current += sizeof(acpi_xsdt_t);
|
||||
ALIGN_CURRENT;
|
||||
|
||||
/* clear all table memory */
|
||||
memset((void *) start, 0, current - start);
|
||||
|
||||
acpi_write_rsdp(rsdp, rsdt, xsdt);
|
||||
acpi_write_rsdt(rsdt);
|
||||
acpi_write_xsdt(xsdt);
|
||||
|
||||
printk(BIOS_DEBUG, "ACPI: * FACS\n");
|
||||
facs = (acpi_facs_t *) current;
|
||||
current += sizeof(acpi_facs_t);
|
||||
ALIGN_CURRENT;
|
||||
acpi_create_facs(facs);
|
||||
|
||||
printk(BIOS_DEBUG, "ACPI: * DSDT\n");
|
||||
dsdt = (acpi_header_t *) current;
|
||||
memcpy(dsdt, &AmlCode, sizeof(acpi_header_t));
|
||||
current += dsdt->length;
|
||||
memcpy(dsdt, &AmlCode, dsdt->length);
|
||||
|
||||
ALIGN_CURRENT;
|
||||
|
||||
printk(BIOS_DEBUG, "ACPI: * FADT\n");
|
||||
fadt = (acpi_fadt_t *) current;
|
||||
current += sizeof(acpi_fadt_t);
|
||||
ALIGN_CURRENT;
|
||||
|
||||
acpi_create_fadt(fadt, facs, dsdt);
|
||||
acpi_add_table(rsdp, fadt);
|
||||
|
||||
/*
|
||||
* We explicitly add these tables later on:
|
||||
*/
|
||||
printk(BIOS_DEBUG, "ACPI: * HPET\n");
|
||||
|
||||
hpet = (acpi_hpet_t *) current;
|
||||
current += sizeof(acpi_hpet_t);
|
||||
ALIGN_CURRENT;
|
||||
acpi_create_hpet(hpet);
|
||||
acpi_add_table(rsdp, hpet);
|
||||
|
||||
/* If we want to use HPET Timers Linux wants an MADT */
|
||||
printk(BIOS_DEBUG, "ACPI: * MADT\n");
|
||||
|
||||
madt = (acpi_madt_t *) current;
|
||||
acpi_create_madt(madt);
|
||||
current += madt->header.length;
|
||||
ALIGN_CURRENT;
|
||||
acpi_add_table(rsdp, madt);
|
||||
|
||||
printk(BIOS_DEBUG, "ACPI: * MCFG\n");
|
||||
mcfg = (acpi_mcfg_t *) current;
|
||||
acpi_create_mcfg(mcfg);
|
||||
current += mcfg->header.length;
|
||||
ALIGN_CURRENT;
|
||||
acpi_add_table(rsdp, mcfg);
|
||||
|
||||
/* Pack GNVS into the ACPI table area */
|
||||
for (i=0; i < dsdt->length; i++) {
|
||||
if (*(u32*)(((u32)dsdt) + i) == 0xC0DEBABE) {
|
||||
printk(BIOS_DEBUG, "ACPI: Patching up global NVS in "
|
||||
"DSDT at offset 0x%04x -> 0x%08lx\n", i, current);
|
||||
*(u32*)(((u32)dsdt) + i) = current; // 0x92 bytes
|
||||
acpi_save_gnvs(current);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* And fill it */
|
||||
acpi_create_gnvs((global_nvs_t *)current);
|
||||
|
||||
/* And tell SMI about it */
|
||||
smm_setup_structures((void *)current, NULL, NULL);
|
||||
|
||||
current += sizeof(global_nvs_t);
|
||||
ALIGN_CURRENT;
|
||||
|
||||
/* We patched up the DSDT, so we need to recalculate the checksum */
|
||||
dsdt->checksum = 0;
|
||||
dsdt->checksum = acpi_checksum((void *)dsdt, dsdt->length);
|
||||
|
||||
printk(BIOS_DEBUG, "ACPI: * DSDT @ %p Length %x\n", dsdt,
|
||||
dsdt->length);
|
||||
|
||||
#if CONFIG_HAVE_ACPI_SLIC
|
||||
printk(BIOS_DEBUG, "ACPI: * SLIC\n");
|
||||
slic = (acpi_header_t *)current;
|
||||
current += acpi_create_slic(current);
|
||||
ALIGN_CURRENT;
|
||||
acpi_add_table(rsdp, slic);
|
||||
#endif
|
||||
|
||||
printk(BIOS_DEBUG, "ACPI: * SSDT\n");
|
||||
ssdt = (acpi_header_t *)current;
|
||||
acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
|
||||
current += ssdt->length;
|
||||
acpi_add_table(rsdp, ssdt);
|
||||
ALIGN_CURRENT;
|
||||
|
||||
printk(BIOS_DEBUG, "current = %lx\n", current);
|
||||
printk(BIOS_INFO, "ACPI: done.\n");
|
||||
return current;
|
||||
}
|
|
@ -0,0 +1,143 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2011-2012 The ChromiumOS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
#include <arch/io.h>
|
||||
#include <console/console.h>
|
||||
#ifdef __PRE_RAM__
|
||||
#include <arch/romcc_io.h>
|
||||
#else
|
||||
#include <device/device.h>
|
||||
#include <device/pci.h>
|
||||
#endif
|
||||
|
||||
#include <southbridge/intel/bd82x6x/pch.h>
|
||||
#include "ec.h"
|
||||
#include <ec/quanta/it8518/ec.h>
|
||||
|
||||
#ifndef __PRE_RAM__
|
||||
#include <boot/coreboot_tables.h>
|
||||
#include <arch/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 7
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
static int ec_in_rec_mode;
|
||||
static int ec_rec_flag_good;
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
device_t dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
|
||||
u16 gpio_base = pci_read_config32(dev, GPIOBASE) & 0xfffe;
|
||||
|
||||
if (!gpio_base)
|
||||
return;
|
||||
|
||||
u32 gp_lvl = inl(gpio_base + GP_LVL);
|
||||
|
||||
gpios->size = sizeof(*gpios) + (GPIO_COUNT * sizeof(struct lb_gpio));
|
||||
gpios->count = GPIO_COUNT;
|
||||
|
||||
/* Write Protect: GPIO7 */
|
||||
gpios->gpios[0].port = 7;
|
||||
gpios->gpios[0].polarity = ACTIVE_LOW;
|
||||
gpios->gpios[0].value = (gp_lvl >> 7) & 1;
|
||||
strncpy((char *)gpios->gpios[0].name,"write protect",
|
||||
GPIO_MAX_NAME_LENGTH);
|
||||
|
||||
/* Recovery: Virtual switch */
|
||||
gpios->gpios[1].port = -1;
|
||||
gpios->gpios[1].polarity = ACTIVE_HIGH;
|
||||
gpios->gpios[1].value = get_recovery_mode_switch();
|
||||
strncpy((char *)gpios->gpios[1].name,"recovery", GPIO_MAX_NAME_LENGTH);
|
||||
|
||||
/* Developer: Virtual switch */
|
||||
gpios->gpios[2].port = -1;
|
||||
gpios->gpios[2].polarity = ACTIVE_HIGH;
|
||||
gpios->gpios[2].value = get_developer_mode_switch();
|
||||
strncpy((char *)gpios->gpios[2].name,"developer", GPIO_MAX_NAME_LENGTH);
|
||||
|
||||
/* Lid Switch: Virtual switch */
|
||||
gpios->gpios[3].port = -1;
|
||||
gpios->gpios[3].polarity = ACTIVE_HIGH;
|
||||
gpios->gpios[3].value = 1; /* Hard-code to open */
|
||||
strncpy((char *)gpios->gpios[3].name,"lid", GPIO_MAX_NAME_LENGTH);
|
||||
|
||||
/* Power Button: Virtual switch */
|
||||
gpios->gpios[4].port = -1;
|
||||
gpios->gpios[4].polarity = ACTIVE_HIGH;
|
||||
gpios->gpios[4].value = 0; /* Hard-code to de-asserted */
|
||||
strncpy((char *)gpios->gpios[4].name,"power", GPIO_MAX_NAME_LENGTH);
|
||||
|
||||
/* Was VGA Option ROM loaded? */
|
||||
gpios->gpios[5].port = -1; /* Indicate that this is a pseudo GPIO */
|
||||
gpios->gpios[5].polarity = ACTIVE_HIGH;
|
||||
gpios->gpios[5].value = oprom_is_loaded;
|
||||
strncpy((char *)gpios->gpios[5].name,"oprom", GPIO_MAX_NAME_LENGTH);
|
||||
|
||||
/* EC is in RW mode when it isn't in recovery mode. */
|
||||
gpios->gpios[6].port = -1;
|
||||
gpios->gpios[6].polarity = ACTIVE_HIGH;
|
||||
gpios->gpios[6].value = !get_recovery_mode_switch();
|
||||
strncpy((char *)gpios->gpios[6].name,"ec_in_rw", GPIO_MAX_NAME_LENGTH);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* The dev-switch is virtual on Stout (and so handled elsewhere). */
|
||||
int get_developer_mode_switch(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* The recovery-switch is virtual on Stout and is handled via the EC.
|
||||
* Stout recovery mode is only valid if RTC_PWR_STS is set and the EC
|
||||
* indicated the recovery keys were pressed. We use a global flag for
|
||||
* rec_mode to be used after RTC_POWER_STS has been cleared. This function
|
||||
* is complicated by romstage support, which can't use a global variable.
|
||||
* Note, rec_mode is the only time the EC is in RO mode, otherwise, RW.
|
||||
*/
|
||||
int get_recovery_mode_switch(void)
|
||||
{
|
||||
#ifdef __PRE_RAM__
|
||||
device_t dev = PCI_DEV(0, 0x1f, 0);
|
||||
#else
|
||||
device_t dev = dev_find_slot(0, PCI_DEVFN(0x1f,0));
|
||||
#endif
|
||||
|
||||
u8 ec_status = ec_read(EC_STATUS_REG);
|
||||
u8 reg8 = pci_read_config8(dev, GEN_PMCON_3);
|
||||
|
||||
printk(BIOS_SPEW,"%s: EC status:%#x RTC_BAT: %x\n",
|
||||
__func__, ec_status, reg8 & RTC_BATTERY_DEAD);
|
||||
|
||||
#ifdef __PRE_RAM__
|
||||
return (((reg8 & RTC_BATTERY_DEAD) != 0) &&
|
||||
((ec_status & 0x3) == EC_IN_RECOVERY_MODE));
|
||||
#else
|
||||
if (!ec_rec_flag_good) {
|
||||
ec_in_rec_mode = (((reg8 & RTC_BATTERY_DEAD) != 0) &&
|
||||
((ec_status & 0x3) == EC_IN_RECOVERY_MODE));
|
||||
ec_rec_flag_good = 1;
|
||||
}
|
||||
return ec_in_rec_mode;
|
||||
#endif
|
||||
}
|
|
@ -0,0 +1,139 @@
|
|||
##
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## Copyright (C) 2007-2008 coresystems GmbH
|
||||
##
|
||||
## 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
|
||||
##
|
||||
|
||||
# -----------------------------------------------------------------
|
||||
entries
|
||||
|
||||
#start-bit length config config-ID name
|
||||
#0 8 r 0 seconds
|
||||
#8 8 r 0 alarm_seconds
|
||||
#16 8 r 0 minutes
|
||||
#24 8 r 0 alarm_minutes
|
||||
#32 8 r 0 hours
|
||||
#40 8 r 0 alarm_hours
|
||||
#48 8 r 0 day_of_week
|
||||
#56 8 r 0 day_of_month
|
||||
#64 8 r 0 month
|
||||
#72 8 r 0 year
|
||||
# -----------------------------------------------------------------
|
||||
# Status Register A
|
||||
#80 4 r 0 rate_select
|
||||
#84 3 r 0 REF_Clock
|
||||
#87 1 r 0 UIP
|
||||
# -----------------------------------------------------------------
|
||||
# Status Register B
|
||||
#88 1 r 0 auto_switch_DST
|
||||
#89 1 r 0 24_hour_mode
|
||||
#90 1 r 0 binary_values_enable
|
||||
#91 1 r 0 square-wave_out_enable
|
||||
#92 1 r 0 update_finished_enable
|
||||
#93 1 r 0 alarm_interrupt_enable
|
||||
#94 1 r 0 periodic_interrupt_enable
|
||||
#95 1 r 0 disable_clock_updates
|
||||
# -----------------------------------------------------------------
|
||||
# Status Register C
|
||||
#96 4 r 0 status_c_rsvd
|
||||
#100 1 r 0 uf_flag
|
||||
#101 1 r 0 af_flag
|
||||
#102 1 r 0 pf_flag
|
||||
#103 1 r 0 irqf_flag
|
||||
# -----------------------------------------------------------------
|
||||
# Status Register D
|
||||
#104 7 r 0 status_d_rsvd
|
||||
#111 1 r 0 valid_cmos_ram
|
||||
# -----------------------------------------------------------------
|
||||
# Diagnostic Status Register
|
||||
#112 8 r 0 diag_rsvd1
|
||||
|
||||
# -----------------------------------------------------------------
|
||||
0 120 r 0 reserved_memory
|
||||
#120 264 r 0 unused
|
||||
|
||||
# -----------------------------------------------------------------
|
||||
# RTC_BOOT_BYTE (coreboot hardcoded)
|
||||
384 1 e 4 boot_option
|
||||
385 1 e 4 last_boot
|
||||
388 4 r 0 reboot_bits
|
||||
#390 2 r 0 unused?
|
||||
|
||||
# -----------------------------------------------------------------
|
||||
# coreboot config options: console
|
||||
392 3 e 5 baud_rate
|
||||
395 4 e 6 debug_level
|
||||
#399 1 r 0 unused
|
||||
|
||||
# coreboot config options: cpu
|
||||
400 1 e 2 hyper_threading
|
||||
#401 7 r 0 unused
|
||||
|
||||
# coreboot config options: southbridge
|
||||
408 1 e 1 nmi
|
||||
409 2 e 7 power_on_after_fail
|
||||
#411 5 r 0 unused
|
||||
|
||||
# coreboot config options: bootloader
|
||||
#Used by ChromeOS:
|
||||
416 128 r 0 vbnv
|
||||
#544 440 r 0 unused
|
||||
|
||||
# SandyBridge MRC Scrambler Seed values
|
||||
896 32 r 0 mrc_scrambler_seed
|
||||
928 32 r 0 mrc_scrambler_seed_s3
|
||||
|
||||
# coreboot config options: check sums
|
||||
984 16 h 0 check_sum
|
||||
#1000 24 r 0 amd_reserved
|
||||
|
||||
# -----------------------------------------------------------------
|
||||
|
||||
enumerations
|
||||
|
||||
#ID value text
|
||||
1 0 Disable
|
||||
1 1 Enable
|
||||
2 0 Enable
|
||||
2 1 Disable
|
||||
4 0 Fallback
|
||||
4 1 Normal
|
||||
5 0 115200
|
||||
5 1 57600
|
||||
5 2 38400
|
||||
5 3 19200
|
||||
5 4 9600
|
||||
5 5 4800
|
||||
5 6 2400
|
||||
5 7 1200
|
||||
6 1 Emergency
|
||||
6 2 Alert
|
||||
6 3 Critical
|
||||
6 4 Error
|
||||
6 5 Warning
|
||||
6 6 Notice
|
||||
6 7 Info
|
||||
6 8 Debug
|
||||
6 9 Spew
|
||||
7 0 Disable
|
||||
7 1 Enable
|
||||
7 2 Keep
|
||||
# -----------------------------------------------------------------
|
||||
checksums
|
||||
|
||||
checksum 392 415 984
|
||||
|
||||
|
|
@ -0,0 +1,108 @@
|
|||
chip northbridge/intel/sandybridge
|
||||
|
||||
# Enable DisplayPort Hotplug with 6ms pulse
|
||||
register "gpu_dp_d_hotplug" = "0x06"
|
||||
|
||||
# Enable Panel as LVDS and configure power delays
|
||||
register "gpu_panel_port_select" = "0" # LVDS
|
||||
register "gpu_panel_power_cycle_delay" = "5" # T4: 400ms
|
||||
register "gpu_panel_power_up_delay" = "400" # T1+T2: 40ms
|
||||
register "gpu_panel_power_down_delay" = "150" # T3: 15ms
|
||||
register "gpu_panel_power_backlight_on_delay" = "2100" # T5: 210ms
|
||||
register "gpu_panel_power_backlight_off_delay" = "2100" # TD: 210ms
|
||||
|
||||
device cpu_cluster 0 on
|
||||
chip cpu/intel/socket_rPGA989
|
||||
device lapic 0 on end
|
||||
end
|
||||
chip cpu/intel/model_206ax
|
||||
# Magic APIC ID to locate this chip
|
||||
device lapic 0xACAC off end
|
||||
|
||||
# Coordinate with HW_ALL
|
||||
register "pstate_coord_type" = "0xfe"
|
||||
|
||||
register "tcc_offset" = "5" # TCC of 95C
|
||||
|
||||
register "c1_acpower" = "1" # ACPI(C1) = MWAIT(C1)
|
||||
register "c2_acpower" = "3" # ACPI(C2) = MWAIT(C3)
|
||||
register "c3_acpower" = "5" # ACPI(C3) = MWAIT(C7)
|
||||
|
||||
register "c1_battery" = "1" # ACPI(C1) = MWAIT(C1)
|
||||
register "c2_battery" = "3" # ACPI(C2) = MWAIT(C3)
|
||||
register "c3_battery" = "5" # ACPI(C3) = MWAIT(C7)
|
||||
end
|
||||
end
|
||||
|
||||
device domain 0 on
|
||||
subsystemid 0x1ae0 0xc000 inherit
|
||||
device pci 00.0 on end # host bridge
|
||||
device pci 02.0 on end # vga controller
|
||||
|
||||
chip southbridge/intel/bd82x6x # Intel Series 6 Cougar Point PCH
|
||||
register "pirqa_routing" = "0x8b"
|
||||
register "pirqb_routing" = "0x8a"
|
||||
register "pirqc_routing" = "0x8b"
|
||||
register "pirqd_routing" = "0x8b"
|
||||
register "pirqe_routing" = "0x80"
|
||||
register "pirqf_routing" = "0x80"
|
||||
register "pirqg_routing" = "0x80"
|
||||
register "pirqh_routing" = "0x80"
|
||||
|
||||
# GPI routing
|
||||
# 0 No effect (default)
|
||||
# 1 SMI# (if corresponding ALT_GPI_SMI_EN bit is also set)
|
||||
# 2 SCI (if corresponding GPIO_EN bit is also set)
|
||||
register "alt_gp_smi_en" = "0x0002"
|
||||
register "gpi1_routing" = "1"
|
||||
register "gpi6_routing" = "2"
|
||||
|
||||
register "ide_legacy_combined" = "0x0"
|
||||
register "sata_ahci" = "0x1"
|
||||
register "sata_port_map" = "0x3"
|
||||
|
||||
# Enable EC Port 0x68/0x6C
|
||||
register "gen1_dec" = "0x00040069"
|
||||
|
||||
# EC range is 0x800-0x9ff
|
||||
register "gen2_dec" = "0x00fc0901"
|
||||
|
||||
# EC range is 0x1610-0x161F
|
||||
register "gen3_dec" = "0x0001C1611"
|
||||
|
||||
# Enable zero-based linear PCIe root port functions
|
||||
register "pcie_port_coalesce" = "1"
|
||||
|
||||
device pci 14.0 on end # USB 3.0 Controller
|
||||
device pci 16.0 on end # Management Engine Interface 1
|
||||
device pci 16.1 off end # Management Engine Interface 2
|
||||
device pci 16.2 off end # Management Engine IDE-R
|
||||
device pci 16.3 off end # Management Engine KT
|
||||
device pci 19.0 off end # Intel Gigabit Ethernet
|
||||
device pci 1a.0 on end # USB2 EHCI #2 (AUO4, BlueTooth)
|
||||
device pci 1b.0 on end # High Definition Audio
|
||||
device pci 1c.0 on end # PCIe Port #1
|
||||
device pci 1c.1 on end # PCIe Port #2 (WLAN)
|
||||
device pci 1c.2 on end # PCIe Port #3 (Card Reader)
|
||||
register "pcie_aspm_f2" = "0x3"
|
||||
device pci 1c.3 off end # PCIe Port #4
|
||||
device pci 1c.4 off end # PCIe Port #5
|
||||
device pci 1c.5 on end # PCIe Port #6 (LAN)
|
||||
device pci 1c.6 off end # PCIe Port #7
|
||||
device pci 1c.7 off end # PCIe Port #8
|
||||
device pci 1d.0 on end # USB2 EHCI #1 (Camera, WLAN, WWAN)
|
||||
device pci 1e.0 off end # PCI bridge
|
||||
device pci 1f.0 on
|
||||
chip ec/quanta/it8518
|
||||
# 60h/64h KBC
|
||||
device pnp ff.1 on # dummy address
|
||||
end
|
||||
end
|
||||
end # LPC bridge
|
||||
device pci 1f.2 on end # SATA Controller 1 (HDD/SSD)
|
||||
device pci 1f.3 on end # SMBus Controller
|
||||
device pci 1f.5 off end # SATA Controller 2 (MSATA)
|
||||
device pci 1f.6 off end # Thermal
|
||||
end
|
||||
end
|
||||
end
|
|
@ -0,0 +1,57 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2007-2009 coresystems GmbH
|
||||
* Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
DefinitionBlock(
|
||||
"dsdt.aml",
|
||||
"DSDT",
|
||||
0x02, // DSDT revision: ACPI v2.0
|
||||
"COREv4", // OEM id
|
||||
"COREBOOT", // OEM table id
|
||||
0x20110725 // OEM revision
|
||||
)
|
||||
{
|
||||
// Some generic macros
|
||||
#include "acpi/platform.asl"
|
||||
#include "acpi/mainboard.asl"
|
||||
|
||||
// global NVS and variables
|
||||
#include <southbridge/intel/bd82x6x/acpi/globalnvs.asl>
|
||||
|
||||
// General Purpose Events
|
||||
//#include "acpi/gpe.asl"
|
||||
|
||||
#include "acpi/thermal.asl"
|
||||
|
||||
#include <cpu/intel/model_206ax/acpi/cpu.asl>
|
||||
|
||||
Scope (\_SB) {
|
||||
Device (PCI0)
|
||||
{
|
||||
#include <northbridge/intel/sandybridge/acpi/sandybridge.asl>
|
||||
#include <southbridge/intel/bd82x6x/acpi/pch.asl>
|
||||
}
|
||||
}
|
||||
|
||||
#include "acpi/chromeos.asl"
|
||||
#include <vendorcode/google/chromeos/acpi/chromeos.asl>
|
||||
|
||||
/* Chipset specific sleep states */
|
||||
#include <southbridge/intel/bd82x6x/acpi/sleepstates.asl>
|
||||
}
|
|
@ -0,0 +1,127 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2012 The Chromium OS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/io.h>
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
#include <types.h>
|
||||
#include <console/console.h>
|
||||
#include <ec/quanta/it8518/ec.h>
|
||||
#include <device/device.h>
|
||||
#include <device/pci.h>
|
||||
#include <southbridge/intel/bd82x6x/pch.h>
|
||||
#include <elog.h>
|
||||
#include "ec.h"
|
||||
|
||||
#ifdef __SMM__
|
||||
#include <cpu/x86/smm.h>
|
||||
#endif
|
||||
|
||||
#ifndef __SMM__
|
||||
void stout_ec_init(void)
|
||||
{
|
||||
|
||||
printk(BIOS_DEBUG,"%s: EC FW version %x%x\n", __func__,
|
||||
ec_read(EC_FW_VER), ec_read(EC_FW_VER + 1));
|
||||
|
||||
/*
|
||||
* Important: get_recovery_mode_switch() must be called in EC init.
|
||||
*/
|
||||
get_recovery_mode_switch();
|
||||
|
||||
/* Unmute */
|
||||
ec_kbc_write_cmd(EC_KBD_CMD_UNMUTE);
|
||||
|
||||
/*
|
||||
* Set USB Power off in S3 (enabled in S3 path if requested in gnvs)
|
||||
* Bit0 of 0x0D/Bit0 of 0x26
|
||||
* 0/0 All USB port off
|
||||
* 1/0 USB on, all USB port didn’t support wake up
|
||||
* 0/1 USB on, yellow port support wake up charge, but may not support
|
||||
* charge smart phone.
|
||||
* 1/1 USB on, yellow port in AUTO mode and didn’t support wake up system.
|
||||
*/
|
||||
ec_write(EC_PERIPH_CNTL_3, ec_read(EC_PERIPH_CNTL_3) & 0xE);
|
||||
ec_write(EC_USB_S3_EN, ec_read(EC_USB_S3_EN) & 0xE);
|
||||
|
||||
// TODO: Power Limit Setting
|
||||
}
|
||||
|
||||
#else // SMM
|
||||
|
||||
void stout_ec_finalize_smm(void)
|
||||
{
|
||||
u8 ec_reg, critical_shutdown = 0;
|
||||
u32 pm1_cnt;
|
||||
|
||||
/*
|
||||
* Check EC for error conditions.
|
||||
*/
|
||||
|
||||
/* Fan Error : Peripheral Status 3 (0x35) bit 4 */
|
||||
ec_reg = ec_read(EC_PERIPH_STAT_3);
|
||||
|
||||
if (ec_reg & 0x8) {
|
||||
printk(BIOS_ERR, " EC Fan Error\n");
|
||||
critical_shutdown = 1;
|
||||
#if CONFIG_ELOG
|
||||
elog_add_event_word(EC_EVENT_BATTERY_CRITICAL, EC_EVENT_FAN_ERROR);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
/* Thermal Device Error : Peripheral Status 3 (0x35) bit 8 */
|
||||
if (ec_reg & 0x80) {
|
||||
printk(BIOS_ERR, " EC Thermal Device Error\n");
|
||||
critical_shutdown = 1;
|
||||
#if CONFIG_ELOG
|
||||
elog_add_event_word(EC_EVENT_BATTERY_CRITICAL, EC_EVENT_THERMAL);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
/* Critical Battery Error */
|
||||
ec_reg = ec_read(EC_MBAT_STATUS);
|
||||
|
||||
if ((ec_reg & 0xCF) == 0xC0) {
|
||||
printk(BIOS_ERR, " EC Critical Battery Error\n");
|
||||
critical_shutdown = 1;
|
||||
#if CONFIG_ELOG
|
||||
elog_add_event_word(ELOG_TYPE_EC_EVENT, EC_EVENT_BATTERY_CRITICAL);
|
||||
#endif
|
||||
}
|
||||
|
||||
if ((ec_reg & 0x8F) == 0x8F) {
|
||||
printk(BIOS_ERR, " EC Read Battery Error\n");
|
||||
#if CONFIG_ELOG
|
||||
elog_add_event_word(ELOG_TYPE_EC_EVENT, EC_EVENT_BATTERY);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
if (critical_shutdown) {
|
||||
printk(BIOS_ERR, "EC critical_shutdown");
|
||||
|
||||
/* Go to S5 */
|
||||
pm1_cnt = inl(smm_get_pmbase() + PM1_CNT);
|
||||
pm1_cnt |= (0xf << 10);
|
||||
outl(pm1_cnt, smm_get_pmbase() + PM1_CNT);
|
||||
}
|
||||
}
|
||||
#endif //__SMM__
|
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2011 The Chromium OS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#ifndef STOUT_EC_H
|
||||
#define STOUT_EC_H
|
||||
|
||||
#define EC_SCI_GPI 6 /* GPIO6 is EC_SCI# */
|
||||
#define EC_SMI_GPI 1 /* GPIO1 is EC_SMI# */
|
||||
|
||||
#define EC_SMI_LID_CLOSED 0x2B
|
||||
|
||||
#ifndef __ACPI__
|
||||
extern void stout_ec_init(void);
|
||||
#endif
|
||||
|
||||
#ifdef __SMM__
|
||||
void stout_ec_finalize_smm(void);
|
||||
#endif
|
||||
|
||||
#endif // STOUT_EC_H
|
|
@ -0,0 +1,166 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2007-2009 coresystems GmbH
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <device/pci.h>
|
||||
#include <arch/acpi.h>
|
||||
|
||||
/* FIXME: This needs to go into a separate .h file
|
||||
* to be included by the ich7 smi handler, ich7 smi init
|
||||
* code and the mainboard fadt.
|
||||
*/
|
||||
#define APM_CNT 0xb2
|
||||
#define CST_CONTROL 0x85
|
||||
#define PST_CONTROL 0x80
|
||||
#define ACPI_DISABLE 0x1e
|
||||
#define ACPI_ENABLE 0xe1
|
||||
#define GNVS_UPDATE 0xea
|
||||
|
||||
void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
|
||||
{
|
||||
acpi_header_t *header = &(fadt->header);
|
||||
u16 pmbase = pci_read_config16(dev_find_slot(0, PCI_DEVFN(0x1f,0)),
|
||||
0x40) & 0xfffe;
|
||||
|
||||
memset((void *) fadt, 0, sizeof(acpi_fadt_t));
|
||||
memcpy(header->signature, "FACP", 4);
|
||||
header->length = sizeof(acpi_fadt_t);
|
||||
header->revision = 3;
|
||||
memcpy(header->oem_id, OEM_ID, 6);
|
||||
memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
|
||||
memcpy(header->asl_compiler_id, "CORE", 4);
|
||||
header->asl_compiler_revision = 1;
|
||||
|
||||
fadt->firmware_ctrl = (unsigned long) facs;
|
||||
fadt->dsdt = (unsigned long) dsdt;
|
||||
fadt->model = 1;
|
||||
fadt->preferred_pm_profile = PM_DESKTOP;
|
||||
|
||||
fadt->sci_int = 0x9;
|
||||
fadt->smi_cmd = APM_CNT;
|
||||
fadt->acpi_enable = ACPI_ENABLE;
|
||||
fadt->acpi_disable = ACPI_DISABLE;
|
||||
fadt->s4bios_req = 0x0;
|
||||
fadt->pstate_cnt = 0;
|
||||
|
||||
fadt->pm1a_evt_blk = pmbase;
|
||||
fadt->pm1b_evt_blk = 0x0;
|
||||
fadt->pm1a_cnt_blk = pmbase + 0x4;
|
||||
fadt->pm1b_cnt_blk = 0x0;
|
||||
fadt->pm2_cnt_blk = pmbase + 0x50;
|
||||
fadt->pm_tmr_blk = pmbase + 0x8;
|
||||
fadt->gpe0_blk = pmbase + 0x20;
|
||||
fadt->gpe1_blk = 0;
|
||||
|
||||
fadt->pm1_evt_len = 4;
|
||||
fadt->pm1_cnt_len = 2;
|
||||
fadt->pm2_cnt_len = 1;
|
||||
fadt->pm_tmr_len = 4;
|
||||
fadt->gpe0_blk_len = 16;
|
||||
fadt->gpe1_blk_len = 0;
|
||||
fadt->gpe1_base = 0;
|
||||
fadt->cst_cnt = 0;
|
||||
fadt->p_lvl2_lat = 1;
|
||||
fadt->p_lvl3_lat = 87;
|
||||
fadt->flush_size = 1024;
|
||||
fadt->flush_stride = 16;
|
||||
fadt->duty_offset = 1;
|
||||
fadt->duty_width = 0;
|
||||
fadt->day_alrm = 0xd;
|
||||
fadt->mon_alrm = 0x00;
|
||||
fadt->century = 0x00;
|
||||
fadt->iapc_boot_arch = ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042;
|
||||
|
||||
fadt->flags = ACPI_FADT_WBINVD | ACPI_FADT_C1_SUPPORTED |
|
||||
ACPI_FADT_C2_MP_SUPPORTED | ACPI_FADT_SLEEP_BUTTON |
|
||||
ACPI_FADT_RESET_REGISTER | ACPI_FADT_SEALED_CASE |
|
||||
ACPI_FADT_S4_RTC_WAKE | ACPI_FADT_PLATFORM_CLOCK;
|
||||
|
||||
fadt->reset_reg.space_id = 1;
|
||||
fadt->reset_reg.bit_width = 8;
|
||||
fadt->reset_reg.bit_offset = 0;
|
||||
fadt->reset_reg.resv = 0;
|
||||
fadt->reset_reg.addrl = 0xcf9;
|
||||
fadt->reset_reg.addrh = 0;
|
||||
|
||||
fadt->reset_value = 6;
|
||||
fadt->x_firmware_ctl_l = (unsigned long)facs;
|
||||
fadt->x_firmware_ctl_h = 0;
|
||||
fadt->x_dsdt_l = (unsigned long)dsdt;
|
||||
fadt->x_dsdt_h = 0;
|
||||
|
||||
fadt->x_pm1a_evt_blk.space_id = 1;
|
||||
fadt->x_pm1a_evt_blk.bit_width = 32;
|
||||
fadt->x_pm1a_evt_blk.bit_offset = 0;
|
||||
fadt->x_pm1a_evt_blk.resv = 0;
|
||||
fadt->x_pm1a_evt_blk.addrl = pmbase;
|
||||
fadt->x_pm1a_evt_blk.addrh = 0x0;
|
||||
|
||||
fadt->x_pm1b_evt_blk.space_id = 1;
|
||||
fadt->x_pm1b_evt_blk.bit_width = 0;
|
||||
fadt->x_pm1b_evt_blk.bit_offset = 0;
|
||||
fadt->x_pm1b_evt_blk.resv = 0;
|
||||
fadt->x_pm1b_evt_blk.addrl = 0x0;
|
||||
fadt->x_pm1b_evt_blk.addrh = 0x0;
|
||||
|
||||
fadt->x_pm1a_cnt_blk.space_id = 1;
|
||||
fadt->x_pm1a_cnt_blk.bit_width = 16;
|
||||
fadt->x_pm1a_cnt_blk.bit_offset = 0;
|
||||
fadt->x_pm1a_cnt_blk.resv = 0;
|
||||
fadt->x_pm1a_cnt_blk.addrl = pmbase + 0x4;
|
||||
fadt->x_pm1a_cnt_blk.addrh = 0x0;
|
||||
|
||||
fadt->x_pm1b_cnt_blk.space_id = 1;
|
||||
fadt->x_pm1b_cnt_blk.bit_width = 0;
|
||||
fadt->x_pm1b_cnt_blk.bit_offset = 0;
|
||||
fadt->x_pm1b_cnt_blk.resv = 0;
|
||||
fadt->x_pm1b_cnt_blk.addrl = 0x0;
|
||||
fadt->x_pm1b_cnt_blk.addrh = 0x0;
|
||||
|
||||
fadt->x_pm2_cnt_blk.space_id = 1;
|
||||
fadt->x_pm2_cnt_blk.bit_width = 8;
|
||||
fadt->x_pm2_cnt_blk.bit_offset = 0;
|
||||
fadt->x_pm2_cnt_blk.resv = 0;
|
||||
fadt->x_pm2_cnt_blk.addrl = pmbase + 0x50;
|
||||
fadt->x_pm2_cnt_blk.addrh = 0x0;
|
||||
|
||||
fadt->x_pm_tmr_blk.space_id = 1;
|
||||
fadt->x_pm_tmr_blk.bit_width = 32;
|
||||
fadt->x_pm_tmr_blk.bit_offset = 0;
|
||||
fadt->x_pm_tmr_blk.resv = 0;
|
||||
fadt->x_pm_tmr_blk.addrl = pmbase + 0x8;
|
||||
fadt->x_pm_tmr_blk.addrh = 0x0;
|
||||
|
||||
fadt->x_gpe0_blk.space_id = 1;
|
||||
fadt->x_gpe0_blk.bit_width = 64;
|
||||
fadt->x_gpe0_blk.bit_offset = 0;
|
||||
fadt->x_gpe0_blk.resv = 0;
|
||||
fadt->x_gpe0_blk.addrl = pmbase + 0x20;
|
||||
fadt->x_gpe0_blk.addrh = 0x0;
|
||||
|
||||
fadt->x_gpe1_blk.space_id = 1;
|
||||
fadt->x_gpe1_blk.bit_width = 0;
|
||||
fadt->x_gpe1_blk.bit_offset = 0;
|
||||
fadt->x_gpe1_blk.resv = 0;
|
||||
fadt->x_gpe1_blk.addrl = 0x0;
|
||||
fadt->x_gpe1_blk.addrh = 0x0;
|
||||
|
||||
header->checksum =
|
||||
acpi_checksum((void *) fadt, header->length);
|
||||
}
|
|
@ -0,0 +1,292 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2011 The Chromium OS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#ifndef STOUT_GPIO_H
|
||||
#define STOUT_GPIO_H
|
||||
|
||||
#include "southbridge/intel/bd82x6x/gpio.h"
|
||||
|
||||
const struct pch_gpio_set1 pch_gpio_set1_mode = {
|
||||
.gpio0 = GPIO_MODE_GPIO, /* GPIO0 */
|
||||
.gpio1 = GPIO_MODE_GPIO, /* SIO_EXT_SMI# */
|
||||
.gpio2 = GPIO_MODE_NONE, /* NOT USED */
|
||||
.gpio3 = GPIO_MODE_NONE, /* NOT USED */
|
||||
.gpio4 = GPIO_MODE_NONE, /* NOT USED */
|
||||
.gpio5 = GPIO_MODE_GPIO, /* INTH# */
|
||||
.gpio6 = GPIO_MODE_GPIO, /* SIO_EXT_SCI# */
|
||||
.gpio7 = GPIO_MODE_GPIO, /* GE_SCR_WP# */
|
||||
.gpio8 = GPIO_MODE_NONE, /* NOT USED */
|
||||
.gpio9 = GPIO_MODE_NATIVE, /* USB_OC5# */
|
||||
.gpio10 = GPIO_MODE_NATIVE, /* USB_OC6# */
|
||||
.gpio11 = GPIO_MODE_NATIVE, /* SMBALERT# */
|
||||
.gpio12 = GPIO_MODE_GPIO, /* GPIO12 */
|
||||
.gpio13 = GPIO_MODE_GPIO, /* GPIO13 */
|
||||
.gpio14 = GPIO_MODE_NATIVE, /* USB_OC7# */
|
||||
.gpio15 = GPIO_MODE_GPIO, /* GPIO15 */
|
||||
.gpio16 = GPIO_MODE_GPIO, /* WWAN_LED_ON */
|
||||
.gpio17 = GPIO_MODE_GPIO, /* WLAN_LED_ON */
|
||||
.gpio18 = GPIO_MODE_NATIVE, /* PCIE_CLKREQ_WLAN# */
|
||||
.gpio19 = GPIO_MODE_GPIO, /* BBS_BIT0 */
|
||||
.gpio20 = GPIO_MODE_NATIVE, /* PCIE_CLKREQ_CARD# */
|
||||
.gpio21 = GPIO_MODE_GPIO, /* BT_DET# / TP29 */
|
||||
.gpio22 = GPIO_MODE_GPIO, /* MODEL_ID0 */
|
||||
.gpio23 = GPIO_MODE_GPIO, /* LCD_BK_OFF */
|
||||
.gpio24 = GPIO_MODE_NATIVE, /* GPIO24 */
|
||||
.gpio25 = GPIO_MODE_NATIVE, /* PCIE_REQ_WWAN# / TP89 */
|
||||
.gpio26 = GPIO_MODE_NATIVE, /* CLK_PCIE_REQ4# / TP59 */
|
||||
.gpio27 = GPIO_MODE_GPIO, /* MSATA_DTCT# */
|
||||
.gpio28 = GPIO_MODE_GPIO, /* PLL_ODVR_EN */
|
||||
.gpio29 = GPIO_MODE_GPIO, /* WLAN_AOAC_ON */
|
||||
.gpio30 = GPIO_MODE_NATIVE, /* SUS_PWR_ACK */
|
||||
.gpio31 = GPIO_MODE_NATIVE, /* AC_PRESENT */
|
||||
};
|
||||
|
||||
const struct pch_gpio_set1 pch_gpio_set1_direction = {
|
||||
/*
|
||||
* Note: Only gpio configured as "gpio" or "none" need to have the
|
||||
* direction configured.
|
||||
*/
|
||||
.gpio0 = GPIO_DIR_OUTPUT,
|
||||
.gpio1 = GPIO_DIR_INPUT,
|
||||
.gpio2 = GPIO_DIR_INPUT,
|
||||
.gpio3 = GPIO_DIR_INPUT,
|
||||
.gpio4 = GPIO_DIR_INPUT,
|
||||
.gpio5 = GPIO_DIR_OUTPUT,
|
||||
.gpio6 = GPIO_DIR_INPUT,
|
||||
.gpio7 = GPIO_DIR_INPUT,
|
||||
.gpio8 = GPIO_DIR_INPUT,
|
||||
|
||||
.gpio12 = GPIO_DIR_OUTPUT,
|
||||
.gpio13 = GPIO_DIR_OUTPUT,
|
||||
|
||||
.gpio15 = GPIO_DIR_INPUT,
|
||||
.gpio16 = GPIO_DIR_OUTPUT,
|
||||
.gpio17 = GPIO_DIR_OUTPUT,
|
||||
|
||||
.gpio19 = GPIO_DIR_OUTPUT,
|
||||
|
||||
.gpio21 = GPIO_DIR_OUTPUT,
|
||||
.gpio22 = GPIO_DIR_INPUT,
|
||||
.gpio23 = GPIO_DIR_OUTPUT,
|
||||
|
||||
.gpio27 = GPIO_DIR_INPUT,
|
||||
.gpio28 = GPIO_DIR_OUTPUT,
|
||||
.gpio29 = GPIO_DIR_OUTPUT,
|
||||
};
|
||||
|
||||
const struct pch_gpio_set1 pch_gpio_set1_level = {
|
||||
/*
|
||||
* Note: Only gpio configured as "gpio" or "none" need to have the
|
||||
* level set.
|
||||
*/
|
||||
.gpio0 = GPIO_LEVEL_HIGH,
|
||||
.gpio1 = GPIO_LEVEL_LOW,
|
||||
.gpio2 = GPIO_LEVEL_LOW,
|
||||
.gpio3 = GPIO_LEVEL_LOW,
|
||||
.gpio4 = GPIO_LEVEL_LOW,
|
||||
.gpio5 = GPIO_LEVEL_HIGH,
|
||||
.gpio6 = GPIO_LEVEL_LOW,
|
||||
.gpio7 = GPIO_LEVEL_HIGH,
|
||||
.gpio8 = GPIO_LEVEL_LOW,
|
||||
|
||||
.gpio12 = GPIO_LEVEL_LOW,
|
||||
.gpio13 = GPIO_LEVEL_LOW,
|
||||
|
||||
.gpio15 = GPIO_LEVEL_LOW,
|
||||
.gpio16 = GPIO_LEVEL_HIGH,
|
||||
.gpio17 = GPIO_LEVEL_LOW,
|
||||
|
||||
.gpio19 = GPIO_LEVEL_LOW,
|
||||
|
||||
.gpio21 = GPIO_LEVEL_LOW,
|
||||
.gpio22 = GPIO_LEVEL_LOW,
|
||||
.gpio23 = GPIO_LEVEL_LOW,
|
||||
|
||||
.gpio27 = GPIO_LEVEL_LOW,
|
||||
.gpio28 = GPIO_LEVEL_HIGH,
|
||||
.gpio29 = GPIO_LEVEL_HIGH,
|
||||
};
|
||||
|
||||
const struct pch_gpio_set1 pch_gpio_set1_invert = {
|
||||
.gpio1 = GPIO_INVERT,
|
||||
.gpio6 = GPIO_INVERT,
|
||||
.gpio8 = GPIO_INVERT,
|
||||
};
|
||||
|
||||
const struct pch_gpio_set2 pch_gpio_set2_mode = {
|
||||
.gpio32 = GPIO_MODE_NATIVE, /* PCI_CLKRUN# */
|
||||
.gpio33 = GPIO_MODE_GPIO, /* GPIO33 */
|
||||
.gpio34 = GPIO_MODE_GPIO, /* CCD_ON */
|
||||
.gpio35 = GPIO_MODE_GPIO, /* BT_ON */
|
||||
.gpio36 = GPIO_MODE_NONE, /* NOT USED */
|
||||
.gpio37 = GPIO_MODE_NONE, /* NOT USED */
|
||||
.gpio38 = GPIO_MODE_NONE, /* NOT USED */
|
||||
.gpio39 = GPIO_MODE_NONE, /* NOT USED */
|
||||
.gpio40 = GPIO_MODE_GPIO, /* USB_OC1# */
|
||||
.gpio41 = GPIO_MODE_GPIO, /* USB_OC2# */
|
||||
.gpio42 = GPIO_MODE_NATIVE, /* USB_OC3# */
|
||||
.gpio43 = GPIO_MODE_NATIVE, /* USB_OC4_AUO4# */
|
||||
.gpio44 = GPIO_MODE_NATIVE, /* PCIE_CLKREQ_LAN# */
|
||||
.gpio45 = GPIO_MODE_NATIVE, /* PCIECLKRQ6# / TP48 */
|
||||
.gpio46 = GPIO_MODE_NATIVE, /* PCIECLKRQ7# / TP57 */
|
||||
.gpio47 = GPIO_MODE_NATIVE, /* CLK_PEGA_REQ# */
|
||||
.gpio48 = GPIO_MODE_GPIO, /* DIS_BT_ON# */
|
||||
.gpio49 = GPIO_MODE_GPIO, /* GPIO49 */
|
||||
.gpio50 = GPIO_MODE_NATIVE, /* PCI_REQ1# */
|
||||
.gpio51 = GPIO_MODE_GPIO, /* BBS_BIT1 */
|
||||
.gpio52 = GPIO_MODE_NATIVE, /* PCI_REQ2# */
|
||||
.gpio53 = GPIO_MODE_GPIO, /* PWM_SELECT# / TP44 */
|
||||
.gpio54 = GPIO_MODE_GPIO, /* PCI_REQ3# */
|
||||
.gpio55 = GPIO_MODE_NATIVE, /* PCI_GNT3# */
|
||||
.gpio56 = GPIO_MODE_NATIVE, /* CLK_PEGB_REQ# / TP60 */
|
||||
.gpio57 = GPIO_MODE_GPIO, /* PCH_GPIO57 */
|
||||
.gpio58 = GPIO_MODE_NATIVE, /* SMB_ME1_CLK */
|
||||
.gpio59 = GPIO_MODE_GPIO, /* USB_OC0_1# */
|
||||
.gpio60 = GPIO_MODE_GPIO, /* DRAMRST_CNTRL_PCH */
|
||||
.gpio61 = GPIO_MODE_GPIO, /* LPCPD# */
|
||||
.gpio62 = GPIO_MODE_NATIVE, /* PCH_SUSCLK_L / TP54 */
|
||||
.gpio63 = GPIO_MODE_NATIVE, /* TP51 */
|
||||
};
|
||||
|
||||
const struct pch_gpio_set2 pch_gpio_set2_direction = {
|
||||
/*
|
||||
* Note: Only gpio configured as "gpio" or "none" need to have the
|
||||
* direction configured.
|
||||
*/
|
||||
.gpio33 = GPIO_DIR_OUTPUT,
|
||||
.gpio34 = GPIO_DIR_OUTPUT,
|
||||
.gpio35 = GPIO_DIR_OUTPUT,
|
||||
.gpio36 = GPIO_DIR_INPUT,
|
||||
.gpio37 = GPIO_DIR_INPUT,
|
||||
.gpio38 = GPIO_DIR_INPUT,
|
||||
.gpio39 = GPIO_DIR_INPUT,
|
||||
.gpio40 = GPIO_DIR_INPUT,
|
||||
.gpio41 = GPIO_DIR_INPUT,
|
||||
|
||||
.gpio48 = GPIO_DIR_OUTPUT,
|
||||
.gpio49 = GPIO_DIR_INPUT,
|
||||
|
||||
.gpio51 = GPIO_DIR_OUTPUT,
|
||||
|
||||
.gpio53 = GPIO_DIR_OUTPUT,
|
||||
.gpio54 = GPIO_DIR_INPUT,
|
||||
|
||||
.gpio57 = GPIO_DIR_INPUT,
|
||||
|
||||
.gpio59 = GPIO_DIR_INPUT,
|
||||
.gpio60 = GPIO_DIR_OUTPUT,
|
||||
.gpio61 = GPIO_DIR_OUTPUT,
|
||||
};
|
||||
|
||||
const struct pch_gpio_set2 pch_gpio_set2_level = {
|
||||
/*
|
||||
* Note: Only gpio configured as "gpio" or "none" need to have the
|
||||
* level set.
|
||||
*/
|
||||
.gpio33 = GPIO_LEVEL_LOW,
|
||||
.gpio34 = GPIO_LEVEL_HIGH,
|
||||
.gpio35 = GPIO_LEVEL_HIGH,
|
||||
.gpio36 = GPIO_LEVEL_LOW,
|
||||
.gpio37 = GPIO_LEVEL_LOW,
|
||||
.gpio38 = GPIO_LEVEL_LOW,
|
||||
.gpio39 = GPIO_LEVEL_LOW,
|
||||
.gpio40 = GPIO_LEVEL_HIGH,
|
||||
.gpio41 = GPIO_LEVEL_LOW,
|
||||
|
||||
.gpio48 = GPIO_LEVEL_LOW,
|
||||
.gpio49 = GPIO_LEVEL_HIGH,
|
||||
|
||||
.gpio51 = GPIO_LEVEL_HIGH,
|
||||
|
||||
.gpio53 = GPIO_LEVEL_HIGH,
|
||||
.gpio54 = GPIO_LEVEL_LOW,
|
||||
|
||||
.gpio57 = GPIO_LEVEL_LOW,
|
||||
|
||||
.gpio59 = GPIO_LEVEL_HIGH,
|
||||
.gpio60 = GPIO_LEVEL_HIGH,
|
||||
.gpio61 = GPIO_LEVEL_LOW,
|
||||
};
|
||||
|
||||
const struct pch_gpio_set3 pch_gpio_set3_mode = {
|
||||
.gpio64 = GPIO_MODE_GPIO, /* CLK_FLEX0 / TP38 */
|
||||
.gpio65 = GPIO_MODE_GPIO, /* CLK_FLEX1 / TP45 */
|
||||
.gpio66 = GPIO_MODE_GPIO, /* CLK_FLEX2 / TP83 */
|
||||
.gpio67 = GPIO_MODE_GPIO, /* CLK_FLEX3 / TP82 */
|
||||
.gpio68 = GPIO_MODE_GPIO, /* WWAN_DTCT# */
|
||||
.gpio69 = GPIO_MODE_GPIO, /* GPIO69 */
|
||||
.gpio70 = GPIO_MODE_GPIO, /* WLAN_OFF# */
|
||||
.gpio71 = GPIO_MODE_GPIO, /* WWAN_OFF# */
|
||||
.gpio72 = GPIO_MODE_GPIO, /* PM_BATLOW# */
|
||||
.gpio73 = GPIO_MODE_NATIVE, /* PCIECLKRQ0# / TP39 */
|
||||
.gpio74 = GPIO_MODE_NATIVE, /* SML1ALERT#_R / TP56 */
|
||||
.gpio75 = GPIO_MODE_NATIVE, /* SMB_ME1_DAT */
|
||||
};
|
||||
|
||||
const struct pch_gpio_set3 pch_gpio_set3_direction = {
|
||||
/*
|
||||
* Note: Only gpio configured as "gpio" or "none" need to have the
|
||||
* direction configured.
|
||||
*/
|
||||
.gpio64 = GPIO_DIR_OUTPUT,
|
||||
.gpio65 = GPIO_DIR_OUTPUT,
|
||||
.gpio66 = GPIO_DIR_OUTPUT,
|
||||
.gpio67 = GPIO_DIR_INPUT,
|
||||
.gpio68 = GPIO_DIR_INPUT,
|
||||
.gpio69 = GPIO_DIR_OUTPUT,
|
||||
.gpio70 = GPIO_DIR_OUTPUT,
|
||||
.gpio71 = GPIO_DIR_OUTPUT,
|
||||
.gpio72 = GPIO_DIR_OUTPUT,
|
||||
};
|
||||
|
||||
const struct pch_gpio_set3 pch_gpio_set3_level = {
|
||||
/*
|
||||
* Note: Only gpio configured as "gpio" or "none" need to have the
|
||||
* level set.
|
||||
*/
|
||||
.gpio64 = GPIO_LEVEL_HIGH,
|
||||
.gpio65 = GPIO_LEVEL_LOW,
|
||||
.gpio66 = GPIO_LEVEL_HIGH,
|
||||
.gpio67 = GPIO_LEVEL_LOW,
|
||||
.gpio68 = GPIO_LEVEL_HIGH,
|
||||
.gpio69 = GPIO_LEVEL_LOW,
|
||||
.gpio70 = GPIO_LEVEL_HIGH,
|
||||
.gpio71 = GPIO_LEVEL_HIGH,
|
||||
.gpio72 = GPIO_LEVEL_HIGH,
|
||||
};
|
||||
|
||||
const struct pch_gpio_map stout_gpio_map = {
|
||||
.set1 = {
|
||||
.mode = &pch_gpio_set1_mode,
|
||||
.direction = &pch_gpio_set1_direction,
|
||||
.level = &pch_gpio_set1_level,
|
||||
.invert = &pch_gpio_set1_invert,
|
||||
},
|
||||
.set2 = {
|
||||
.mode = &pch_gpio_set2_mode,
|
||||
.direction = &pch_gpio_set2_direction,
|
||||
.level = &pch_gpio_set2_level,
|
||||
},
|
||||
.set3 = {
|
||||
.mode = &pch_gpio_set3_mode,
|
||||
.direction = &pch_gpio_set3_direction,
|
||||
.level = &pch_gpio_set3_level,
|
||||
},
|
||||
};
|
||||
#endif
|
|
@ -0,0 +1,139 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
static const u32 mainboard_cim_verb_data[] = {
|
||||
/* coreboot specific header */
|
||||
0x10ec0269, // Codec Vendor / Device ID: Realtek
|
||||
0x17aa21fe, // Subsystem ID
|
||||
0x0000000c, // Number of jacks
|
||||
|
||||
/* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x17aa21fe */
|
||||
0x001720fe,
|
||||
0x00172121,
|
||||
0x001722aa,
|
||||
0x00172317,
|
||||
|
||||
/* Pin Widget Verb Table */
|
||||
|
||||
/* Pin Complex (NID 0x12): 0x90a60930 DMIC */
|
||||
0x01271c30,
|
||||
0x01271d09,
|
||||
0x01271ea6,
|
||||
0x01271f90,
|
||||
|
||||
/* Pin Complex (NID 0x14): 0x90170110 SPEAKER-OUT (Port-D) */
|
||||
0x01471c10,
|
||||
0x01471d01,
|
||||
0x01471e17,
|
||||
0x01471f90,
|
||||
|
||||
/* Pin Complex (NID 0x15): 0x0321101f HP-OUT (Port-A) */
|
||||
0x01571c1f,
|
||||
0x01571d10,
|
||||
0x01571e21,
|
||||
0x01571f03,
|
||||
|
||||
/* Pin Complex (NID 0x17): 0x411111f0 MONO-OUT (Port-H) */
|
||||
0x01771cf0,
|
||||
0x01771d11,
|
||||
0x01771e11,
|
||||
0x01771f41,
|
||||
|
||||
/* Pin Complex (NID 0x18): 0x03a11820 MIC1 (Port-B) */
|
||||
0x01871c20,
|
||||
0x01871d18,
|
||||
0x01871ea1,
|
||||
0x01871f03,
|
||||
|
||||
/* Pin Complex (NID 0x19): 0x411111f0 MIC2 (Port-F) */
|
||||
0x01971cf0,
|
||||
0x01971d11,
|
||||
0x01971e11,
|
||||
0x01971f41,
|
||||
|
||||
/* Pin Complex (NID 0x1a): 0x411111f0 LINE1 (Port-C) */
|
||||
0x01a71cf0,
|
||||
0x01a71d11,
|
||||
0x01a71e11,
|
||||
0x01a71f41,
|
||||
|
||||
/* Pin Complex (NID 0x1b): 0x411111f0 LINE2 (Port-E) */
|
||||
0x01b71cf0,
|
||||
0x01b71d11,
|
||||
0x01b71e11,
|
||||
0x01b71f41,
|
||||
|
||||
/* Pin Complex (NID 0x1d): 0x4016862d PC-BEEP */
|
||||
0x01d71c2d,
|
||||
0x01d71d86,
|
||||
0x01d71e16,
|
||||
0x01d71f40,
|
||||
|
||||
/* Pin Complex (NID 0x1e): 0x411111f0 S/PDIF-OUT */
|
||||
0x01e71cf0,
|
||||
0x01e71d11,
|
||||
0x01e71e11,
|
||||
0x01e71f41,
|
||||
|
||||
/* Stout MIC detect setup */
|
||||
0x02050018,
|
||||
0x02045184,
|
||||
0x02050008,
|
||||
0x02040300,
|
||||
|
||||
/* coreboot specific header */
|
||||
0x80862806, // Codec Vendor / Device ID: Intel PantherPoint HDMI
|
||||
0x80860101, // Subsystem ID
|
||||
0x00000004, // Number of jacks
|
||||
|
||||
/* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x80860101 */
|
||||
0x30172001,
|
||||
0x30172101,
|
||||
0x30172286,
|
||||
0x30172380,
|
||||
|
||||
/* Pin Complex (NID 0x05) Digital Out at Int HDMI */
|
||||
0x30571c10,
|
||||
0x30571d00,
|
||||
0x30571e56,
|
||||
0x30571f18,
|
||||
|
||||
/* Pin Complex (NID 0x06) Not Connected */
|
||||
0x30671c20,
|
||||
0x30671d00,
|
||||
0x30671e56,
|
||||
0x30671f58,
|
||||
|
||||
/* Pin Complex (NID 0x07) Not Connected */
|
||||
0x30771c30,
|
||||
0x30771d00,
|
||||
0x30771e56,
|
||||
0x30771f58
|
||||
};
|
||||
|
||||
static const u32 mainboard_pc_beep_verbs[] = {
|
||||
0x00170500, /* power up everything (codec, dac, adc, mixers) */
|
||||
0x01470740, /* enable speaker out */
|
||||
0x01470c02, /* set speaker EAPD pin */
|
||||
0x0143b01f, /* unmute speaker */
|
||||
0x00c37100, /* unmute mixer nid 0xc input 1 */
|
||||
0x00b37410, /* unmute mixer nid 0xb beep input and set volume */
|
||||
};
|
||||
static const u32 mainboard_pc_beep_verbs_size =
|
||||
sizeof(mainboard_pc_beep_verbs) / sizeof(mainboard_pc_beep_verbs[0]);
|
|
@ -0,0 +1,283 @@
|
|||
#include <types.h>
|
||||
#include <string.h>
|
||||
#include <device/device.h>
|
||||
#include <device/device.h>
|
||||
#include <device/pci_def.h>
|
||||
#include <device/pci_ops.h>
|
||||
#include <console/console.h>
|
||||
#include <delay.h>
|
||||
#if defined(CONFIG_PCI_OPTION_ROM_RUN_YABEL)&&CONFIG_PCI_OPTION_ROM_RUN_YABEL
|
||||
#include <x86emu/x86emu.h>
|
||||
#endif
|
||||
#include <pc80/mc146818rtc.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/io.h>
|
||||
#include <arch/interrupt.h>
|
||||
#include <arch/coreboot_tables.h>
|
||||
#include "hda_verb.h"
|
||||
#include "onboard.h"
|
||||
#include "ec.h"
|
||||
#include <southbridge/intel/bd82x6x/pch.h>
|
||||
#include <smbios.h>
|
||||
#include <device/pci.h>
|
||||
#include <ec/google/chromeec/ec.h>
|
||||
#include <cbfs_core.h>
|
||||
|
||||
#include <cpu/x86/tsc.h>
|
||||
#include <cpu/x86/cache.h>
|
||||
#include <cpu/x86/mtrr.h>
|
||||
#include <cpu/amd/mtrr.h>
|
||||
#include <cpu/x86/msr.h>
|
||||
#include "i915_reg.h"
|
||||
|
||||
enum {
|
||||
vmsg = 1, vio = 2, vspin = 4,
|
||||
};
|
||||
|
||||
static int verbose = 0; //vmsg ;
|
||||
|
||||
static unsigned int *mmio;
|
||||
static unsigned int graphics;
|
||||
static unsigned short addrport;
|
||||
static unsigned short dataport;
|
||||
static unsigned int physbase;
|
||||
extern int oprom_is_loaded;
|
||||
|
||||
#define READ32(addr) io_i915_READ32(addr)
|
||||
#define WRITE32(val, addr) io_i915_WRITE32(val, addr)
|
||||
|
||||
static unsigned long io_i915_READ32(unsigned long addr)
|
||||
{
|
||||
unsigned long val;
|
||||
outl(addr, addrport);
|
||||
val = inl(dataport);
|
||||
return val;
|
||||
}
|
||||
|
||||
static void io_i915_WRITE32(unsigned long val, unsigned long addr)
|
||||
{
|
||||
outl(addr, addrport);
|
||||
outl(val, dataport);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
2560
|
||||
4 words per
|
||||
4 *p
|
||||
10240
|
||||
4k bytes per page
|
||||
4096/p
|
||||
2.50
|
||||
1700 lines
|
||||
1700 * p
|
||||
4250.00
|
||||
PTEs
|
||||
*/
|
||||
static void
|
||||
setgtt(int start, int end, unsigned long base, int inc)
|
||||
{
|
||||
int i;
|
||||
|
||||
for(i = start; i < end; i++){
|
||||
u32 word = base + i*inc;
|
||||
WRITE32(word|1,(i*4)|1);
|
||||
}
|
||||
}
|
||||
|
||||
static char *regname(unsigned long addr)
|
||||
{
|
||||
static char name[16];
|
||||
sprintf(name, "0x%lx", addr);
|
||||
return name;
|
||||
}
|
||||
|
||||
static unsigned long tickspermicrosecond = 1795;
|
||||
static unsigned long long globalstart;
|
||||
|
||||
static unsigned long
|
||||
microseconds(unsigned long long start, unsigned long long end)
|
||||
{
|
||||
unsigned long ret;
|
||||
ret = ((end - start)/tickspermicrosecond);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static unsigned long globalmicroseconds(void)
|
||||
{
|
||||
return microseconds(globalstart, rdtscll());
|
||||
}
|
||||
|
||||
/* One-letter commands for code not mean to be ready for humans.
|
||||
* The code was generated by a set of programs/scripts.
|
||||
* M print out a kernel message
|
||||
* R read a register. We do these mainly to ensure that if hardware wanted
|
||||
* the register read, it was read; also, in debug, we can see what was expected
|
||||
* and what was found. This has proven *very* useful to get this debugged.
|
||||
* The udelay, if non-zero, will make sure there is a
|
||||
* udelay() call with the value.
|
||||
* The count is from the kernel and tells us how many times this read was done.
|
||||
* Also useful for debugging and the state
|
||||
* machine uses the info to drive a poll.
|
||||
* W Write a register
|
||||
* V set verbosity. It's a bit mask.
|
||||
* 0 -> nothing
|
||||
* 1 -> print kernel messages
|
||||
* 2 -> print IO ops
|
||||
* 4 -> print the number of times we spin on a register in a poll
|
||||
* 8 -> restore whatever the previous verbosity level was
|
||||
* (only one deep stack)
|
||||
*
|
||||
* Again, this is not really meant for human consumption. There is not a poll
|
||||
* operator as such because, sometimes, there is a read/write/read where the
|
||||
* second read is a poll, and this chipset is so touchy I'm reluctant to move
|
||||
* things around and/or delete too many reads.
|
||||
*/
|
||||
#define M 1
|
||||
#define R 2
|
||||
#define W 3
|
||||
#define V 4
|
||||
#define I 8
|
||||
|
||||
struct iodef {
|
||||
unsigned char op;
|
||||
unsigned int count;
|
||||
const char *msg;
|
||||
unsigned long addr;
|
||||
unsigned long data;
|
||||
unsigned long udelay;
|
||||
} iodefs[] = {
|
||||
#include "i915io.c"
|
||||
};
|
||||
|
||||
static int i915_init_done = 0;
|
||||
|
||||
int vbe_mode_info_valid(void);
|
||||
int vbe_mode_info_valid(void)
|
||||
{
|
||||
return i915_init_done;
|
||||
}
|
||||
|
||||
void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
|
||||
void fill_lb_framebuffer(struct lb_framebuffer *framebuffer)
|
||||
{
|
||||
printk(BIOS_SPEW, "fill_lb_framebuffer: graphics is %p\n", (void *)graphics);
|
||||
framebuffer->physical_address = graphics;
|
||||
framebuffer->x_resolution = 2560;
|
||||
framebuffer->y_resolution = 1700;
|
||||
framebuffer->bytes_per_line = 10240;
|
||||
framebuffer->bits_per_pixel = 32;
|
||||
framebuffer->red_mask_pos = 16;
|
||||
framebuffer->red_mask_size = 8;
|
||||
framebuffer->green_mask_pos = 8;
|
||||
framebuffer->green_mask_size = 8;
|
||||
framebuffer->blue_mask_pos = 0;
|
||||
framebuffer->blue_mask_size = 8;
|
||||
framebuffer->reserved_mask_pos = 0;
|
||||
framebuffer->reserved_mask_size = 0;
|
||||
|
||||
}
|
||||
|
||||
int i915lightup(unsigned int physbase, unsigned int iobase, unsigned int mmio,
|
||||
unsigned int gfx);
|
||||
|
||||
int i915lightup(unsigned int pphysbase,
|
||||
unsigned int piobase,
|
||||
unsigned int pmmio,
|
||||
unsigned int pgfx)
|
||||
{
|
||||
int i, prev = 0;
|
||||
struct iodef *id, *lastidread = 0;
|
||||
unsigned long u, t;
|
||||
static unsigned long times[4096];
|
||||
mmio = (void *)pmmio;
|
||||
addrport = piobase;
|
||||
dataport = addrport + 4;
|
||||
physbase = pphysbase;
|
||||
graphics = pgfx;
|
||||
printk(BIOS_SPEW,
|
||||
"i915lightup: graphics %p mmio %p"
|
||||
"addrport %04x physbase %08x\n",
|
||||
(void *)graphics, mmio, addrport, physbase);
|
||||
globalstart = rdtscll();
|
||||
|
||||
/* state machine! */
|
||||
for(i = 0, id = iodefs; i < ARRAY_SIZE(iodefs); i++, id++){
|
||||
switch(id->op){
|
||||
case M:
|
||||
if (verbose & vmsg) printk(BIOS_SPEW, "%ld: %s\n",
|
||||
globalmicroseconds(), id->msg);
|
||||
break;
|
||||
case R:
|
||||
u = READ32(id->addr);
|
||||
if (verbose & vio)printk(BIOS_SPEW, "%s: Got %08lx, expect %08lx\n",
|
||||
regname(id->addr), u, id->data);
|
||||
/* we're looking for something. */
|
||||
if (lastidread->addr == id->addr){
|
||||
/* they're going to be polling.
|
||||
* just do it 1000 times
|
||||
*/
|
||||
for(t = 0; t < 1000 && id->data != u; t++){
|
||||
u = READ32(id->addr);
|
||||
}
|
||||
if (verbose & vspin) printk(BIOS_SPEW,
|
||||
"%s: # loops %ld got %08lx want %08lx\n",
|
||||
regname(id->addr),
|
||||
t, u, id->data);
|
||||
}
|
||||
lastidread = id;
|
||||
break;
|
||||
case W:
|
||||
if (verbose & vio)printk(BIOS_SPEW, "%s: outl %08lx\n", regname(id->addr),
|
||||
id->data);
|
||||
WRITE32(id->data, id->addr);
|
||||
if (id->addr == PCH_PP_CONTROL){
|
||||
switch(id->data & 0xf){
|
||||
case 8: break;
|
||||
case 7: break;
|
||||
default: udelay(100000);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case V:
|
||||
if (id->count < 8){
|
||||
prev = verbose;
|
||||
verbose = id->count;
|
||||
} else {
|
||||
verbose = prev;
|
||||
}
|
||||
break;
|
||||
case I:
|
||||
break;
|
||||
default:
|
||||
printk(BIOS_SPEW, "BAD TABLE, opcode %d @ %d\n", id->op, i);
|
||||
return -1;
|
||||
}
|
||||
if (id->udelay)
|
||||
udelay(id->udelay);
|
||||
times[i] = globalmicroseconds();
|
||||
}
|
||||
/* optional, we don't even want to take timestamp overhead
|
||||
* if we can avoid it. */
|
||||
if (0)
|
||||
for(i = 0, id = iodefs; i < ARRAY_SIZE(iodefs); i++, id++){
|
||||
switch(id->op){
|
||||
case R:
|
||||
printk(BIOS_SPEW, "%ld: R %08lx\n", times[i], id->addr);
|
||||
break;
|
||||
case W:
|
||||
printk(BIOS_SPEW, "%ld: W %08lx %08lx\n", times[i],
|
||||
id->addr, id->data);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
setgtt(0, 4520, physbase, 4096);
|
||||
printk(BIOS_SPEW, "memset %p to 0 for %d bytes\n",
|
||||
(void *)graphics, 4520*4096);
|
||||
memset((void *)graphics, 0, 4520*4096);
|
||||
printk(BIOS_SPEW, "%ld microseconds\n", globalmicroseconds());
|
||||
i915_init_done = 1;
|
||||
oprom_is_loaded = 1;
|
||||
return 0;
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,292 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2007-2009 coresystems GmbH
|
||||
* Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include <types.h>
|
||||
#include <string.h>
|
||||
#include <device/device.h>
|
||||
#include <device/pci_def.h>
|
||||
#include <device/pci_ops.h>
|
||||
#include <console/console.h>
|
||||
#if defined(CONFIG_PCI_OPTION_ROM_RUN_YABEL) && CONFIG_PCI_OPTION_ROM_RUN_YABEL
|
||||
#include <x86emu/x86emu.h>
|
||||
#endif
|
||||
#include <pc80/mc146818rtc.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/io.h>
|
||||
#include <arch/interrupt.h>
|
||||
#include <arch/coreboot_tables.h>
|
||||
#include "hda_verb.h"
|
||||
#include "onboard.h"
|
||||
#include "ec.h"
|
||||
#include <southbridge/intel/bd82x6x/pch.h>
|
||||
#include <smbios.h>
|
||||
#include <device/pci.h>
|
||||
#include <ec/quanta/it8518/ec.h>
|
||||
|
||||
void mainboard_suspend_resume(void)
|
||||
{
|
||||
/* Call SMM finalize() handlers before resume */
|
||||
outb(0xcb, 0xb2);
|
||||
|
||||
/* Stout EC needs to be put back in ACPI mode */
|
||||
ec_write_cmd(EC_CMD_NOTIFY_ACPI_ENTER);
|
||||
}
|
||||
|
||||
#if defined(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) && CONFIG_PCI_OPTION_ROM_RUN_REALMODE
|
||||
static int int15_handler(struct eregs *regs)
|
||||
{
|
||||
int res=-1;
|
||||
|
||||
printk(BIOS_DEBUG, "%s: INT15 function %04x!\n",
|
||||
__func__, regs->eax & 0xffff);
|
||||
|
||||
switch(regs->eax & 0xffff) {
|
||||
case 0x5f34:
|
||||
/*
|
||||
* Set Panel Fitting Hook:
|
||||
* bit 2 = Graphics Stretching
|
||||
* bit 1 = Text Stretching
|
||||
* bit 0 = Centering (do not set with bit1 or bit2)
|
||||
* 0 = video bios default
|
||||
*/
|
||||
regs->eax &= 0xffff0000;
|
||||
regs->eax |= 0x005f;
|
||||
regs->ecx &= 0xffffff00;
|
||||
regs->ecx |= 0x00; /* Use video bios default */
|
||||
res = 0;
|
||||
break;
|
||||
case 0x5f35:
|
||||
/*
|
||||
* Boot Display Device Hook:
|
||||
* bit 0 = CRT
|
||||
* bit 1 = TV (eDP)
|
||||
* bit 2 = EFP
|
||||
* bit 3 = LFP
|
||||
* bit 4 = CRT2
|
||||
* bit 5 = TV2 (eDP)
|
||||
* bit 6 = EFP2
|
||||
* bit 7 = LFP2
|
||||
*/
|
||||
regs->eax &= 0xffff0000;
|
||||
regs->eax |= 0x005f;
|
||||
regs->ecx &= 0xffff0000;
|
||||
regs->ecx |= 0x0000; /* Use video bios default */
|
||||
res = 0;
|
||||
break;
|
||||
case 0x5f51:
|
||||
/*
|
||||
* Hook to select active LFP configuration:
|
||||
* 00h = No LVDS, VBIOS does not enable LVDS
|
||||
* 01h = Int-LVDS, LFP driven by integrated LVDS decoder
|
||||
* 02h = SVDO-LVDS, LFP driven by SVDO decoder
|
||||
* 03h = eDP, LFP Driven by Int-DisplayPort encoder
|
||||
*/
|
||||
regs->eax &= 0xffff0000;
|
||||
regs->eax |= 0x005f;
|
||||
regs->ecx &= 0xffff0000;
|
||||
regs->ecx |= 0x0001;
|
||||
res = 0;
|
||||
break;
|
||||
case 0x5f70:
|
||||
switch ((regs->ecx >> 8) & 0xff) {
|
||||
case 0:
|
||||
/* Get Mux */
|
||||
regs->eax &= 0xffff0000;
|
||||
regs->eax |= 0x005f;
|
||||
regs->ecx &= 0xffff0000;
|
||||
regs->ecx |= 0x0000;
|
||||
res = 0;
|
||||
break;
|
||||
case 1:
|
||||
/* Set Mux */
|
||||
regs->eax &= 0xffff0000;
|
||||
regs->eax |= 0x005f;
|
||||
regs->ecx &= 0xffff0000;
|
||||
regs->ecx |= 0x0000;
|
||||
res = 0;
|
||||
break;
|
||||
case 2:
|
||||
/* Get SG/Non-SG mode */
|
||||
regs->eax &= 0xffff0000;
|
||||
regs->eax |= 0x005f;
|
||||
regs->ecx &= 0xffff0000;
|
||||
regs->ecx |= 0x0000;
|
||||
res = 0;
|
||||
break;
|
||||
default:
|
||||
/* Interrupt was not handled */
|
||||
printk(BIOS_DEBUG, "Unknown INT15 5f70 function: 0x%02x\n",
|
||||
((regs->ecx >> 8) & 0xff));
|
||||
return 0;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
printk(BIOS_DEBUG, "Unknown INT15 function %04x!\n",
|
||||
regs->eax & 0xffff);
|
||||
break;
|
||||
}
|
||||
return res;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_PCI_OPTION_ROM_RUN_YABEL) && CONFIG_PCI_OPTION_ROM_RUN_YABEL
|
||||
static int int15_handler(void)
|
||||
{
|
||||
printk(BIOS_DEBUG, "%s: AX=%04x BX=%04x CX=%04x DX=%04x\n",
|
||||
__func__, M.x86.R_AX, M.x86.R_BX, M.x86.R_CX, M.x86.R_DX);
|
||||
|
||||
switch (M.x86.R_AX) {
|
||||
case 0x5f34:
|
||||
/*
|
||||
* Set Panel Fitting Hook:
|
||||
* bit 2 = Graphics Stretching
|
||||
* bit 1 = Text Stretching
|
||||
* bit 0 = Centering (do not set with bit1 or bit2)
|
||||
*/
|
||||
M.x86.R_AX = 0x005f;
|
||||
M.x86.R_CL = 0x00;
|
||||
break;
|
||||
case 0x5f35:
|
||||
/*
|
||||
* Boot Display Device Hook:
|
||||
* bit 0 = CRT
|
||||
* bit 1 = TV (eDP)
|
||||
* bit 2 = EFP
|
||||
* bit 3 = LFP
|
||||
* bit 4 = CRT2
|
||||
* bit 5 = TV2 (eDP)
|
||||
* bit 6 = EFP2
|
||||
* bit 7 = LFP2
|
||||
*/
|
||||
M.x86.R_AX = 0x005f;
|
||||
M.x86.R_CX = 0x0000; /* Use video bios default */
|
||||
break;
|
||||
case 0x5f51:
|
||||
/*
|
||||
* Hook to select active LFP configuration:
|
||||
* 00h = No LVDS, VBIOS does not enable LVDS
|
||||
* 01h = Int-LVDS, LFP driven by integrated LVDS decoder
|
||||
* 02h = SVDO-LVDS, LFP driven by SVDO decoder
|
||||
* 03h = eDP, LFP Driven by Int-DisplayPort encoder
|
||||
*/
|
||||
M.x86.R_AX = 0x005f;
|
||||
M.x86.R_CX = 1;
|
||||
break;
|
||||
case 0x5f70:
|
||||
switch (M.x86.R_CH) {
|
||||
case 0:
|
||||
/* Get Mux */
|
||||
M.x86.R_AX = 0x005f;
|
||||
M.x86.R_CL = 0;
|
||||
break;
|
||||
case 1:
|
||||
/* Set Mux */
|
||||
M.x86.R_AX = 0x005f;
|
||||
M.x86.R_CX = 0;
|
||||
break;
|
||||
case 2:
|
||||
/* Get SG/Non-SG mode */
|
||||
M.x86.R_AX = 0x005f;
|
||||
M.x86.R_CX = 0;
|
||||
break;
|
||||
default:
|
||||
/* Interrupt was not handled */
|
||||
printk(BIOS_DEBUG, "Unknown INT15 5f70 function: 0x%02x\n",
|
||||
M.x86.R_CH);
|
||||
return 0;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
/* Interrupt was not handled */
|
||||
printk(BIOS_DEBUG, "Unknown INT15 function: 0x%04x\n",
|
||||
M.x86.R_AX);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Interrupt handled */
|
||||
return 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE
|
||||
static void int15_install(void)
|
||||
{
|
||||
#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
|
||||
typedef int (* yabel_handleIntFunc)(void);
|
||||
extern yabel_handleIntFunc yabel_intFuncArray[256];
|
||||
yabel_intFuncArray[0x15] = int15_handler;
|
||||
#endif
|
||||
#ifdef CONFIG_PCI_OPTION_ROM_RUN_REALMODE
|
||||
mainboard_interrupt_handlers(0x15, &int15_handler);
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Audio Setup */
|
||||
|
||||
extern const u32 * cim_verb_data;
|
||||
extern u32 cim_verb_data_size;
|
||||
extern const u32 * pc_beep_verbs;
|
||||
extern u32 pc_beep_verbs_size;
|
||||
|
||||
static void verb_setup(void)
|
||||
{
|
||||
cim_verb_data = mainboard_cim_verb_data;
|
||||
cim_verb_data_size = sizeof(mainboard_cim_verb_data);
|
||||
pc_beep_verbs = mainboard_pc_beep_verbs;
|
||||
pc_beep_verbs_size = mainboard_pc_beep_verbs_size;
|
||||
}
|
||||
|
||||
static void mainboard_init(device_t dev)
|
||||
{
|
||||
struct device *ethernet_dev = NULL;
|
||||
|
||||
/* Initialize the Embedded Controller */
|
||||
stout_ec_init();
|
||||
|
||||
/*
|
||||
* Battery life time - LAN PCIe should enter ASPM L1 to save
|
||||
* power when LAN connection is idle.
|
||||
* enable CLKREQ: LAN pci config space 0x81h=01
|
||||
*/
|
||||
ethernet_dev = dev_find_device(STOUT_NIC_VENDOR_ID,
|
||||
STOUT_NIC_DEVICE_ID, dev);
|
||||
|
||||
if (ethernet_dev != NULL)
|
||||
pci_write_config8(ethernet_dev, 0x81, 0x01);
|
||||
}
|
||||
|
||||
// mainboard_enable is executed as first thing after
|
||||
// enumerate_buses().
|
||||
|
||||
static void mainboard_enable(device_t dev)
|
||||
{
|
||||
dev->ops->init = mainboard_init;
|
||||
#if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE
|
||||
/* Install custom int15 handler for VGA OPROM */
|
||||
int15_install();
|
||||
#endif
|
||||
verb_setup();
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_ops = {
|
||||
.enable_dev = mainboard_enable,
|
||||
};
|
|
@ -0,0 +1,155 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2008-2009 coresystems GmbH
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include <arch/io.h>
|
||||
#include <arch/romcc_io.h>
|
||||
#include <console/console.h>
|
||||
#include <cpu/x86/smm.h>
|
||||
#include <southbridge/intel/bd82x6x/nvs.h>
|
||||
#include <southbridge/intel/bd82x6x/pch.h>
|
||||
#include <southbridge/intel/bd82x6x/me.h>
|
||||
#include <northbridge/intel/sandybridge/sandybridge.h>
|
||||
#include <northbridge/intel/sandybridge/pcie_config.c>
|
||||
#include <cpu/intel/model_206ax/model_206ax.h>
|
||||
|
||||
/* Include romstage serial for SIO helper functions */
|
||||
#include <superio/ite/it8772f/early_serial.c>
|
||||
|
||||
/* Include EC functions */
|
||||
#include <ec/quanta/it8518/ec.h>
|
||||
#include "ec.h"
|
||||
|
||||
int mainboard_io_trap_handler(int smif)
|
||||
{
|
||||
switch (smif) {
|
||||
case 0x99:
|
||||
printk(BIOS_DEBUG, "Sample\n");
|
||||
smm_get_gnvs()->smif = 0;
|
||||
break;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* On success, the IO Trap Handler returns 0
|
||||
* On failure, the IO Trap Handler returns a value != 0
|
||||
*
|
||||
* For now, we force the return value to 0 and log all traps to
|
||||
* see what's going on.
|
||||
*/
|
||||
//gnvs->smif = 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
static u8 mainboard_smi_ec(void)
|
||||
{
|
||||
u8 cmd = ec_it8518_get_event();
|
||||
u32 pm1_cnt;
|
||||
|
||||
switch (cmd) {
|
||||
case EC_SMI_LID_CLOSED:
|
||||
printk(BIOS_DEBUG, "LID CLOSED, SHUTDOWN\n");
|
||||
/* Go to S5 */
|
||||
pm1_cnt = inl(smm_get_pmbase() + PM1_CNT);
|
||||
pm1_cnt |= (0xf << 10);
|
||||
outl(pm1_cnt, smm_get_pmbase() + PM1_CNT);
|
||||
break;
|
||||
}
|
||||
|
||||
return cmd;
|
||||
}
|
||||
|
||||
void mainboard_smi_gpi(u16 gpi_sts)
|
||||
{
|
||||
if (gpi_sts & (1 << EC_SMI_GPI)) {
|
||||
/* Process all pending events */
|
||||
while (mainboard_smi_ec() != 0);
|
||||
}
|
||||
}
|
||||
|
||||
void mainboard_smi_sleep(u8 slp_typ)
|
||||
{
|
||||
/*
|
||||
* Tell the EC to Enable USB power for S3 if requested.
|
||||
* Bit0 of 0x0D/Bit0 of 0x26
|
||||
* 0/0 All USB port off
|
||||
* 1/0 USB on, all USB port didn’t support wake up
|
||||
* 0/1 USB on, yellow port support wake up charge, but may not support
|
||||
* charge smart phone.
|
||||
* 1/1 USB on, yellow port in AUTO mode and didn’t support wake up system.
|
||||
*/
|
||||
if (smm_get_gnvs()->s3u0 != 0 || smm_get_gnvs()->s3u1 != 0) {
|
||||
ec_write(EC_PERIPH_CNTL_3, ec_read(EC_PERIPH_CNTL_3) | 0x00);
|
||||
ec_write(EC_USB_S3_EN, ec_read(EC_USB_S3_EN) | 0x01);
|
||||
printk(BIOS_DEBUG, "USB wake from S3 enabled.\n");
|
||||
} else {
|
||||
/*
|
||||
* If USB charging in suspend is disabled then also disable
|
||||
* the XHCI PME to prevent wake when the port power is cut
|
||||
* after the transition into suspend.
|
||||
*/
|
||||
if (smm_get_gnvs()->xhci) {
|
||||
u32 reg32 = pcie_read_config32(PCH_XHCI_DEV, 0x74);
|
||||
reg32 &= ~(1 << 8); /* disable PME */
|
||||
reg32 |= (1 << 15); /* clear PME status */
|
||||
pcie_write_config32(PCH_XHCI_DEV, 0x74, reg32);
|
||||
}
|
||||
}
|
||||
|
||||
ec_kbc_write_cmd(EC_KBD_CMD_MUTE);
|
||||
ec_it8518_enable_wake_events();
|
||||
}
|
||||
|
||||
#define APMC_FINALIZE 0xcb
|
||||
#define APMC_ACPI_EN 0xe1
|
||||
#define APMC_ACPI_DIS 0x1e
|
||||
|
||||
static int mainboard_finalized = 0;
|
||||
|
||||
int mainboard_smi_apmc(u8 apmc)
|
||||
{
|
||||
switch (apmc) {
|
||||
case APMC_FINALIZE:
|
||||
if (mainboard_finalized) {
|
||||
printk(BIOS_DEBUG, "SMI#: Already finalized\n");
|
||||
return 0;
|
||||
}
|
||||
printk(BIOS_DEBUG, "SMI#: finalize\n");
|
||||
intel_me_finalize_smm();
|
||||
intel_pch_finalize_smm();
|
||||
intel_sandybridge_finalize_smm();
|
||||
intel_model_206ax_finalize_smm();
|
||||
stout_ec_finalize_smm();
|
||||
|
||||
mainboard_finalized = 1;
|
||||
break;
|
||||
case APMC_ACPI_EN:
|
||||
/*
|
||||
* TODO(kimarie) Clear all pending events and enable SCI.
|
||||
*/
|
||||
ec_write_cmd(EC_CMD_NOTIFY_ACPI_ENTER);
|
||||
break;
|
||||
case APMC_ACPI_DIS:
|
||||
/*
|
||||
* TODO(kimarie) Clear all pending events and enable SMI.
|
||||
*/
|
||||
ec_write_cmd(EC_CMD_NOTIFY_ACPI_EXIT);
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2011-2012 The ChromiumOS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#ifndef STOUT_ONBOARD_H
|
||||
#define STOUT_ONBOARD_H
|
||||
|
||||
#include <arch/smp/mpspec.h>
|
||||
|
||||
#define STOUT_NIC_VENDOR_ID 0x10EC
|
||||
#define STOUT_NIC_DEVICE_ID 0x8168
|
||||
|
||||
#define XHCI_MODE 2 // Auto
|
||||
#define XHCI_PORTS 3 // Port 0 & 1
|
||||
#define XHCI_PREBOOT 0 // No PreOS boot support
|
||||
#define XHCI_STREAMS 1 // Sure, lets have streams
|
||||
|
||||
#endif
|
|
@ -0,0 +1,360 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2007-2010 coresystems GmbH
|
||||
* Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <lib.h>
|
||||
#include <timestamp.h>
|
||||
#include <arch/byteorder.h>
|
||||
#include <arch/io.h>
|
||||
#include <arch/romcc_io.h>
|
||||
#include <device/pci_def.h>
|
||||
#include <device/pnp_def.h>
|
||||
#include <cpu/x86/lapic.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
#include <cbmem.h>
|
||||
#include <console/console.h>
|
||||
#include "northbridge/intel/sandybridge/sandybridge.h"
|
||||
#include "northbridge/intel/sandybridge/raminit.h"
|
||||
#include "southbridge/intel/bd82x6x/pch.h"
|
||||
#include "southbridge/intel/bd82x6x/gpio.h"
|
||||
#include <arch/cpu.h>
|
||||
#include <cpu/x86/bist.h>
|
||||
#include <cpu/x86/msr.h>
|
||||
#include "gpio.h"
|
||||
#if CONFIG_CHROMEOS
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
#endif
|
||||
#include <cbfs.h>
|
||||
#include <ec/quanta/it8518/ec.h>
|
||||
#include "ec.h"
|
||||
#include "onboard.h"
|
||||
|
||||
static void pch_enable_lpc(void)
|
||||
{
|
||||
/*
|
||||
* Enable:
|
||||
* EC Decode Range Port62/66
|
||||
* SuperIO Port2E/2F
|
||||
* PS/2 Keyboard/Mouse Port60/64
|
||||
* FDD Port3F0h-3F5h and Port3F7h
|
||||
*/
|
||||
pci_write_config16(PCH_LPC_DEV, LPC_EN, KBC_LPC_EN | MC_LPC_EN |
|
||||
CNF1_LPC_EN | FDD_LPC_EN);
|
||||
|
||||
/* Stout EC Decode Range Port68/6C */
|
||||
pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, (0x68 | 0x40001));
|
||||
}
|
||||
|
||||
static void rcba_config(void)
|
||||
{
|
||||
u32 reg32;
|
||||
|
||||
/*
|
||||
* GFX INTA -> PIRQA (MSI)
|
||||
* D20IP_XHCI XHCI INTA -> PIRQD (MSI)
|
||||
* D26IP_E2P EHCI #2 INTA -> PIRQF
|
||||
* D27IP_ZIP HDA INTA -> PIRQA (MSI)
|
||||
* D28IP_P2IP WLAN INTA -> PIRQD
|
||||
* D28IP_P3IP Card Reader INTB -> PIRQE
|
||||
* D28IP_P6IP LAN INTC -> PIRQB
|
||||
* D29IP_E1P EHCI #1 INTA -> PIRQD
|
||||
* D31IP_SIP SATA INTA -> PIRQB (MSI)
|
||||
* D31IP_SMIP SMBUS INTB -> PIRQH
|
||||
*/
|
||||
|
||||
/* Device interrupt pin register (board specific) */
|
||||
RCBA32(D31IP) = (NOINT << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
|
||||
(INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
|
||||
RCBA32(D30IP) = (NOINT << D30IP_PIP);
|
||||
RCBA32(D29IP) = (INTA << D29IP_E1P);
|
||||
RCBA32(D28IP) = (NOINT << D28IP_P1IP) | (INTA << D28IP_P2IP) |
|
||||
(INTB << D28IP_P3IP) | (NOINT << D28IP_P4IP) |
|
||||
(NOINT << D28IP_P5IP) | (INTC << D28IP_P6IP) |
|
||||
(NOINT << D28IP_P7IP) | (NOINT << D28IP_P8IP);
|
||||
RCBA32(D27IP) = (INTA << D27IP_ZIP);
|
||||
RCBA32(D26IP) = (INTA << D26IP_E2P);
|
||||
RCBA32(D25IP) = (NOINT << D25IP_LIP);
|
||||
RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
|
||||
RCBA32(D20IP) = (INTA << D20IP_XHCIIP);
|
||||
|
||||
/* Device interrupt route registers */
|
||||
DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
|
||||
DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
|
||||
DIR_ROUTE(D28IR, PIRQD, PIRQE, PIRQB, PIRQC);
|
||||
DIR_ROUTE(D27IR, PIRQA, PIRQB, PIRQC, PIRQD);
|
||||
DIR_ROUTE(D26IR, PIRQF, PIRQB, PIRQC, PIRQD);
|
||||
DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
|
||||
DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
|
||||
DIR_ROUTE(D20IR, PIRQD, PIRQE, PIRQF, PIRQG);
|
||||
|
||||
/* Enable IOAPIC (generic) */
|
||||
RCBA16(OIC) = 0x0100;
|
||||
/* PCH BWG says to read back the IOAPIC enable register */
|
||||
(void) RCBA16(OIC);
|
||||
|
||||
/* Disable unused devices (board specific) */
|
||||
reg32 = RCBA32(FD);
|
||||
reg32 |= PCH_DISABLE_ALWAYS;
|
||||
/* Disable PCI bridge so MRC does not probe this bus */
|
||||
reg32 |= PCH_DISABLE_P2P;
|
||||
RCBA32(FD) = reg32;
|
||||
}
|
||||
|
||||
// FIXME, this function is generic code that should go to sb/... or
|
||||
// nb/../early_init.c
|
||||
static void early_pch_init(void)
|
||||
{
|
||||
// Nothing to do for stout
|
||||
}
|
||||
|
||||
/*
|
||||
* The Stout EC needs to be reset to RW mode. It is important that
|
||||
* the RTC_PWR_STS is not set until ramstage EC init.
|
||||
*/
|
||||
static void early_ec_init(void)
|
||||
{
|
||||
u8 ec_status = ec_read(EC_STATUS_REG);
|
||||
int rec_mode = get_recovery_mode_switch();
|
||||
|
||||
if (((ec_status & 0x3) == EC_IN_RO_MODE) ||
|
||||
((ec_status & 0x3) == EC_IN_RECOVERY_MODE)) {
|
||||
|
||||
printk(BIOS_DEBUG, "EC Cold Boot Detected\n");
|
||||
if (!rec_mode) {
|
||||
/*
|
||||
* Tell EC to exit RO mode
|
||||
*/
|
||||
printk(BIOS_DEBUG, "EC will exit RO mode and boot normally\n");
|
||||
ec_write_cmd(EC_CMD_EXIT_BOOT_BLOCK);
|
||||
die("wait for ec to reset");
|
||||
}
|
||||
} else {
|
||||
printk(BIOS_DEBUG, "EC Warm Boot Detected\n");
|
||||
ec_write_cmd(EC_CMD_WARM_RESET);
|
||||
}
|
||||
}
|
||||
|
||||
void main(unsigned long bist)
|
||||
{
|
||||
int boot_mode = 0;
|
||||
int cbmem_was_initted;
|
||||
u32 pm1_cnt;
|
||||
u16 pm1_sts;
|
||||
|
||||
#if CONFIG_COLLECT_TIMESTAMPS
|
||||
tsc_t start_romstage_time;
|
||||
tsc_t before_dram_time;
|
||||
tsc_t after_dram_time;
|
||||
tsc_t base_time = {
|
||||
.lo = pci_read_config32(PCI_DEV(0, 0x00, 0), 0xdc),
|
||||
.hi = pci_read_config32(PCI_DEV(0, 0x1f, 2), 0xd0)
|
||||
};
|
||||
#endif
|
||||
struct pei_data pei_data = {
|
||||
pei_version: PEI_VERSION,
|
||||
mchbar: DEFAULT_MCHBAR,
|
||||
dmibar: DEFAULT_DMIBAR,
|
||||
epbar: DEFAULT_EPBAR,
|
||||
pciexbar: CONFIG_MMCONF_BASE_ADDRESS,
|
||||
smbusbar: SMBUS_IO_BASE,
|
||||
wdbbar: 0x4000000,
|
||||
wdbsize: 0x1000,
|
||||
hpet_address: CONFIG_HPET_ADDRESS,
|
||||
rcba: DEFAULT_RCBABASE,
|
||||
pmbase: DEFAULT_PMBASE,
|
||||
gpiobase: DEFAULT_GPIOBASE,
|
||||
thermalbase: 0xfed08000,
|
||||
system_type: 0, // 0 Mobile, 1 Desktop/Server
|
||||
tseg_size: CONFIG_SMM_TSEG_SIZE,
|
||||
spd_addresses: { 0xA0, 0x00,0xA4,0x00 },
|
||||
ts_addresses: { 0x00, 0x00, 0x00, 0x00 },
|
||||
ec_present: 1,
|
||||
// 0 = leave channel enabled
|
||||
// 1 = disable dimm 0 on channel
|
||||
// 2 = disable dimm 1 on channel
|
||||
// 3 = disable dimm 0+1 on channel
|
||||
dimm_channel0_disabled: 2,
|
||||
dimm_channel1_disabled: 2,
|
||||
max_ddr3_freq: 1600,
|
||||
usb_port_config: {
|
||||
/* enabled usb oc pin length */
|
||||
{ 1, 0, 0x0040 }, /* P0: USB 3.0 1 (OC0) */
|
||||
{ 1, 0, 0x0040 }, /* P1: USB 3.0 2 (OC0) */
|
||||
{ 0, 1, 0x0000 }, /* P2: Empty */
|
||||
{ 1, 1, 0x0040 }, /* P3: Camera (no OC) */
|
||||
{ 1, 1, 0x0040 }, /* P4: WLAN (no OC) */
|
||||
{ 1, 1, 0x0040 }, /* P5: WWAN (no OC) */
|
||||
{ 0, 1, 0x0000 }, /* P6: Empty */
|
||||
{ 0, 1, 0x0000 }, /* P7: Empty */
|
||||
{ 0, 5, 0x0000 }, /* P8: Empty */
|
||||
{ 1, 4, 0x0040 }, /* P9: USB 2.0 (AUO4) (OC4) */
|
||||
{ 0, 5, 0x0000 }, /* P10: Empty */
|
||||
{ 0, 5, 0x0000 }, /* P11: Empty */
|
||||
{ 0, 5, 0x0000 }, /* P12: Empty */
|
||||
{ 1, 5, 0x0040 }, /* P13: Bluetooth (no OC) */
|
||||
},
|
||||
usb3: {
|
||||
mode: XHCI_MODE,
|
||||
hs_port_switch_mask: XHCI_PORTS,
|
||||
preboot_support: XHCI_PREBOOT,
|
||||
xhci_streams: XHCI_STREAMS,
|
||||
},
|
||||
};
|
||||
|
||||
#if CONFIG_COLLECT_TIMESTAMPS
|
||||
start_romstage_time = rdtsc();
|
||||
#endif
|
||||
|
||||
if (bist == 0)
|
||||
enable_lapic();
|
||||
|
||||
pch_enable_lpc();
|
||||
|
||||
/* Enable GPIOs */
|
||||
pci_write_config32(PCH_LPC_DEV, GPIO_BASE, DEFAULT_GPIOBASE|1);
|
||||
pci_write_config8(PCH_LPC_DEV, GPIO_CNTL, 0x10);
|
||||
setup_pch_gpios(&stout_gpio_map);
|
||||
|
||||
/* Initialize console device(s) */
|
||||
console_init();
|
||||
|
||||
/* Halt if there was a built in self test failure */
|
||||
report_bist_failure(bist);
|
||||
|
||||
if (MCHBAR16(SSKPD) == 0xCAFE) {
|
||||
printk(BIOS_DEBUG, "soft reset detected\n");
|
||||
boot_mode = 1;
|
||||
|
||||
/* System is not happy after keyboard reset... */
|
||||
printk(BIOS_DEBUG, "Issuing CF9 warm reset\n");
|
||||
outb(0x6, 0xcf9);
|
||||
hlt();
|
||||
}
|
||||
|
||||
|
||||
/* Perform some early chipset initialization required
|
||||
* before RAM initialization can work
|
||||
*/
|
||||
sandybridge_early_initialization(SANDYBRIDGE_MOBILE);
|
||||
printk(BIOS_DEBUG, "Back from sandybridge_early_initialization()\n");
|
||||
|
||||
/* Check PM1_STS[15] to see if we are waking from Sx */
|
||||
pm1_sts = inw(DEFAULT_PMBASE + PM1_STS);
|
||||
|
||||
/* Read PM1_CNT[12:10] to determine which Sx state */
|
||||
pm1_cnt = inl(DEFAULT_PMBASE + PM1_CNT);
|
||||
|
||||
if ((pm1_sts & WAK_STS) && ((pm1_cnt >> 10) & 7) == 5) {
|
||||
#if CONFIG_HAVE_ACPI_RESUME
|
||||
printk(BIOS_DEBUG, "Resume from S3 detected.\n");
|
||||
boot_mode = 2;
|
||||
/* Clear SLP_TYPE. This will break stage2 but
|
||||
* we care for that when we get there.
|
||||
*/
|
||||
outl(pm1_cnt & ~(7 << 10), DEFAULT_PMBASE + PM1_CNT);
|
||||
#else
|
||||
printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Do ec reset as early as possible, but skip it on S3 resume */
|
||||
if (boot_mode < 2)
|
||||
early_ec_init();
|
||||
|
||||
post_code(0x38);
|
||||
/* Enable SPD ROMs and DDR-III DRAM */
|
||||
enable_smbus();
|
||||
|
||||
/* Prepare USB controller early in S3 resume */
|
||||
if (boot_mode == 2)
|
||||
enable_usb_bar();
|
||||
|
||||
post_code(0x39);
|
||||
|
||||
post_code(0x3a);
|
||||
pei_data.boot_mode = boot_mode;
|
||||
#if CONFIG_COLLECT_TIMESTAMPS
|
||||
before_dram_time = rdtsc();
|
||||
#endif
|
||||
sdram_initialize(&pei_data);
|
||||
|
||||
#if CONFIG_COLLECT_TIMESTAMPS
|
||||
after_dram_time = rdtsc();
|
||||
#endif
|
||||
post_code(0x3b);
|
||||
/* Perform some initialization that must run before stage2 */
|
||||
early_pch_init();
|
||||
post_code(0x3c);
|
||||
|
||||
rcba_config();
|
||||
post_code(0x3d);
|
||||
|
||||
quick_ram_check();
|
||||
post_code(0x3e);
|
||||
|
||||
MCHBAR16(SSKPD) = 0xCAFE;
|
||||
#if CONFIG_EARLY_CBMEM_INIT
|
||||
cbmem_was_initted = !cbmem_initialize();
|
||||
#else
|
||||
cbmem_was_initted = cbmem_reinit((uint64_t) (get_top_of_ram()
|
||||
- HIGH_MEMORY_SIZE));
|
||||
#endif
|
||||
|
||||
#if CONFIG_HAVE_ACPI_RESUME
|
||||
/* If there is no high memory area, we didn't boot before, so
|
||||
* this is not a resume. In that case we just create the cbmem toc.
|
||||
*/
|
||||
|
||||
*(u32 *)CBMEM_BOOT_MODE = 0;
|
||||
*(u32 *)CBMEM_RESUME_BACKUP = 0;
|
||||
|
||||
if ((boot_mode == 2) && cbmem_was_initted) {
|
||||
void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
|
||||
if (resume_backup_memory) {
|
||||
*(u32 *)CBMEM_BOOT_MODE = boot_mode;
|
||||
*(u32 *)CBMEM_RESUME_BACKUP = (u32)resume_backup_memory;
|
||||
}
|
||||
/* Magic for S3 resume */
|
||||
pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
|
||||
} else if (boot_mode == 2) {
|
||||
/* Failed S3 resume, reset to come up cleanly */
|
||||
outb(0x6, 0xcf9);
|
||||
hlt();
|
||||
} else {
|
||||
pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafebabe);
|
||||
}
|
||||
#endif
|
||||
post_code(0x3f);
|
||||
#if CONFIG_CHROMEOS
|
||||
init_chromeos(boot_mode);
|
||||
#endif
|
||||
#if CONFIG_COLLECT_TIMESTAMPS
|
||||
timestamp_init(base_time);
|
||||
timestamp_add(TS_START_ROMSTAGE, start_romstage_time );
|
||||
timestamp_add(TS_BEFORE_INITRAM, before_dram_time );
|
||||
timestamp_add(TS_AFTER_INITRAM, after_dram_time );
|
||||
timestamp_add_now(TS_END_ROMSTAGE);
|
||||
#endif
|
||||
#if CONFIG_CONSOLE_CBMEM
|
||||
/* Keep this the last thing this function does. */
|
||||
cbmemc_reinit();
|
||||
#endif
|
||||
}
|
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright (C) 2011 The Chromium OS Authors. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#ifndef STOUT_THERMAL_H
|
||||
#define STOUT_THERMAL_H
|
||||
|
||||
/* Active Thermal and fans are controlled by the EC. */
|
||||
|
||||
/* Temperature which OS will shutdown at */
|
||||
#define CRITICAL_TEMPERATURE 99
|
||||
|
||||
/* Temperature which OS will throttle CPU */
|
||||
#define PASSIVE_TEMPERATURE 90
|
||||
|
||||
/* Tj_max value for calculating PECI CPU temperature */
|
||||
#define MAX_TEMPERATURE 100
|
||||
|
||||
#endif /* STOUT_THERMAL_H */
|
Loading…
Reference in New Issue