2007-06-14 08:10:57 +02:00
|
|
|
/*
|
2008-01-18 11:35:56 +01:00
|
|
|
* This file is part of the coreboot project.
|
2007-06-14 08:10:57 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Digital Design Corporation
|
2007-06-20 00:47:11 +02:00
|
|
|
* (Written by Steven J. Magnani <steve@digidescorp.com> for Digital Design)
|
2007-06-14 08:10:57 +02:00
|
|
|
* Copyright (C) 2007 Corey Osgood <corey.osgood@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; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <console/console.h>
|
|
|
|
#include <device/device.h>
|
|
|
|
#include <device/pci.h>
|
2010-02-27 02:50:21 +01:00
|
|
|
#include "i82801ax.h"
|
2007-06-14 08:10:57 +02:00
|
|
|
|
2010-02-27 02:50:21 +01:00
|
|
|
void i82801ax_enable(device_t dev)
|
2007-06-14 08:10:57 +02:00
|
|
|
{
|
2010-10-08 21:24:56 +02:00
|
|
|
u16 reg16, index;
|
|
|
|
device_t lpc_dev;
|
2007-06-14 08:10:57 +02:00
|
|
|
|
2010-10-08 21:24:56 +02:00
|
|
|
/* Search for the 82801AA/AB LPC device (D31:F0) on PCI bus 0. */
|
|
|
|
lpc_dev = dev_find_slot(0, PCI_DEVFN(0x1f, 0));
|
2007-06-14 08:10:57 +02:00
|
|
|
if (!lpc_dev)
|
|
|
|
return;
|
|
|
|
|
2010-10-08 21:24:56 +02:00
|
|
|
index = PCI_FUNC(dev->path.pci.devfn);
|
2007-06-20 00:47:11 +02:00
|
|
|
|
2010-10-08 21:24:56 +02:00
|
|
|
reg16 = pci_read_config16(lpc_dev, FUNC_DIS);
|
|
|
|
reg16 &= ~(1 << index); /* Enable device. */
|
|
|
|
if (!dev->enabled)
|
|
|
|
reg16 |= (1 << index); /* Disable device, if desired. */
|
|
|
|
pci_write_config16(lpc_dev, FUNC_DIS, reg16);
|
2007-06-14 08:10:57 +02:00
|
|
|
}
|
|
|
|
|
2010-02-27 02:50:21 +01:00
|
|
|
struct chip_operations southbridge_intel_i82801ax_ops = {
|
|
|
|
CHIP_NAME("Intel ICH/ICH0 (82801AA/AB) Series Southbridge")
|
|
|
|
.enable_dev = i82801ax_enable,
|
2007-06-14 08:10:57 +02:00
|
|
|
};
|