2004-08-24 18:20:46 +02:00
|
|
|
/*
|
2010-03-14 18:01:08 +01:00
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Linux Networx
|
|
|
|
* Copyright (C) 2004 SuSE Linux AG
|
|
|
|
* Copyright (C) 2004 Tyan Computer
|
2010-03-17 04:37:18 +01:00
|
|
|
* Copyright (C) 2010 Joseph Smith <joe@settoplinux.org>
|
2010-03-14 18:01:08 +01:00
|
|
|
*
|
|
|
|
* 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
|
2004-08-24 18:20:46 +02:00
|
|
|
*/
|
2010-03-14 18:01:08 +01:00
|
|
|
|
2004-08-24 18:20:46 +02:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <device/device.h>
|
|
|
|
#include <device/pci.h>
|
|
|
|
#include <device/pci_ids.h>
|
|
|
|
#include <device/pci_ops.h>
|
|
|
|
#include <pc80/mc146818rtc.h>
|
2005-09-21 15:53:44 +02:00
|
|
|
#include <pc80/isa-dma.h>
|
|
|
|
#include <arch/io.h>
|
2010-02-27 02:50:21 +01:00
|
|
|
#include "i82801dx.h"
|
2004-08-24 18:20:46 +02:00
|
|
|
|
|
|
|
#define NMI_OFF 0
|
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
typedef struct southbridge_intel_i82801dx_config config_t;
|
|
|
|
|
|
|
|
static void i82801dx_enable_ioapic(struct device *dev)
|
2004-08-24 18:20:46 +02:00
|
|
|
{
|
2010-03-17 04:37:18 +01:00
|
|
|
u32 reg32;
|
2010-03-17 04:40:23 +01:00
|
|
|
volatile u32 *ioapic_index = (volatile u32 *)(IO_APIC_ADDR);
|
|
|
|
volatile u32 *ioapic_data = (volatile u32 *)(IO_APIC_ADDR + 0x10);
|
2010-03-17 04:37:18 +01:00
|
|
|
|
|
|
|
/* Set ACPI base address (I/O space). */
|
|
|
|
pci_write_config32(dev, PMBASE, (PMBASE_ADDR | 1));
|
|
|
|
|
|
|
|
/* Enable ACPI I/O and power management. */
|
|
|
|
pci_write_config8(dev, ACPI_CNTL, 0x10);
|
2004-08-24 18:20:46 +02:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
reg32 = pci_read_config32(dev, GEN_CNTL);
|
|
|
|
reg32 |= (3 << 7); /* Enable IOAPIC */
|
|
|
|
reg32 |= (1 << 13); /* Coprocessor error enable */
|
|
|
|
reg32 |= (1 << 1); /* Delayed transaction enable */
|
|
|
|
reg32 |= (1 << 2); /* DMA collection buffer enable */
|
|
|
|
pci_write_config32(dev, GEN_CNTL, reg32);
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "IOAPIC Southbridge enabled %x\n", reg32);
|
2010-03-17 04:37:18 +01:00
|
|
|
|
|
|
|
*ioapic_index = 0;
|
|
|
|
*ioapic_data = (1 << 25);
|
|
|
|
|
|
|
|
*ioapic_index = 0;
|
|
|
|
reg32 = *ioapic_data;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "Southbridge APIC ID = %x\n", reg32);
|
2010-03-17 04:37:18 +01:00
|
|
|
if (reg32 != (1 << 25))
|
|
|
|
die("APIC Error\n");
|
|
|
|
|
|
|
|
*ioapic_index = 3; /* Select Boot Configuration register. */
|
|
|
|
*ioapic_data = 1; /* Use Processor System Bus to deliver interrupts. */
|
2004-08-24 18:20:46 +02:00
|
|
|
}
|
2010-03-14 18:01:08 +01:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
static void i82801dx_enable_serial_irqs(struct device *dev)
|
2004-08-24 18:20:46 +02:00
|
|
|
{
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Set packet length and toggle silent mode bit. */
|
2010-03-14 18:01:08 +01:00
|
|
|
pci_write_config8(dev, SERIRQ_CNTL,
|
|
|
|
(1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
|
2010-03-17 04:37:18 +01:00
|
|
|
pci_write_config8(dev, SERIRQ_CNTL,
|
|
|
|
(1 << 7) | (0 << 6) | ((21 - 17) << 2) | (0 << 0));
|
2004-08-24 18:20:46 +02:00
|
|
|
}
|
2010-03-14 18:01:08 +01:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
static void i82801dx_pirq_init(device_t dev)
|
2004-08-24 18:20:46 +02:00
|
|
|
{
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Get the chip configuration */
|
|
|
|
config_t *config = dev->chip_info;
|
|
|
|
|
|
|
|
pci_write_config8(dev, PIRQA_ROUT, config->pirqa_routing);
|
|
|
|
pci_write_config8(dev, PIRQB_ROUT, config->pirqb_routing);
|
|
|
|
pci_write_config8(dev, PIRQC_ROUT, config->pirqc_routing);
|
|
|
|
pci_write_config8(dev, PIRQD_ROUT, config->pirqd_routing);
|
|
|
|
pci_write_config8(dev, PIRQE_ROUT, config->pirqe_routing);
|
|
|
|
pci_write_config8(dev, PIRQF_ROUT, config->pirqf_routing);
|
|
|
|
pci_write_config8(dev, PIRQG_ROUT, config->pirqg_routing);
|
|
|
|
pci_write_config8(dev, PIRQH_ROUT, config->pirqh_routing);
|
2004-08-24 18:20:46 +02:00
|
|
|
}
|
2010-03-14 18:01:08 +01:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
static void i82801dx_power_options(device_t dev)
|
2004-08-24 18:20:46 +02:00
|
|
|
{
|
2010-03-23 00:10:53 +01:00
|
|
|
u8 reg8;
|
|
|
|
u16 reg16, pmbase;
|
|
|
|
u32 reg32;
|
|
|
|
const char *state;
|
|
|
|
|
|
|
|
int pwr_on = CONFIG_MAINBOARD_POWER_ON_AFTER_POWER_FAIL;
|
2010-03-17 04:37:18 +01:00
|
|
|
int nmi_option;
|
|
|
|
|
|
|
|
/* Which state do we want to goto after g3 (power restored)?
|
|
|
|
* 0 == S0 Full On
|
|
|
|
* 1 == S5 Soft Off
|
2010-03-23 00:10:53 +01:00
|
|
|
*
|
|
|
|
* If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
|
2010-03-17 04:37:18 +01:00
|
|
|
*/
|
2010-03-23 00:10:53 +01:00
|
|
|
if (get_option(&pwr_on, "power_on_after_fail") < 0)
|
|
|
|
pwr_on = MAINBOARD_POWER_ON;
|
2010-03-17 04:37:18 +01:00
|
|
|
|
2010-03-23 00:10:53 +01:00
|
|
|
reg8 = pci_read_config8(dev, GEN_PMCON_3);
|
|
|
|
reg8 &= 0xfe;
|
|
|
|
switch (pwr_on) {
|
|
|
|
case MAINBOARD_POWER_OFF:
|
|
|
|
reg8 |= 1;
|
|
|
|
state = "off";
|
|
|
|
break;
|
|
|
|
case MAINBOARD_POWER_ON:
|
|
|
|
reg8 &= ~1;
|
|
|
|
state = "on";
|
|
|
|
break;
|
|
|
|
case MAINBOARD_POWER_KEEP:
|
|
|
|
reg8 &= ~1;
|
|
|
|
state = "state keep";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
state = "undefined";
|
|
|
|
}
|
|
|
|
|
|
|
|
reg8 &= ~(1 << 3); /* minimum asssertion is 1 to 2 RTCCLK */
|
|
|
|
|
|
|
|
pci_write_config8(dev, GEN_PMCON_3, reg8);
|
2010-03-23 14:23:40 +01:00
|
|
|
printk(BIOS_INFO, "Set power %s after power failure.\n", state);
|
2010-03-17 04:37:18 +01:00
|
|
|
|
2010-03-23 00:10:53 +01:00
|
|
|
/* Set up NMI on errors. */
|
|
|
|
reg8 = inb(0x61);
|
|
|
|
reg8 &= 0x0f; /* Higher Nibble must be 0 */
|
|
|
|
reg8 &= ~(1 << 3); /* IOCHK# NMI Enable */
|
|
|
|
// reg8 &= ~(1 << 2); /* PCI SERR# Enable */
|
|
|
|
reg8 |= (1 << 2); /* PCI SERR# Disable for now */
|
|
|
|
outb(reg8, 0x61);
|
|
|
|
|
|
|
|
reg8 = inb(0x70);
|
2010-03-17 04:37:18 +01:00
|
|
|
nmi_option = NMI_OFF;
|
|
|
|
get_option(&nmi_option, "nmi");
|
|
|
|
if (nmi_option) {
|
2010-03-23 14:23:40 +01:00
|
|
|
printk(BIOS_INFO, "NMI sources enabled.\n");
|
2010-03-23 00:10:53 +01:00
|
|
|
reg8 &= ~(1 << 7); /* Set NMI. */
|
|
|
|
} else {
|
2010-03-23 14:23:40 +01:00
|
|
|
printk(BIOS_INFO, "NMI sources disabled.\n");
|
2010-03-23 00:10:53 +01:00
|
|
|
reg8 |= ( 1 << 7); /* Disable NMI. */
|
2010-03-14 18:01:08 +01:00
|
|
|
}
|
2010-03-23 00:10:53 +01:00
|
|
|
outb(reg8, 0x70);
|
|
|
|
|
|
|
|
/* Set SMI# rate down and enable CPU_SLP# */
|
|
|
|
reg16 = pci_read_config16(dev, GEN_PMCON_1);
|
|
|
|
reg16 &= ~(3 << 0); // SMI# rate 1 minute
|
|
|
|
reg16 |= (1 << 5); // CPUSLP_EN Desktop only
|
|
|
|
pci_write_config16(dev, GEN_PMCON_1, reg16);
|
|
|
|
|
|
|
|
pmbase = pci_read_config16(dev, 0x40) & 0xfffe;
|
|
|
|
|
|
|
|
/* Set up power management block and determine sleep mode */
|
|
|
|
reg32 = inl(pmbase + 0x04); // PM1_CNT
|
|
|
|
|
|
|
|
reg32 &= ~(7 << 10); // SLP_TYP
|
|
|
|
reg32 |= (1 << 0); // SCI_EN
|
|
|
|
outl(reg32, pmbase + 0x04);
|
2004-08-24 18:20:46 +02:00
|
|
|
}
|
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
static void gpio_init(device_t dev)
|
2004-08-24 18:20:46 +02:00
|
|
|
{
|
2010-03-17 04:37:18 +01:00
|
|
|
/* This should be done in romstage.c already */
|
|
|
|
pci_write_config32(dev, GPIO_BASE, (GPIOBASE_ADDR | 1));
|
2010-03-14 18:01:08 +01:00
|
|
|
pci_write_config8(dev, GPIO_CNTL, 0x10);
|
2010-03-17 04:37:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void i82801dx_rtc_init(struct device *dev)
|
|
|
|
{
|
|
|
|
u8 reg8;
|
|
|
|
u32 reg32;
|
|
|
|
int rtc_failed;
|
|
|
|
|
|
|
|
reg8 = pci_read_config8(dev, GEN_PMCON_3);
|
|
|
|
rtc_failed = reg8 & RTC_BATTERY_DEAD;
|
|
|
|
if (rtc_failed) {
|
|
|
|
reg8 &= ~(1 << 1); /* Preserve the power fail state. */
|
|
|
|
pci_write_config8(dev, GEN_PMCON_3, reg8);
|
|
|
|
}
|
|
|
|
reg32 = pci_read_config32(dev, GEN_STS);
|
|
|
|
rtc_failed |= reg32 & (1 << 2);
|
|
|
|
rtc_init(rtc_failed);
|
|
|
|
|
|
|
|
/* Enable access to the upper 128 byte bank of CMOS RAM. */
|
2010-03-14 18:01:08 +01:00
|
|
|
pci_write_config8(dev, RTC_CONF, 0x04);
|
2004-08-24 18:20:46 +02:00
|
|
|
}
|
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
static void i82801dx_lpc_route_dma(struct device *dev, u8 mask)
|
2004-08-24 18:20:46 +02:00
|
|
|
{
|
2010-03-17 04:37:18 +01:00
|
|
|
u16 reg16;
|
|
|
|
int i;
|
2004-08-24 18:20:46 +02:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
reg16 = pci_read_config16(dev, PCI_DMA_CFG);
|
|
|
|
reg16 &= 0x300;
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
if (i == 4)
|
|
|
|
continue;
|
|
|
|
reg16 |= ((mask & (1 << i)) ? 3 : 1) << (i * 2);
|
|
|
|
}
|
|
|
|
pci_write_config16(dev, PCI_DMA_CFG, reg16);
|
|
|
|
}
|
2010-03-14 18:01:08 +01:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
static void i82801dx_lpc_decode_en(device_t dev)
|
|
|
|
{
|
|
|
|
/* Decode 0x3F8-0x3FF (COM1) for COMA port, 0x2F8-0x2FF (COM2) for COMB.
|
|
|
|
* LPT decode defaults to 0x378-0x37F and 0x778-0x77F.
|
|
|
|
* Floppy decode defaults to 0x3F0-0x3F5, 0x3F7.
|
|
|
|
* We also need to set the value for LPC I/F Enables Register.
|
|
|
|
*/
|
|
|
|
pci_write_config8(dev, COM_DEC, 0x10);
|
|
|
|
pci_write_config16(dev, LPC_EN, 0x300F);
|
|
|
|
}
|
2004-08-24 18:20:46 +02:00
|
|
|
|
2010-03-17 23:08:51 +01:00
|
|
|
/* ICH4 does not mention HPET in the docs, but
|
|
|
|
* all ICH3 and ICH4 do have HPETs built in.
|
|
|
|
*/
|
|
|
|
static void enable_hpet(struct device *dev)
|
|
|
|
{
|
2010-03-23 00:10:53 +01:00
|
|
|
u32 reg32, hpet, val;
|
2010-03-17 23:08:51 +01:00
|
|
|
|
2010-03-23 00:10:53 +01:00
|
|
|
/* Set HPET base address and enable it */
|
2010-03-23 14:23:40 +01:00
|
|
|
printk(BIOS_DEBUG, "Enabling HPET at 0x%x\n", HPET_ADDR);
|
2010-03-17 23:08:51 +01:00
|
|
|
reg32 = pci_read_config32(dev, GEN_CNTL);
|
|
|
|
/*
|
2010-03-23 00:10:53 +01:00
|
|
|
* Bit 17 is HPET enable bit.
|
|
|
|
* Bit 16:15 control the HPET base address.
|
2010-03-17 23:08:51 +01:00
|
|
|
*/
|
|
|
|
reg32 &= ~(3 << 15); /* Clear it */
|
2010-03-23 00:10:53 +01:00
|
|
|
|
|
|
|
hpet = HPET_ADDR >> 12;
|
|
|
|
hpet &= 0x3;
|
|
|
|
|
|
|
|
reg32 |= (hpet << 15);
|
|
|
|
reg32 |= (1 << 17); /* Enable HPET. */
|
2010-03-17 23:08:51 +01:00
|
|
|
pci_write_config32(dev, GEN_CNTL, reg32);
|
|
|
|
|
2010-03-23 00:10:53 +01:00
|
|
|
/* Check to see whether it took */
|
|
|
|
reg32 = pci_read_config32(dev, GEN_CNTL);
|
|
|
|
val = reg32 >> 15;
|
|
|
|
val &= 0x7;
|
|
|
|
|
|
|
|
if ((val & 0x4) && (hpet == (val & 0x3))) {
|
2010-03-23 14:23:40 +01:00
|
|
|
printk(BIOS_INFO, "HPET enabled at 0x%x\n", HPET_ADDR);
|
2010-03-23 00:10:53 +01:00
|
|
|
} else {
|
2010-03-23 14:23:40 +01:00
|
|
|
printk(BIOS_WARNING, "HPET was not enabled correctly\n");
|
2010-03-23 00:10:53 +01:00
|
|
|
reg32 &= ~(1 << 17); /* Clear Enable */
|
|
|
|
pci_write_config32(dev, GEN_CNTL, reg32);
|
|
|
|
}
|
2010-03-17 23:08:51 +01:00
|
|
|
}
|
|
|
|
|
2004-08-24 18:20:46 +02:00
|
|
|
static void lpc_init(struct device *dev)
|
|
|
|
{
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Set the value for PCI command register. */
|
|
|
|
pci_write_config16(dev, PCI_COMMAND, 0x000f);
|
2004-08-24 18:20:46 +02:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
/* IO APIC initialization. */
|
2010-02-27 02:50:21 +01:00
|
|
|
i82801dx_enable_ioapic(dev);
|
2004-08-24 18:20:46 +02:00
|
|
|
|
2010-02-27 02:50:21 +01:00
|
|
|
i82801dx_enable_serial_irqs(dev);
|
2005-09-21 15:53:44 +02:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Setup the PIRQ. */
|
|
|
|
i82801dx_pirq_init(dev);
|
2005-09-21 15:53:44 +02:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Setup power options. */
|
|
|
|
i82801dx_power_options(dev);
|
2004-08-24 18:20:46 +02:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Set the state of the GPIO lines. */
|
|
|
|
gpio_init(dev);
|
2010-03-14 18:01:08 +01:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Initialize the real time clock. */
|
2010-02-27 02:50:21 +01:00
|
|
|
i82801dx_rtc_init(dev);
|
2004-08-24 18:20:46 +02:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Route DMA. */
|
2010-02-27 02:50:21 +01:00
|
|
|
i82801dx_lpc_route_dma(dev, 0xff);
|
2004-08-24 18:20:46 +02:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Initialize ISA DMA. */
|
2004-08-24 18:20:46 +02:00
|
|
|
isa_dma_init();
|
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
/* Setup decode ports and LPC I/F enables. */
|
|
|
|
i82801dx_lpc_decode_en(dev);
|
2010-03-17 23:08:51 +01:00
|
|
|
|
|
|
|
/* Initialize the High Precision Event Timers */
|
|
|
|
enable_hpet(dev);
|
2004-08-24 18:20:46 +02:00
|
|
|
}
|
|
|
|
|
2010-02-27 02:50:21 +01:00
|
|
|
static void i82801dx_lpc_read_resources(device_t dev)
|
2004-08-24 18:20:46 +02:00
|
|
|
{
|
2004-10-22 04:33:51 +02:00
|
|
|
struct resource *res;
|
2004-08-24 18:20:46 +02:00
|
|
|
|
2009-07-02 20:56:24 +02:00
|
|
|
/* Get the normal PCI resources of this device. */
|
2004-08-24 18:20:46 +02:00
|
|
|
pci_dev_read_resources(dev);
|
|
|
|
|
2009-07-02 20:56:24 +02:00
|
|
|
/* Add an extra subtractive resource for both memory and I/O. */
|
2004-10-22 04:33:51 +02:00
|
|
|
res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
|
2009-07-02 20:56:24 +02:00
|
|
|
res->base = 0;
|
|
|
|
res->size = 0x1000;
|
|
|
|
res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
|
2010-03-17 04:37:18 +01:00
|
|
|
IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
|
2004-10-22 04:33:51 +02:00
|
|
|
|
|
|
|
res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
|
2009-07-02 20:56:24 +02:00
|
|
|
res->base = 0xff800000;
|
2010-03-17 04:37:18 +01:00
|
|
|
res->size = 0x00800000; /* 8 MB for flash */
|
2009-07-02 20:56:24 +02:00
|
|
|
res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
|
2010-03-17 04:37:18 +01:00
|
|
|
IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
|
2009-07-02 20:56:24 +02:00
|
|
|
|
2010-03-17 04:37:18 +01:00
|
|
|
res = new_resource(dev, 3); /* IOAPIC */
|
2009-07-02 20:56:24 +02:00
|
|
|
res->base = 0xfec00000;
|
|
|
|
res->size = 0x00001000;
|
|
|
|
res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
|
2004-10-22 04:33:51 +02:00
|
|
|
}
|
|
|
|
|
2010-03-14 18:01:08 +01:00
|
|
|
static struct device_operations lpc_ops = {
|
2010-03-17 04:37:18 +01:00
|
|
|
.read_resources = i82801dx_lpc_read_resources,
|
|
|
|
.set_resources = pci_dev_set_resources,
|
2010-06-17 18:16:56 +02:00
|
|
|
.enable_resources = pci_dev_enable_resources,
|
2010-03-17 04:37:18 +01:00
|
|
|
.init = lpc_init,
|
|
|
|
.scan_bus = scan_static_bus,
|
|
|
|
.enable = i82801dx_enable,
|
2010-03-14 18:01:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* 82801DB/DBL */
|
|
|
|
static const struct pci_driver lpc_driver_db __pci_driver = {
|
|
|
|
.ops = &lpc_ops,
|
|
|
|
.vendor = PCI_VENDOR_ID_INTEL,
|
|
|
|
.device = PCI_DEVICE_ID_INTEL_82801DB_LPC,
|
2004-08-24 18:20:46 +02:00
|
|
|
};
|
|
|
|
|
2010-03-14 18:01:08 +01:00
|
|
|
/* 82801DBM */
|
|
|
|
static const struct pci_driver lpc_driver_dbm __pci_driver = {
|
|
|
|
.ops = &lpc_ops,
|
2004-08-24 18:20:46 +02:00
|
|
|
.vendor = PCI_VENDOR_ID_INTEL,
|
2007-11-04 04:21:37 +01:00
|
|
|
.device = PCI_DEVICE_ID_INTEL_82801DBM_LPC,
|
2004-08-24 18:20:46 +02:00
|
|
|
};
|