2007-05-03 10:50:37 +02:00
|
|
|
/*
|
2008-01-18 11:35:56 +01:00
|
|
|
* This file is part of the coreboot project.
|
2007-05-03 10:50:37 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2007-11-30 03:08:26 +01:00
|
|
|
/* Note: This code supports the 82371FB/SB/MX/AB/EB/MB and 82437MX. */
|
|
|
|
|
|
|
|
/* Datasheets:
|
|
|
|
* - Name: 82371FB (PIIX) AND 82371SB (PIIX3) PCI ISA IDE XCELERATOR
|
|
|
|
* - URL: http://www.intel.com/design/intarch/datashts/290550.htm
|
|
|
|
* - PDF: http://download.intel.com/design/intarch/datashts/29055002.pdf
|
|
|
|
* - Date: April 1997
|
|
|
|
* - Order Number: 290550-002
|
|
|
|
*
|
|
|
|
* - Name: 82371FB (PIIX) and 82371SB (PIIX3) PCI ISA IDE Xcelerator
|
|
|
|
* Specification Update
|
|
|
|
* - URL: http://www.intel.com/design/chipsets/specupdt/297658.htm
|
|
|
|
* - PDF: http://download.intel.com/design/chipsets/specupdt/29765801.pdf
|
|
|
|
* - Date: March 1998
|
|
|
|
* - Order Number: 297658-004
|
|
|
|
*
|
2007-05-27 23:43:58 +02:00
|
|
|
* - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
|
2007-11-30 03:08:26 +01:00
|
|
|
* (applies to 82371AB/EB/MB, a.k.a. PIIX4/PIIX4E/PIIX4M)
|
2007-05-27 23:43:58 +02:00
|
|
|
* - URL: http://www.intel.com/design/intarch/datashts/290562.htm
|
|
|
|
* - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
|
2007-11-30 03:08:26 +01:00
|
|
|
* - Date: April 1997
|
2007-05-27 23:43:58 +02:00
|
|
|
* - Order Number: 290562-001
|
2007-11-30 03:08:26 +01:00
|
|
|
*
|
|
|
|
* - Name: 82371AB/EB/MB (PIIX4/PIIX4E/PIIX4M) Specification Update
|
|
|
|
* - URL: http://www.intel.com/design/chipsets/specupdt/297738.htm
|
|
|
|
* - PDF: http://www.intel.com/design/chipsets/specupdt/29773817.pdf
|
|
|
|
* - Date: January 2002
|
|
|
|
* - Order Number: 297738-017
|
2007-05-27 23:43:58 +02:00
|
|
|
*/
|
|
|
|
|
2007-11-30 03:08:26 +01:00
|
|
|
/* TODO: List the other datasheets. */
|
|
|
|
|
2007-05-03 10:50:37 +02:00
|
|
|
#include <device/device.h>
|
|
|
|
#include "i82371eb.h"
|
|
|
|
|
2007-11-30 03:08:26 +01:00
|
|
|
void i82371eb_enable(struct device *dev)
|
2007-05-03 10:50:37 +02:00
|
|
|
{
|
2007-11-30 03:08:26 +01:00
|
|
|
/* TODO: Nothing to do? */
|
2007-05-03 10:50:37 +02:00
|
|
|
}
|
|
|
|
|
2007-11-30 03:08:26 +01:00
|
|
|
const struct chip_operations southbridge_intel_i82371eb_ops = {
|
|
|
|
CHIP_NAME("Intel 82371FB/SB/MX/AB/EB/MB Southbridge")
|
2007-05-03 10:50:37 +02:00
|
|
|
.enable_dev = i82371eb_enable,
|
|
|
|
};
|