coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
i82371eb.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 /* Note: This code supports the 82371FB/SB/MX/AB/EB/MB and 82437MX. */
4 
5 /* Datasheets:
6  * - Name: 82371FB (PIIX) AND 82371SB (PIIX3) PCI ISA IDE XCELERATOR
7  * - URL: http://www.intel.com/design/intarch/datashts/290550.htm
8  * - PDF: http://download.intel.com/design/intarch/datashts/29055002.pdf
9  * - Date: April 1997
10  * - Order Number: 290550-002
11  *
12  * - Name: 82371FB (PIIX) and 82371SB (PIIX3) PCI ISA IDE Xcelerator
13  * Specification Update
14  * - URL: http://www.intel.com/design/chipsets/specupdt/297658.htm
15  * - PDF: http://download.intel.com/design/chipsets/specupdt/29765801.pdf
16  * - Date: March 1998
17  * - Order Number: 297658-004
18  *
19  * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
20  * (applies to 82371AB/EB/MB, a.k.a. PIIX4/PIIX4E/PIIX4M)
21  * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
22  * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
23  * - Date: April 1997
24  * - Order Number: 290562-001
25  *
26  * - Name: 82371AB/EB/MB (PIIX4/PIIX4E/PIIX4M) Specification Update
27  * - URL: http://www.intel.com/design/chipsets/specupdt/297738.htm
28  * - PDF: http://www.intel.com/design/chipsets/specupdt/29773817.pdf
29  * - Date: January 2002
30  * - Order Number: 297738-017
31  */
32 
33 /* TODO: List the other datasheets. */
34 
35 #include <device/device.h>
36 
38  CHIP_NAME("Intel 82371FB/SB/MX/AB/EB/MB Southbridge")
39 };
const struct chip_operations southbridge_intel_i82371eb_ops
Definition: i82371eb.c:37
#define CHIP_NAME(X)
Definition: device.h:32