mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
image, and fails: LAR build/coreboot.rom Bootblock coreboot.bootblock does not appear to be a bootblock. Error adding the bootblock to the LAR. make: *** [/home/rminnich/src/bios/coreboot-v3/build/coreboot.rom] Error 1 Next step is to get rid of all warnings that are not #warning. Then it is on to simnow. Anyone who wants to work on the warnings is most welcome to. DBE62 still builds with no problems. Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://coreboot.org/repository/coreboot-v3@808 f3766cd6-281f-0410-b1cd-43a5c92072e9
106 lines
3.1 KiB
C
106 lines
3.1 KiB
C
/*
|
|
* AMD 8111 "southbridge"
|
|
* This file is part of the coreboot project.
|
|
* Copyright (C) 2004-2005 Linux Networx
|
|
* (Written by Eric Biederman <ebiederman@lnxi.com> and Jason Schildt for Linux Networx)
|
|
* Copyright (C) 2005-7 YingHai Lu
|
|
* Copyright (C) 2005 Ollie Lo
|
|
* Copyright (C) 2005-2007 Stefan Reinauer <stepan@openbios.org>
|
|
* Copyright (C) 2008 Ronald G. Minnich <rminnich@gmail.com>
|
|
*
|
|
* 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 <lib.h>
|
|
#include <console.h>
|
|
#include <device/pci.h>
|
|
#include <msr.h>
|
|
#include <legacy.h>
|
|
#include <device/pci_ids.h>
|
|
#include <statictree.h>
|
|
#include <config.h>
|
|
#include "amd8111.h"
|
|
|
|
void amd8111_enable(struct device * dev)
|
|
{
|
|
struct device * lpc_dev;
|
|
struct device * bus_dev;
|
|
unsigned index;
|
|
unsigned reg_old, reg;
|
|
|
|
/* See if we are behind the amd8111 pci bridge */
|
|
bus_dev = dev->bus->dev;
|
|
if ((bus_dev->id.pci.vendor == PCI_VENDOR_ID_AMD) &&
|
|
(bus_dev->id.pci.device == PCI_DEVICE_ID_AMD_8111_PCI))
|
|
{
|
|
unsigned devfn;
|
|
devfn = bus_dev->path.pci.devfn + (1 << 3);
|
|
lpc_dev = dev_find_slot(bus_dev->bus->secondary, devfn);
|
|
index = ((dev->path.pci.devfn & ~7) >> 3) + 8;
|
|
if (dev->path.pci.devfn == 2) { /* EHCI */
|
|
index = 16;
|
|
}
|
|
} else {
|
|
unsigned devfn;
|
|
devfn = (dev->path.pci.devfn) & ~7;
|
|
lpc_dev = dev_find_slot(dev->bus->secondary, devfn);
|
|
index = dev->path.pci.devfn & 7;
|
|
}
|
|
if ((!lpc_dev) || (index >= 17)) {
|
|
return;
|
|
}
|
|
if ((lpc_dev->id.pci.vendor != PCI_VENDOR_ID_AMD) ||
|
|
(lpc_dev->id.pci.device != PCI_DEVICE_ID_AMD_8111_ISA))
|
|
{
|
|
u32 id;
|
|
id = pci_read_config32(lpc_dev, PCI_VENDOR_ID);
|
|
if (id != (PCI_VENDOR_ID_AMD | (PCI_DEVICE_ID_AMD_8111_ISA << 16))) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (index < 16) {
|
|
reg = reg_old = pci_read_config16(lpc_dev, 0x48);
|
|
reg &= ~(1 << index);
|
|
if (dev->enabled) {
|
|
reg |= (1 << index);
|
|
}
|
|
if (reg != reg_old) {
|
|
pci_write_config16(lpc_dev, 0x48, reg);
|
|
}
|
|
}
|
|
else if (index == 16) {
|
|
reg = reg_old = pci_read_config8(lpc_dev, 0x47);
|
|
reg &= ~(1 << 7);
|
|
if (!dev->enabled) {
|
|
reg |= (1 << 7);
|
|
}
|
|
if (reg != reg_old) {
|
|
pci_write_config8(lpc_dev, 0x47, reg);
|
|
}
|
|
}
|
|
}
|
|
|
|
struct device_operations amd8111 = {
|
|
.id = {.type = DEVICE_ID_PCI,
|
|
{.pci = {.vendor = PCI_VENDOR_ID_AMD,
|
|
.device = PCI_DEVICE_ID_AMD_8111_PCI}}},
|
|
.constructor = default_device_constructor,
|
|
.phase3_scan = 0,
|
|
.phase4_enable_disable = amd8111_enable,
|
|
.phase4_read_resources = pci_dev_read_resources,
|
|
.phase4_set_resources = pci_dev_set_resources,
|
|
.phase6_init = NULL,
|
|
.ops_pci = &pci_dev_ops_pci,
|
|
};
|